pub struct CreateClusterFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateCluster.
Creates a new AWS CloudHSM cluster.
Implementations§
source§impl CreateClusterFluentBuilder
impl CreateClusterFluentBuilder
sourcepub fn as_input(&self) -> &CreateClusterInputBuilder
pub fn as_input(&self) -> &CreateClusterInputBuilder
Access the CreateCluster as a reference.
sourcepub async fn send(
self
) -> Result<CreateClusterOutput, SdkError<CreateClusterError, HttpResponse>>
pub async fn send( self ) -> Result<CreateClusterOutput, SdkError<CreateClusterError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<CreateClusterOutput, CreateClusterError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateClusterOutput, CreateClusterError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn backup_retention_policy(self, input: BackupRetentionPolicy) -> Self
pub fn backup_retention_policy(self, input: BackupRetentionPolicy) -> Self
A policy that defines how the service retains backups.
sourcepub fn set_backup_retention_policy(
self,
input: Option<BackupRetentionPolicy>
) -> Self
pub fn set_backup_retention_policy( self, input: Option<BackupRetentionPolicy> ) -> Self
A policy that defines how the service retains backups.
sourcepub fn get_backup_retention_policy(&self) -> &Option<BackupRetentionPolicy>
pub fn get_backup_retention_policy(&self) -> &Option<BackupRetentionPolicy>
A policy that defines how the service retains backups.
sourcepub fn hsm_type(self, input: impl Into<String>) -> Self
pub fn hsm_type(self, input: impl Into<String>) -> Self
The type of HSM to use in the cluster. Currently the only allowed value is hsm1.medium.
sourcepub fn set_hsm_type(self, input: Option<String>) -> Self
pub fn set_hsm_type(self, input: Option<String>) -> Self
The type of HSM to use in the cluster. Currently the only allowed value is hsm1.medium.
sourcepub fn get_hsm_type(&self) -> &Option<String>
pub fn get_hsm_type(&self) -> &Option<String>
The type of HSM to use in the cluster. Currently the only allowed value is hsm1.medium.
sourcepub fn source_backup_id(self, input: impl Into<String>) -> Self
pub fn source_backup_id(self, input: impl Into<String>) -> Self
The identifier (ID) of the cluster backup to restore. Use this value to restore the cluster from a backup instead of creating a new cluster. To find the backup ID, use DescribeBackups.
sourcepub fn set_source_backup_id(self, input: Option<String>) -> Self
pub fn set_source_backup_id(self, input: Option<String>) -> Self
The identifier (ID) of the cluster backup to restore. Use this value to restore the cluster from a backup instead of creating a new cluster. To find the backup ID, use DescribeBackups.
sourcepub fn get_source_backup_id(&self) -> &Option<String>
pub fn get_source_backup_id(&self) -> &Option<String>
The identifier (ID) of the cluster backup to restore. Use this value to restore the cluster from a backup instead of creating a new cluster. To find the backup ID, use DescribeBackups.
sourcepub fn subnet_ids(self, input: impl Into<String>) -> Self
pub fn subnet_ids(self, input: impl Into<String>) -> Self
Appends an item to SubnetIds.
To override the contents of this collection use set_subnet_ids.
The identifiers (IDs) of the subnets where you are creating the cluster. You must specify at least one subnet. If you specify multiple subnets, they must meet the following criteria:
-
All subnets must be in the same virtual private cloud (VPC).
-
You can specify only one subnet per Availability Zone.
sourcepub fn set_subnet_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_subnet_ids(self, input: Option<Vec<String>>) -> Self
The identifiers (IDs) of the subnets where you are creating the cluster. You must specify at least one subnet. If you specify multiple subnets, they must meet the following criteria:
-
All subnets must be in the same virtual private cloud (VPC).
-
You can specify only one subnet per Availability Zone.
sourcepub fn get_subnet_ids(&self) -> &Option<Vec<String>>
pub fn get_subnet_ids(&self) -> &Option<Vec<String>>
The identifiers (IDs) of the subnets where you are creating the cluster. You must specify at least one subnet. If you specify multiple subnets, they must meet the following criteria:
-
All subnets must be in the same virtual private cloud (VPC).
-
You can specify only one subnet per Availability Zone.
sourcepub fn tag_list(self, input: Tag) -> Self
pub fn tag_list(self, input: Tag) -> Self
Appends an item to TagList.
To override the contents of this collection use set_tag_list.
Tags to apply to the CloudHSM cluster during creation.
sourcepub fn set_tag_list(self, input: Option<Vec<Tag>>) -> Self
pub fn set_tag_list(self, input: Option<Vec<Tag>>) -> Self
Tags to apply to the CloudHSM cluster during creation.
sourcepub fn get_tag_list(&self) -> &Option<Vec<Tag>>
pub fn get_tag_list(&self) -> &Option<Vec<Tag>>
Tags to apply to the CloudHSM cluster during creation.
Trait Implementations§
source§impl Clone for CreateClusterFluentBuilder
impl Clone for CreateClusterFluentBuilder
source§fn clone(&self) -> CreateClusterFluentBuilder
fn clone(&self) -> CreateClusterFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more