Class: Aws::DirectoryService::Types::StartSchemaExtensionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::StartSchemaExtensionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#create_snapshot_before_schema_extension ⇒ Boolean
If true, creates a snapshot of the directory before applying the schema extension.
-
#description ⇒ String
A description of the schema extension.
-
#directory_id ⇒ String
The identifier of the directory for which the schema extension will be applied to.
-
#ldif_content ⇒ String
The LDIF file represented as a string.
Instance Attribute Details
#create_snapshot_before_schema_extension ⇒ Boolean
If true, creates a snapshot of the directory before applying the schema extension.
4236 4237 4238 4239 4240 4241 4242 4243 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 4236 class StartSchemaExtensionRequest < Struct.new( :directory_id, :create_snapshot_before_schema_extension, :ldif_content, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the schema extension.
4236 4237 4238 4239 4240 4241 4242 4243 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 4236 class StartSchemaExtensionRequest < Struct.new( :directory_id, :create_snapshot_before_schema_extension, :ldif_content, :description) SENSITIVE = [] include Aws::Structure end |
#directory_id ⇒ String
The identifier of the directory for which the schema extension will be applied to.
4236 4237 4238 4239 4240 4241 4242 4243 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 4236 class StartSchemaExtensionRequest < Struct.new( :directory_id, :create_snapshot_before_schema_extension, :ldif_content, :description) SENSITIVE = [] include Aws::Structure end |
#ldif_content ⇒ String
The LDIF file represented as a string. To construct the LdifContent string, precede each line as it would be formatted in an ldif file with \n. See the example request below for more details. The file size can be no larger than 1MB.
4236 4237 4238 4239 4240 4241 4242 4243 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 4236 class StartSchemaExtensionRequest < Struct.new( :directory_id, :create_snapshot_before_schema_extension, :ldif_content, :description) SENSITIVE = [] include Aws::Structure end |