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]

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

impl Debug for AttributeDefinition
[src]

Formats the value using the given formatter. Read more

impl Clone for AttributeDefinition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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