You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DirectoryService::Types::StartSchemaExtensionRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing StartSchemaExtensionRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  directory_id: "DirectoryId", # required
  create_snapshot_before_schema_extension: false, # required
  ldif_content: "LdifContent", # required
  description: "Description", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#create_snapshot_before_schema_extensionBoolean

If true, creates a snapshot of the directory before applying the schema extension.

Returns:

  • (Boolean)

    If true, creates a snapshot of the directory before applying the schema extension.

#descriptionString

A description of the schema extension.

Returns:

  • (String)

    A description of the schema extension.

#directory_idString

The identifier of the directory for which the schema extension will be applied to.

Returns:

  • (String)

    The identifier of the directory for which the schema extension will be applied to.

#ldif_contentString

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.

Returns:

  • (String)

    The LDIF file represented as a string.