Struct aws_sdk_kms::operation::update_primary_region::builders::UpdatePrimaryRegionInputBuilder
source · #[non_exhaustive]pub struct UpdatePrimaryRegionInputBuilder { /* private fields */ }
Expand description
A builder for UpdatePrimaryRegionInput
.
Implementations§
source§impl UpdatePrimaryRegionInputBuilder
impl UpdatePrimaryRegionInputBuilder
sourcepub fn key_id(self, input: impl Into<String>) -> Self
pub fn key_id(self, input: impl Into<String>) -> Self
Identifies the current primary key. When the operation completes, this KMS key will be a replica key.
Specify the key ID or key ARN of a multi-Region primary key.
For example:
-
Key ID:
mrk-1234abcd12ab34cd56ef1234567890ab
-
Key ARN:
arn:aws:kms:us-east-2:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab
To get the key ID and key ARN for a KMS key, use ListKeys
or DescribeKey
.
sourcepub fn set_key_id(self, input: Option<String>) -> Self
pub fn set_key_id(self, input: Option<String>) -> Self
Identifies the current primary key. When the operation completes, this KMS key will be a replica key.
Specify the key ID or key ARN of a multi-Region primary key.
For example:
-
Key ID:
mrk-1234abcd12ab34cd56ef1234567890ab
-
Key ARN:
arn:aws:kms:us-east-2:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab
To get the key ID and key ARN for a KMS key, use ListKeys
or DescribeKey
.
sourcepub fn get_key_id(&self) -> &Option<String>
pub fn get_key_id(&self) -> &Option<String>
Identifies the current primary key. When the operation completes, this KMS key will be a replica key.
Specify the key ID or key ARN of a multi-Region primary key.
For example:
-
Key ID:
mrk-1234abcd12ab34cd56ef1234567890ab
-
Key ARN:
arn:aws:kms:us-east-2:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab
To get the key ID and key ARN for a KMS key, use ListKeys
or DescribeKey
.
sourcepub fn primary_region(self, input: impl Into<String>) -> Self
pub fn primary_region(self, input: impl Into<String>) -> Self
The Amazon Web Services Region of the new primary key. Enter the Region ID, such as us-east-1
or ap-southeast-2
. There must be an existing replica key in this Region.
When the operation completes, the multi-Region key in this Region will be the primary key.
This field is required.sourcepub fn set_primary_region(self, input: Option<String>) -> Self
pub fn set_primary_region(self, input: Option<String>) -> Self
The Amazon Web Services Region of the new primary key. Enter the Region ID, such as us-east-1
or ap-southeast-2
. There must be an existing replica key in this Region.
When the operation completes, the multi-Region key in this Region will be the primary key.
sourcepub fn get_primary_region(&self) -> &Option<String>
pub fn get_primary_region(&self) -> &Option<String>
The Amazon Web Services Region of the new primary key. Enter the Region ID, such as us-east-1
or ap-southeast-2
. There must be an existing replica key in this Region.
When the operation completes, the multi-Region key in this Region will be the primary key.
sourcepub fn build(self) -> Result<UpdatePrimaryRegionInput, BuildError>
pub fn build(self) -> Result<UpdatePrimaryRegionInput, BuildError>
Consumes the builder and constructs a UpdatePrimaryRegionInput
.
source§impl UpdatePrimaryRegionInputBuilder
impl UpdatePrimaryRegionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdatePrimaryRegionOutput, SdkError<UpdatePrimaryRegionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdatePrimaryRegionOutput, SdkError<UpdatePrimaryRegionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdatePrimaryRegionInputBuilder
impl Clone for UpdatePrimaryRegionInputBuilder
source§fn clone(&self) -> UpdatePrimaryRegionInputBuilder
fn clone(&self) -> UpdatePrimaryRegionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdatePrimaryRegionInputBuilder
impl Default for UpdatePrimaryRegionInputBuilder
source§fn default() -> UpdatePrimaryRegionInputBuilder
fn default() -> UpdatePrimaryRegionInputBuilder
source§impl PartialEq for UpdatePrimaryRegionInputBuilder
impl PartialEq for UpdatePrimaryRegionInputBuilder
source§fn eq(&self, other: &UpdatePrimaryRegionInputBuilder) -> bool
fn eq(&self, other: &UpdatePrimaryRegionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.