[][src]Struct rusoto_redshift::Cluster

pub struct Cluster {
    pub allow_version_upgrade: Option<bool>,
    pub automated_snapshot_retention_period: Option<i64>,
    pub availability_zone: Option<String>,
    pub cluster_create_time: Option<String>,
    pub cluster_identifier: Option<String>,
    pub cluster_nodes: Option<Vec<ClusterNode>>,
    pub cluster_parameter_groups: Option<Vec<ClusterParameterGroupStatus>>,
    pub cluster_public_key: Option<String>,
    pub cluster_revision_number: Option<String>,
    pub cluster_security_groups: Option<Vec<ClusterSecurityGroupMembership>>,
    pub cluster_snapshot_copy_status: Option<ClusterSnapshotCopyStatus>,
    pub cluster_status: Option<String>,
    pub cluster_subnet_group_name: Option<String>,
    pub cluster_version: Option<String>,
    pub db_name: Option<String>,
    pub elastic_ip_status: Option<ElasticIpStatus>,
    pub encrypted: Option<bool>,
    pub endpoint: Option<Endpoint>,
    pub enhanced_vpc_routing: Option<bool>,
    pub hsm_status: Option<HsmStatus>,
    pub iam_roles: Option<Vec<ClusterIamRole>>,
    pub kms_key_id: Option<String>,
    pub maintenance_track_name: Option<String>,
    pub master_username: Option<String>,
    pub modify_status: Option<String>,
    pub node_type: Option<String>,
    pub number_of_nodes: Option<i64>,
    pub pending_actions: Option<Vec<String>>,
    pub pending_modified_values: Option<PendingModifiedValues>,
    pub preferred_maintenance_window: Option<String>,
    pub publicly_accessible: Option<bool>,
    pub restore_status: Option<RestoreStatus>,
    pub tags: Option<Vec<Tag>>,
    pub vpc_id: Option<String>,
    pub vpc_security_groups: Option<Vec<VpcSecurityGroupMembership>>,
}

Describes a cluster.

Fields

A Boolean value that, if true, indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

The number of days that automatic cluster snapshots are retained.

The name of the Availability Zone in which the cluster is located.

The date and time that the cluster was created.

The unique identifier of the cluster.

The nodes in the cluster.

The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

The public key for the cluster.

The specific revision number of the database in the cluster.

A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

The current state of the cluster. Possible values are the following:

  • available

  • creating

  • deleting

  • final-snapshot

  • hardware-failure

  • incompatible-hsm

  • incompatible-network

  • incompatible-parameters

  • incompatible-restore

  • modifying

  • rebooting

  • renaming

  • resizing

  • rotating-keys

  • storage-full

  • updating-hsm

The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

The version ID of the Amazon Redshift engine that is running on the cluster.

The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named devdev was created by default.

The status of the elastic IP (EIP) address.

A Boolean value that, if true, indicates that data in the cluster is encrypted at rest.

The connection endpoint.

An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

If this option is true, enhanced VPC routing is enabled.

Default: false

A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

Values: active, applying

A list of AWS Identity and Access Management (IAM) roles that can be used by the cluster to access other AWS services.

The AWS Key Management Service (AWS KMS) key ID of the encryption key used to encrypt data in the cluster.

The name of the maintenance track for the cluster.

The master user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

The status of a modify operation, if any, initiated for the cluster.

The node type for the nodes in the cluster.

The number of compute nodes in the cluster.

Cluster operations that are waiting to be started.

A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

A Boolean value that, if true, indicates that the cluster can be accessed from a public network.

A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

The list of tags for the cluster.

The identifier of the VPC the cluster is in, if the cluster is in a VPC.

A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

Trait Implementations

impl Default for Cluster
[src]

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

impl PartialEq<Cluster> for Cluster
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Cluster
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Cluster
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Cluster

impl Sync for Cluster

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Same for T

Should always be Self

impl<T> Erased for T