File Coverage

blib/lib/Paws/DS/Trust.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::Trust;
2 1     1   466 use Moose;
  1         2  
  1         7  
3             has CreatedDateTime => (is => 'ro', isa => 'Str');
4             has DirectoryId => (is => 'ro', isa => 'Str');
5             has LastUpdatedDateTime => (is => 'ro', isa => 'Str');
6             has RemoteDomainName => (is => 'ro', isa => 'Str');
7             has StateLastUpdatedDateTime => (is => 'ro', isa => 'Str');
8             has TrustDirection => (is => 'ro', isa => 'Str');
9             has TrustId => (is => 'ro', isa => 'Str');
10             has TrustState => (is => 'ro', isa => 'Str');
11             has TrustStateReason => (is => 'ro', isa => 'Str');
12             has TrustType => (is => 'ro', isa => 'Str');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::DS::Trust
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::Trust object:
31              
32             $service_obj->Method(Att1 => { CreatedDateTime => $value, ..., TrustType => $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::Trust object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->CreatedDateTime
40              
41             =head1 DESCRIPTION
42              
43             Describes a trust relationship between an Microsoft AD in the AWS cloud
44             and an external domain.
45              
46             =head1 ATTRIBUTES
47              
48              
49             =head2 CreatedDateTime => Str
50              
51             The date and time that the trust relationship was created.
52              
53              
54             =head2 DirectoryId => Str
55              
56             The Directory ID of the AWS directory involved in the trust
57             relationship.
58              
59              
60             =head2 LastUpdatedDateTime => Str
61              
62             The date and time that the trust relationship was last updated.
63              
64              
65             =head2 RemoteDomainName => Str
66              
67             The Fully Qualified Domain Name (FQDN) of the external domain involved
68             in the trust relationship.
69              
70              
71             =head2 StateLastUpdatedDateTime => Str
72              
73             The date and time that the TrustState was last updated.
74              
75              
76             =head2 TrustDirection => Str
77              
78             The trust relationship direction.
79              
80              
81             =head2 TrustId => Str
82              
83             The unique ID of the trust relationship.
84              
85              
86             =head2 TrustState => Str
87              
88             The trust relationship state.
89              
90              
91             =head2 TrustStateReason => Str
92              
93             The reason for the TrustState.
94              
95              
96             =head2 TrustType => Str
97              
98             The trust relationship type.
99              
100              
101              
102             =head1 SEE ALSO
103              
104             This class forms part of L<Paws>, describing an object used in L<Paws::DS>
105              
106             =head1 BUGS and CONTRIBUTIONS
107              
108             The source code is located here: https://github.com/pplu/aws-sdk-perl
109              
110             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
111              
112             =cut
113