Class: Aws::CloudDirectory::Types::Directory
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::Directory
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
Directory structure that includes the directory name and directory ARN.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date_time ⇒ Time
The date and time when the directory was created.
-
#directory_arn ⇒ String
The Amazon Resource Name (ARN) that is associated with the directory.
-
#name ⇒ String
The name of the directory.
-
#state ⇒ String
The state of the directory.
Instance Attribute Details
#creation_date_time ⇒ Time
The date and time when the directory was created.
2582 2583 2584 2585 2586 2587 2588 2589 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 2582 class Directory < Struct.new( :name, :directory_arn, :state, :creation_date_time) SENSITIVE = [] include Aws::Structure end |
#directory_arn ⇒ String
The Amazon Resource Name (ARN) that is associated with the directory. For more information, see arns.
2582 2583 2584 2585 2586 2587 2588 2589 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 2582 class Directory < Struct.new( :name, :directory_arn, :state, :creation_date_time) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the directory.
2582 2583 2584 2585 2586 2587 2588 2589 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 2582 class Directory < Struct.new( :name, :directory_arn, :state, :creation_date_time) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of the directory. Can be either Enabled
, Disabled
, or
Deleted
.
2582 2583 2584 2585 2586 2587 2588 2589 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 2582 class Directory < Struct.new( :name, :directory_arn, :state, :creation_date_time) SENSITIVE = [] include Aws::Structure end |