#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for Cluster
Implementations
sourceimpl Builder
impl Builder
sourcepub fn cluster_identifier(self, input: impl Into<String>) -> Self
pub fn cluster_identifier(self, input: impl Into<String>) -> Self
The unique identifier of the cluster.
sourcepub fn set_cluster_identifier(self, input: Option<String>) -> Self
pub fn set_cluster_identifier(self, input: Option<String>) -> Self
The unique identifier of the cluster.
sourcepub fn node_type(self, input: impl Into<String>) -> Self
pub fn node_type(self, input: impl Into<String>) -> Self
The node type for the nodes in the cluster.
sourcepub fn set_node_type(self, input: Option<String>) -> Self
pub fn set_node_type(self, input: Option<String>) -> Self
The node type for the nodes in the cluster.
sourcepub fn cluster_status(self, input: impl Into<String>) -> Self
pub fn cluster_status(self, input: impl Into<String>) -> Self
The current state of the cluster. Possible values are the following:
-
available
-
available, prep-for-resize
-
available, resize-cleanup
-
cancelling-resize
-
creating
-
deleting
-
final-snapshot
-
hardware-failure
-
incompatible-hsm
-
incompatible-network
-
incompatible-parameters
-
incompatible-restore
-
modifying
-
paused
-
rebooting
-
renaming
-
resizing
-
rotating-keys
-
storage-full
-
updating-hsm
sourcepub fn set_cluster_status(self, input: Option<String>) -> Self
pub fn set_cluster_status(self, input: Option<String>) -> Self
The current state of the cluster. Possible values are the following:
-
available
-
available, prep-for-resize
-
available, resize-cleanup
-
cancelling-resize
-
creating
-
deleting
-
final-snapshot
-
hardware-failure
-
incompatible-hsm
-
incompatible-network
-
incompatible-parameters
-
incompatible-restore
-
modifying
-
paused
-
rebooting
-
renaming
-
resizing
-
rotating-keys
-
storage-full
-
updating-hsm
sourcepub fn cluster_availability_status(self, input: impl Into<String>) -> Self
pub fn cluster_availability_status(self, input: impl Into<String>) -> Self
The availability status of the cluster for queries. Possible values are the following:
-
Available - The cluster is available for queries.
-
Unavailable - The cluster is not available for queries.
-
Maintenance - The cluster is intermittently available for queries due to maintenance activities.
-
Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.
-
Failed - The cluster failed and is not available for queries.
sourcepub fn set_cluster_availability_status(self, input: Option<String>) -> Self
pub fn set_cluster_availability_status(self, input: Option<String>) -> Self
The availability status of the cluster for queries. Possible values are the following:
-
Available - The cluster is available for queries.
-
Unavailable - The cluster is not available for queries.
-
Maintenance - The cluster is intermittently available for queries due to maintenance activities.
-
Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.
-
Failed - The cluster failed and is not available for queries.
sourcepub fn modify_status(self, input: impl Into<String>) -> Self
pub fn modify_status(self, input: impl Into<String>) -> Self
The status of a modify operation, if any, initiated for the cluster.
sourcepub fn set_modify_status(self, input: Option<String>) -> Self
pub fn set_modify_status(self, input: Option<String>) -> Self
The status of a modify operation, if any, initiated for the cluster.
sourcepub fn master_username(self, input: impl Into<String>) -> Self
pub fn master_username(self, input: impl Into<String>) -> Self
The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.
sourcepub fn set_master_username(self, input: Option<String>) -> Self
pub fn set_master_username(self, input: Option<String>) -> Self
The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.
sourcepub fn db_name(self, input: impl Into<String>) -> Self
pub fn db_name(self, input: impl Into<String>) -> Self
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 dev
dev was created by default.
sourcepub fn set_db_name(self, input: Option<String>) -> Self
pub fn set_db_name(self, input: Option<String>) -> Self
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 dev
dev was created by default.
sourcepub fn set_endpoint(self, input: Option<Endpoint>) -> Self
pub fn set_endpoint(self, input: Option<Endpoint>) -> Self
The connection endpoint.
sourcepub fn cluster_create_time(self, input: DateTime) -> Self
pub fn cluster_create_time(self, input: DateTime) -> Self
The date and time that the cluster was created.
sourcepub fn set_cluster_create_time(self, input: Option<DateTime>) -> Self
pub fn set_cluster_create_time(self, input: Option<DateTime>) -> Self
The date and time that the cluster was created.
sourcepub fn automated_snapshot_retention_period(self, input: i32) -> Self
pub fn automated_snapshot_retention_period(self, input: i32) -> Self
The number of days that automatic cluster snapshots are retained.
sourcepub fn set_automated_snapshot_retention_period(self, input: Option<i32>) -> Self
pub fn set_automated_snapshot_retention_period(self, input: Option<i32>) -> Self
The number of days that automatic cluster snapshots are retained.
sourcepub fn manual_snapshot_retention_period(self, input: i32) -> Self
pub fn manual_snapshot_retention_period(self, input: i32) -> Self
The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.
The value must be either -1 or an integer between 1 and 3,653.
sourcepub fn set_manual_snapshot_retention_period(self, input: Option<i32>) -> Self
pub fn set_manual_snapshot_retention_period(self, input: Option<i32>) -> Self
The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.
The value must be either -1 or an integer between 1 and 3,653.
sourcepub fn cluster_security_groups(
self,
input: ClusterSecurityGroupMembership
) -> Self
pub fn cluster_security_groups(
self,
input: ClusterSecurityGroupMembership
) -> Self
Appends an item to cluster_security_groups
.
To override the contents of this collection use set_cluster_security_groups
.
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.
sourcepub fn set_cluster_security_groups(
self,
input: Option<Vec<ClusterSecurityGroupMembership>>
) -> Self
pub fn set_cluster_security_groups(
self,
input: Option<Vec<ClusterSecurityGroupMembership>>
) -> Self
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.
sourcepub fn vpc_security_groups(self, input: VpcSecurityGroupMembership) -> Self
pub fn vpc_security_groups(self, input: VpcSecurityGroupMembership) -> Self
Appends an item to vpc_security_groups
.
To override the contents of this collection use set_vpc_security_groups
.
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.
sourcepub fn set_vpc_security_groups(
self,
input: Option<Vec<VpcSecurityGroupMembership>>
) -> Self
pub fn set_vpc_security_groups(
self,
input: Option<Vec<VpcSecurityGroupMembership>>
) -> Self
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.
sourcepub fn cluster_parameter_groups(
self,
input: ClusterParameterGroupStatus
) -> Self
pub fn cluster_parameter_groups(
self,
input: ClusterParameterGroupStatus
) -> Self
Appends an item to cluster_parameter_groups
.
To override the contents of this collection use set_cluster_parameter_groups
.
The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.
sourcepub fn set_cluster_parameter_groups(
self,
input: Option<Vec<ClusterParameterGroupStatus>>
) -> Self
pub fn set_cluster_parameter_groups(
self,
input: Option<Vec<ClusterParameterGroupStatus>>
) -> Self
The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.
sourcepub fn cluster_subnet_group_name(self, input: impl Into<String>) -> Self
pub fn cluster_subnet_group_name(self, input: impl Into<String>) -> Self
The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.
sourcepub fn set_cluster_subnet_group_name(self, input: Option<String>) -> Self
pub fn set_cluster_subnet_group_name(self, input: Option<String>) -> Self
The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.
sourcepub fn vpc_id(self, input: impl Into<String>) -> Self
pub fn vpc_id(self, input: impl Into<String>) -> Self
The identifier of the VPC the cluster is in, if the cluster is in a VPC.
sourcepub fn set_vpc_id(self, input: Option<String>) -> Self
pub fn set_vpc_id(self, input: Option<String>) -> Self
The identifier of the VPC the cluster is in, if the cluster is in a VPC.
sourcepub fn availability_zone(self, input: impl Into<String>) -> Self
pub fn availability_zone(self, input: impl Into<String>) -> Self
The name of the Availability Zone in which the cluster is located.
sourcepub fn set_availability_zone(self, input: Option<String>) -> Self
pub fn set_availability_zone(self, input: Option<String>) -> Self
The name of the Availability Zone in which the cluster is located.
sourcepub fn preferred_maintenance_window(self, input: impl Into<String>) -> Self
pub fn preferred_maintenance_window(self, input: impl Into<String>) -> Self
The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.
sourcepub fn set_preferred_maintenance_window(self, input: Option<String>) -> Self
pub fn set_preferred_maintenance_window(self, input: Option<String>) -> Self
The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.
sourcepub fn pending_modified_values(self, input: PendingModifiedValues) -> Self
pub fn pending_modified_values(self, input: PendingModifiedValues) -> Self
A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.
sourcepub fn set_pending_modified_values(
self,
input: Option<PendingModifiedValues>
) -> Self
pub fn set_pending_modified_values(
self,
input: Option<PendingModifiedValues>
) -> Self
A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.
sourcepub fn cluster_version(self, input: impl Into<String>) -> Self
pub fn cluster_version(self, input: impl Into<String>) -> Self
The version ID of the Amazon Redshift engine that is running on the cluster.
sourcepub fn set_cluster_version(self, input: Option<String>) -> Self
pub fn set_cluster_version(self, input: Option<String>) -> Self
The version ID of the Amazon Redshift engine that is running on the cluster.
sourcepub fn allow_version_upgrade(self, input: bool) -> Self
pub fn allow_version_upgrade(self, input: bool) -> Self
A boolean value that, if true
, indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.
sourcepub fn set_allow_version_upgrade(self, input: Option<bool>) -> Self
pub fn set_allow_version_upgrade(self, input: Option<bool>) -> Self
A boolean value that, if true
, indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.
sourcepub fn number_of_nodes(self, input: i32) -> Self
pub fn number_of_nodes(self, input: i32) -> Self
The number of compute nodes in the cluster.
sourcepub fn set_number_of_nodes(self, input: Option<i32>) -> Self
pub fn set_number_of_nodes(self, input: Option<i32>) -> Self
The number of compute nodes in the cluster.
sourcepub fn publicly_accessible(self, input: bool) -> Self
pub fn publicly_accessible(self, input: bool) -> Self
A boolean value that, if true
, indicates that the cluster can be accessed from a public network.
sourcepub fn set_publicly_accessible(self, input: Option<bool>) -> Self
pub fn set_publicly_accessible(self, input: Option<bool>) -> Self
A boolean value that, if true
, indicates that the cluster can be accessed from a public network.
sourcepub fn encrypted(self, input: bool) -> Self
pub fn encrypted(self, input: bool) -> Self
A boolean value that, if true
, indicates that data in the cluster is encrypted at rest.
sourcepub fn set_encrypted(self, input: Option<bool>) -> Self
pub fn set_encrypted(self, input: Option<bool>) -> Self
A boolean value that, if true
, indicates that data in the cluster is encrypted at rest.
sourcepub fn restore_status(self, input: RestoreStatus) -> Self
pub fn restore_status(self, input: RestoreStatus) -> Self
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.
sourcepub fn set_restore_status(self, input: Option<RestoreStatus>) -> Self
pub fn set_restore_status(self, input: Option<RestoreStatus>) -> Self
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.
sourcepub fn data_transfer_progress(self, input: DataTransferProgress) -> Self
pub fn data_transfer_progress(self, input: DataTransferProgress) -> Self
sourcepub fn set_data_transfer_progress(
self,
input: Option<DataTransferProgress>
) -> Self
pub fn set_data_transfer_progress(
self,
input: Option<DataTransferProgress>
) -> Self
sourcepub fn hsm_status(self, input: HsmStatus) -> Self
pub fn hsm_status(self, input: HsmStatus) -> Self
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
sourcepub fn set_hsm_status(self, input: Option<HsmStatus>) -> Self
pub fn set_hsm_status(self, input: Option<HsmStatus>) -> Self
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
sourcepub fn cluster_snapshot_copy_status(
self,
input: ClusterSnapshotCopyStatus
) -> Self
pub fn cluster_snapshot_copy_status(
self,
input: ClusterSnapshotCopyStatus
) -> Self
A value that returns the destination region and retention period that are configured for cross-region snapshot copy.
sourcepub fn set_cluster_snapshot_copy_status(
self,
input: Option<ClusterSnapshotCopyStatus>
) -> Self
pub fn set_cluster_snapshot_copy_status(
self,
input: Option<ClusterSnapshotCopyStatus>
) -> Self
A value that returns the destination region and retention period that are configured for cross-region snapshot copy.
sourcepub fn cluster_public_key(self, input: impl Into<String>) -> Self
pub fn cluster_public_key(self, input: impl Into<String>) -> Self
The public key for the cluster.
sourcepub fn set_cluster_public_key(self, input: Option<String>) -> Self
pub fn set_cluster_public_key(self, input: Option<String>) -> Self
The public key for the cluster.
sourcepub fn cluster_nodes(self, input: ClusterNode) -> Self
pub fn cluster_nodes(self, input: ClusterNode) -> Self
Appends an item to cluster_nodes
.
To override the contents of this collection use set_cluster_nodes
.
The nodes in the cluster.
sourcepub fn set_cluster_nodes(self, input: Option<Vec<ClusterNode>>) -> Self
pub fn set_cluster_nodes(self, input: Option<Vec<ClusterNode>>) -> Self
The nodes in the cluster.
sourcepub fn elastic_ip_status(self, input: ElasticIpStatus) -> Self
pub fn elastic_ip_status(self, input: ElasticIpStatus) -> Self
The status of the elastic IP (EIP) address.
sourcepub fn set_elastic_ip_status(self, input: Option<ElasticIpStatus>) -> Self
pub fn set_elastic_ip_status(self, input: Option<ElasticIpStatus>) -> Self
The status of the elastic IP (EIP) address.
sourcepub fn cluster_revision_number(self, input: impl Into<String>) -> Self
pub fn cluster_revision_number(self, input: impl Into<String>) -> Self
The specific revision number of the database in the cluster.
sourcepub fn set_cluster_revision_number(self, input: Option<String>) -> Self
pub fn set_cluster_revision_number(self, input: Option<String>) -> Self
The specific revision number of the database in the cluster.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
The list of tags for the cluster.
The list of tags for the cluster.
sourcepub fn kms_key_id(self, input: impl Into<String>) -> Self
pub fn kms_key_id(self, input: impl Into<String>) -> Self
The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.
sourcepub fn set_kms_key_id(self, input: Option<String>) -> Self
pub fn set_kms_key_id(self, input: Option<String>) -> Self
The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.
sourcepub fn enhanced_vpc_routing(self, input: bool) -> Self
pub fn enhanced_vpc_routing(self, input: bool) -> Self
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
sourcepub fn set_enhanced_vpc_routing(self, input: Option<bool>) -> Self
pub fn set_enhanced_vpc_routing(self, input: Option<bool>) -> Self
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
sourcepub fn iam_roles(self, input: ClusterIamRole) -> Self
pub fn iam_roles(self, input: ClusterIamRole) -> Self
Appends an item to iam_roles
.
To override the contents of this collection use set_iam_roles
.
A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.
sourcepub fn set_iam_roles(self, input: Option<Vec<ClusterIamRole>>) -> Self
pub fn set_iam_roles(self, input: Option<Vec<ClusterIamRole>>) -> Self
A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.
sourcepub fn pending_actions(self, input: impl Into<String>) -> Self
pub fn pending_actions(self, input: impl Into<String>) -> Self
Appends an item to pending_actions
.
To override the contents of this collection use set_pending_actions
.
Cluster operations that are waiting to be started.
sourcepub fn set_pending_actions(self, input: Option<Vec<String>>) -> Self
pub fn set_pending_actions(self, input: Option<Vec<String>>) -> Self
Cluster operations that are waiting to be started.
sourcepub fn maintenance_track_name(self, input: impl Into<String>) -> Self
pub fn maintenance_track_name(self, input: impl Into<String>) -> Self
The name of the maintenance track for the cluster.
sourcepub fn set_maintenance_track_name(self, input: Option<String>) -> Self
pub fn set_maintenance_track_name(self, input: Option<String>) -> Self
The name of the maintenance track for the cluster.
sourcepub fn elastic_resize_number_of_node_options(
self,
input: impl Into<String>
) -> Self
pub fn elastic_resize_number_of_node_options(
self,
input: impl Into<String>
) -> Self
The number of nodes that you can resize the cluster to with the elastic resize method.
sourcepub fn set_elastic_resize_number_of_node_options(
self,
input: Option<String>
) -> Self
pub fn set_elastic_resize_number_of_node_options(
self,
input: Option<String>
) -> Self
The number of nodes that you can resize the cluster to with the elastic resize method.
sourcepub fn deferred_maintenance_windows(
self,
input: DeferredMaintenanceWindow
) -> Self
pub fn deferred_maintenance_windows(
self,
input: DeferredMaintenanceWindow
) -> Self
Appends an item to deferred_maintenance_windows
.
To override the contents of this collection use set_deferred_maintenance_windows
.
Describes a group of DeferredMaintenanceWindow
objects.
sourcepub fn set_deferred_maintenance_windows(
self,
input: Option<Vec<DeferredMaintenanceWindow>>
) -> Self
pub fn set_deferred_maintenance_windows(
self,
input: Option<Vec<DeferredMaintenanceWindow>>
) -> Self
Describes a group of DeferredMaintenanceWindow
objects.
sourcepub fn snapshot_schedule_identifier(self, input: impl Into<String>) -> Self
pub fn snapshot_schedule_identifier(self, input: impl Into<String>) -> Self
A unique identifier for the cluster snapshot schedule.
sourcepub fn set_snapshot_schedule_identifier(self, input: Option<String>) -> Self
pub fn set_snapshot_schedule_identifier(self, input: Option<String>) -> Self
A unique identifier for the cluster snapshot schedule.
sourcepub fn snapshot_schedule_state(self, input: ScheduleState) -> Self
pub fn snapshot_schedule_state(self, input: ScheduleState) -> Self
The current state of the cluster snapshot schedule.
sourcepub fn set_snapshot_schedule_state(self, input: Option<ScheduleState>) -> Self
pub fn set_snapshot_schedule_state(self, input: Option<ScheduleState>) -> Self
The current state of the cluster snapshot schedule.
sourcepub fn expected_next_snapshot_schedule_time(self, input: DateTime) -> Self
pub fn expected_next_snapshot_schedule_time(self, input: DateTime) -> Self
The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.
sourcepub fn set_expected_next_snapshot_schedule_time(
self,
input: Option<DateTime>
) -> Self
pub fn set_expected_next_snapshot_schedule_time(
self,
input: Option<DateTime>
) -> Self
The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.
sourcepub fn expected_next_snapshot_schedule_time_status(
self,
input: impl Into<String>
) -> Self
pub fn expected_next_snapshot_schedule_time_status(
self,
input: impl Into<String>
) -> Self
The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:
-
OnTrack - The next snapshot is expected to be taken on time.
-
Pending - The next snapshot is pending to be taken.
sourcepub fn set_expected_next_snapshot_schedule_time_status(
self,
input: Option<String>
) -> Self
pub fn set_expected_next_snapshot_schedule_time_status(
self,
input: Option<String>
) -> Self
The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:
-
OnTrack - The next snapshot is expected to be taken on time.
-
Pending - The next snapshot is pending to be taken.
sourcepub fn next_maintenance_window_start_time(self, input: DateTime) -> Self
pub fn next_maintenance_window_start_time(self, input: DateTime) -> Self
The date and time in UTC when system maintenance can begin.
sourcepub fn set_next_maintenance_window_start_time(
self,
input: Option<DateTime>
) -> Self
pub fn set_next_maintenance_window_start_time(
self,
input: Option<DateTime>
) -> Self
The date and time in UTC when system maintenance can begin.
sourcepub fn resize_info(self, input: ResizeInfo) -> Self
pub fn resize_info(self, input: ResizeInfo) -> Self
Returns the following:
-
AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.
-
ResizeType: Returns ClassicResize
sourcepub fn set_resize_info(self, input: Option<ResizeInfo>) -> Self
pub fn set_resize_info(self, input: Option<ResizeInfo>) -> Self
Returns the following:
-
AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.
-
ResizeType: Returns ClassicResize
sourcepub fn availability_zone_relocation_status(
self,
input: impl Into<String>
) -> Self
pub fn availability_zone_relocation_status(
self,
input: impl Into<String>
) -> Self
Describes the status of the Availability Zone relocation operation.
sourcepub fn set_availability_zone_relocation_status(
self,
input: Option<String>
) -> Self
pub fn set_availability_zone_relocation_status(
self,
input: Option<String>
) -> Self
Describes the status of the Availability Zone relocation operation.
sourcepub fn cluster_namespace_arn(self, input: impl Into<String>) -> Self
pub fn cluster_namespace_arn(self, input: impl Into<String>) -> Self
The namespace Amazon Resource Name (ARN) of the cluster.
sourcepub fn set_cluster_namespace_arn(self, input: Option<String>) -> Self
pub fn set_cluster_namespace_arn(self, input: Option<String>) -> Self
The namespace Amazon Resource Name (ARN) of the cluster.
sourcepub fn total_storage_capacity_in_mega_bytes(self, input: i64) -> Self
pub fn total_storage_capacity_in_mega_bytes(self, input: i64) -> Self
The total storage capacity of the cluster in megabytes.
sourcepub fn set_total_storage_capacity_in_mega_bytes(
self,
input: Option<i64>
) -> Self
pub fn set_total_storage_capacity_in_mega_bytes(
self,
input: Option<i64>
) -> Self
The total storage capacity of the cluster in megabytes.
sourcepub fn aqua_configuration(self, input: AquaConfiguration) -> Self
pub fn aqua_configuration(self, input: AquaConfiguration) -> Self
The AQUA (Advanced Query Accelerator) configuration of the cluster.
sourcepub fn set_aqua_configuration(self, input: Option<AquaConfiguration>) -> Self
pub fn set_aqua_configuration(self, input: Option<AquaConfiguration>) -> Self
The AQUA (Advanced Query Accelerator) configuration of the cluster.
sourcepub fn default_iam_role_arn(self, input: impl Into<String>) -> Self
pub fn default_iam_role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.
sourcepub fn set_default_iam_role_arn(self, input: Option<String>) -> Self
pub fn set_default_iam_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.
sourcepub fn reserved_node_exchange_status(
self,
input: ReservedNodeExchangeStatus
) -> Self
pub fn reserved_node_exchange_status(
self,
input: ReservedNodeExchangeStatus
) -> Self
The status of the reserved-node exchange request. Statuses include in-progress and requested.
sourcepub fn set_reserved_node_exchange_status(
self,
input: Option<ReservedNodeExchangeStatus>
) -> Self
pub fn set_reserved_node_exchange_status(
self,
input: Option<ReservedNodeExchangeStatus>
) -> Self
The status of the reserved-node exchange request. Statuses include in-progress and requested.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more