Struct rusoto_sdb::DomainMetadataResult[][src]

pub struct DomainMetadataResult {
    pub attribute_name_count: Option<i64>,
    pub attribute_names_size_bytes: Option<i64>,
    pub attribute_value_count: Option<i64>,
    pub attribute_values_size_bytes: Option<i64>,
    pub item_count: Option<i64>,
    pub item_names_size_bytes: Option<i64>,
    pub timestamp: Option<i64>,
}

Fields

The number of unique attribute names in the domain.

The total size of all unique attribute names in the domain, in bytes.

The number of all attribute name/value pairs in the domain.

The total size of all attribute values in the domain, in bytes.

The number of all items in the domain.

The total size of all item names in the domain, in bytes.

The data and time when metadata was calculated, in Epoch (UNIX) seconds.

Trait Implementations

impl Default for DomainMetadataResult
[src]

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

impl Debug for DomainMetadataResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DomainMetadataResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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