#[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 ==
.impl StructuralPartialEq for UpdatePrimaryRegionInputBuilder
Auto Trait Implementations§
impl Freeze for UpdatePrimaryRegionInputBuilder
impl RefUnwindSafe for UpdatePrimaryRegionInputBuilder
impl Send for UpdatePrimaryRegionInputBuilder
impl Sync for UpdatePrimaryRegionInputBuilder
impl Unpin for UpdatePrimaryRegionInputBuilder
impl UnwindSafe for UpdatePrimaryRegionInputBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more