Struct rusoto_ds::StartSchemaExtensionRequest[][src]

pub struct StartSchemaExtensionRequest {
    pub create_snapshot_before_schema_extension: bool,
    pub description: String,
    pub directory_id: String,
    pub ldif_content: String,
}

Fields

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

A description of the schema extension.

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

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.

Trait Implementations

impl Default for StartSchemaExtensionRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for StartSchemaExtensionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for StartSchemaExtensionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StartSchemaExtensionRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations