pub struct CreateKeyspaceFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateKeyspace
.
The CreateKeyspace
operation adds a new keyspace to your account. In an Amazon Web Services account, keyspace names must be unique within each Region.
CreateKeyspace
is an asynchronous operation. You can monitor the creation status of the new keyspace by using the GetKeyspace
operation.
For more information, see Creating keyspaces in the Amazon Keyspaces Developer Guide.
Implementations§
source§impl CreateKeyspaceFluentBuilder
impl CreateKeyspaceFluentBuilder
sourcepub fn as_input(&self) -> &CreateKeyspaceInputBuilder
pub fn as_input(&self) -> &CreateKeyspaceInputBuilder
Access the CreateKeyspace as a reference.
sourcepub async fn send(
self
) -> Result<CreateKeyspaceOutput, SdkError<CreateKeyspaceError, HttpResponse>>
pub async fn send( self ) -> Result<CreateKeyspaceOutput, SdkError<CreateKeyspaceError, 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<CreateKeyspaceOutput, CreateKeyspaceError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateKeyspaceOutput, CreateKeyspaceError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn keyspace_name(self, input: impl Into<String>) -> Self
pub fn keyspace_name(self, input: impl Into<String>) -> Self
The name of the keyspace to be created.
sourcepub fn set_keyspace_name(self, input: Option<String>) -> Self
pub fn set_keyspace_name(self, input: Option<String>) -> Self
The name of the keyspace to be created.
sourcepub fn get_keyspace_name(&self) -> &Option<String>
pub fn get_keyspace_name(&self) -> &Option<String>
The name of the keyspace to be created.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
A list of key-value pair tags to be attached to the keyspace.
For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.
A list of key-value pair tags to be attached to the keyspace.
For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.
A list of key-value pair tags to be attached to the keyspace.
For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.
sourcepub fn replication_specification(self, input: ReplicationSpecification) -> Self
pub fn replication_specification(self, input: ReplicationSpecification) -> Self
The replication specification of the keyspace includes:
-
replicationStrategy
- the required value isSINGLE_REGION
orMULTI_REGION
. -
regionList
- if thereplicationStrategy
isMULTI_REGION
, theregionList
requires the current Region and at least one additional Amazon Web Services Region where the keyspace is going to be replicated in. The maximum number of supported replication Regions including the current Region is six.
sourcepub fn set_replication_specification(
self,
input: Option<ReplicationSpecification>
) -> Self
pub fn set_replication_specification( self, input: Option<ReplicationSpecification> ) -> Self
The replication specification of the keyspace includes:
-
replicationStrategy
- the required value isSINGLE_REGION
orMULTI_REGION
. -
regionList
- if thereplicationStrategy
isMULTI_REGION
, theregionList
requires the current Region and at least one additional Amazon Web Services Region where the keyspace is going to be replicated in. The maximum number of supported replication Regions including the current Region is six.
sourcepub fn get_replication_specification(&self) -> &Option<ReplicationSpecification>
pub fn get_replication_specification(&self) -> &Option<ReplicationSpecification>
The replication specification of the keyspace includes:
-
replicationStrategy
- the required value isSINGLE_REGION
orMULTI_REGION
. -
regionList
- if thereplicationStrategy
isMULTI_REGION
, theregionList
requires the current Region and at least one additional Amazon Web Services Region where the keyspace is going to be replicated in. The maximum number of supported replication Regions including the current Region is six.
Trait Implementations§
source§impl Clone for CreateKeyspaceFluentBuilder
impl Clone for CreateKeyspaceFluentBuilder
source§fn clone(&self) -> CreateKeyspaceFluentBuilder
fn clone(&self) -> CreateKeyspaceFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more