File Coverage

blib/lib/Paws/DS/DomainController.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::DS::DomainController;
2 1     1   522 use Moose;
  1         4  
  1         9  
3             has AvailabilityZone => (is => 'ro', isa => 'Str');
4             has DirectoryId => (is => 'ro', isa => 'Str');
5             has DnsIpAddr => (is => 'ro', isa => 'Str');
6             has DomainControllerId => (is => 'ro', isa => 'Str');
7             has LaunchTime => (is => 'ro', isa => 'Str');
8             has Status => (is => 'ro', isa => 'Str');
9             has StatusLastUpdatedDateTime => (is => 'ro', isa => 'Str');
10             has StatusReason => (is => 'ro', isa => 'Str');
11             has SubnetId => (is => 'ro', isa => 'Str');
12             has VpcId => (is => 'ro', isa => 'Str');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::DS::DomainController
20              
21             =head1 USAGE
22              
23             This class represents one of two things:
24              
25             =head3 Arguments in a call to a service
26              
27             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
28             Each attribute should be used as a named argument in the calls that expect this type of object.
29              
30             As an example, if Att1 is expected to be a Paws::DS::DomainController object:
31              
32             $service_obj->Method(Att1 => { AvailabilityZone => $value, ..., VpcId => $value });
33              
34             =head3 Results returned from an API call
35              
36             Use accessors for each attribute. If Att1 is expected to be an Paws::DS::DomainController object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->AvailabilityZone
40              
41             =head1 DESCRIPTION
42              
43             Contains information about the domain controllers for a specified
44             directory.
45              
46             =head1 ATTRIBUTES
47              
48              
49             =head2 AvailabilityZone => Str
50              
51             The Availability Zone where the domain controller is located.
52              
53              
54             =head2 DirectoryId => Str
55              
56             Identifier of the directory where the domain controller resides.
57              
58              
59             =head2 DnsIpAddr => Str
60              
61             The IP address of the domain controller.
62              
63              
64             =head2 DomainControllerId => Str
65              
66             Identifies a specific domain controller in the directory.
67              
68              
69             =head2 LaunchTime => Str
70              
71             Specifies when the domain controller was created.
72              
73              
74             =head2 Status => Str
75              
76             The status of the domain controller.
77              
78              
79             =head2 StatusLastUpdatedDateTime => Str
80              
81             The date and time that the status was last updated.
82              
83              
84             =head2 StatusReason => Str
85              
86             A description of the domain controller state.
87              
88              
89             =head2 SubnetId => Str
90              
91             Identifier of the subnet in the VPC that contains the domain
92             controller.
93              
94              
95             =head2 VpcId => Str
96              
97             The identifier of the VPC that contains the domain controller.
98              
99              
100              
101             =head1 SEE ALSO
102              
103             This class forms part of L<Paws>, describing an object used in L<Paws::DS>
104              
105             =head1 BUGS and CONTRIBUTIONS
106              
107             The source code is located here: https://github.com/pplu/aws-sdk-perl
108              
109             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
110              
111             =cut
112