Struct rusoto_dynamodb::AttributeDefinition [] [src]

pub struct AttributeDefinition {
    pub attribute_name: String,
    pub attribute_type: String,
}

Represents an attribute for describing the key schema for the table and indexes.

Fields

A name for the attribute.

The data type for the attribute, where:

  • S - the attribute is of type String

  • N - the attribute is of type Number

  • B - the attribute is of type Binary

Trait Implementations

impl Default for AttributeDefinition
[src]

[src]

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

impl Debug for AttributeDefinition
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AttributeDefinition
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations