line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudDirectory::CreateDirectoryResponse; |
3
|
1
|
|
|
1
|
|
543
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has AppliedSchemaArn => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has DirectoryArn => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', required => 1); |
7
|
|
|
|
|
|
|
has ObjectIdentifier => (is => 'ro', isa => 'Str', required => 1); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::CloudDirectory::CreateDirectoryResponse |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 B<REQUIRED> AppliedSchemaArn => Str |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The ARN of the published schema in the Directory. Once a published |
24
|
|
|
|
|
|
|
schema is copied into the directory, it has its own ARN, which is |
25
|
|
|
|
|
|
|
referred to applied schema ARN. For more information, see arns. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 B<REQUIRED> DirectoryArn => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
The ARN that is associated with the Directory. For more information, |
31
|
|
|
|
|
|
|
see arns. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 B<REQUIRED> Name => Str |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
The name of the Directory. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 B<REQUIRED> ObjectIdentifier => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The root object node of the created directory. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 _request_id => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=cut |
48
|
|
|
|
|
|
|
|