[][src]Struct rusoto_snowball::ClusterMetadata

pub struct ClusterMetadata {
    pub address_id: Option<String>,
    pub cluster_id: Option<String>,
    pub cluster_state: Option<String>,
    pub creation_date: Option<f64>,
    pub description: Option<String>,
    pub forwarding_address_id: Option<String>,
    pub job_type: Option<String>,
    pub kms_key_arn: Option<String>,
    pub notification: Option<Notification>,
    pub resources: Option<JobResource>,
    pub role_arn: Option<String>,
    pub shipping_option: Option<String>,
    pub snowball_type: Option<String>,
}

Contains metadata about a specific cluster.

Fields

The automatically generated ID for a specific address.

The automatically generated ID for a cluster.

The current status of the cluster.

The creation date for this cluster.

The optional description of the cluster.

The ID of the address that you want a cluster shipped to, after it will be shipped to its primary address. This field is not supported in most regions.

The type of job for this cluster. Currently, the only job type supported for clusters is LOCAL_USE.

The KmsKeyARN Amazon Resource Name (ARN) associated with this cluster. This ARN was created using the CreateKey API action in AWS Key Management Service (AWS KMS).

The Amazon Simple Notification Service (Amazon SNS) notification settings for this cluster.

The arrays of JobResource objects that can include updated S3Resource objects or LambdaResource objects.

The role ARN associated with this cluster. This ARN was created using the CreateRole API action in AWS Identity and Access Management (IAM).

The shipping speed for each node in this cluster. This speed doesn't dictate how soon you'll get each Snowball Edge device, rather it represents how quickly each device moves to its destination while in transit. Regional shipping speeds are as follows:

  • In Australia, you have access to express shipping. Typically, devices shipped express are delivered in about a day.

  • In the European Union (EU), you have access to express shipping. Typically, Snowball Edges shipped express are delivered in about a day. In addition, most countries in the EU have access to standard shipping, which typically takes less than a week, one way.

  • In India, Snowball Edges are delivered in one to seven days.

  • In the US, you have access to one-day shipping and two-day shipping.

The type of AWS Snowball device to use for this cluster. Currently, the only supported device type for cluster jobs is EDGE.

Trait Implementations

impl Clone for ClusterMetadata
[src]

Performs copy-assignment from source. Read more

impl Default for ClusterMetadata
[src]

impl PartialEq<ClusterMetadata> for ClusterMetadata
[src]

impl Debug for ClusterMetadata
[src]

impl<'de> Deserialize<'de> for ClusterMetadata
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T