Struct rusoto_ds::ListSchemaExtensionsRequest[][src]

pub struct ListSchemaExtensionsRequest {
    pub directory_id: String,
    pub limit: Option<i64>,
    pub next_token: Option<String>,
}

Fields

The identifier of the directory from which to retrieve the schema extension information.

The maximum number of items to return.

The ListSchemaExtensions.NextToken value from a previous call to ListSchemaExtensions. Pass null if this is the first call.

Trait Implementations

impl Default for ListSchemaExtensionsRequest
[src]

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

impl Debug for ListSchemaExtensionsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListSchemaExtensionsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListSchemaExtensionsRequest
[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