Struct rusoto_snowball::ClusterMetadata[][src]

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 appliance, rather it represents how quickly each appliance moves to its destination while in transit. Regional shipping speeds are as follows:

  • In Australia, you have access to express shipping. Typically, appliances 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 appliance to use for this cluster. Currently, the only supported appliance type for cluster jobs is EDGE.

Trait Implementations

impl Default for ClusterMetadata
[src]

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

impl Debug for ClusterMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for ClusterMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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