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.
5228 5229 5230 5231 5232 5233 5234 5235 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 5228 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.
5228 5229 5230 5231 5232 5233 5234 5235 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 5228 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.
5228 5229 5230 5231 5232 5233 5234 5235 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 5228 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.
5228 5229 5230 5231 5232 5233 5234 5235 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 5228 class StartSchemaExtensionRequest < Struct.new( :directory_id, :create_snapshot_before_schema_extension, :ldif_content, :description) SENSITIVE = [] include Aws::Structure end |