Struct aws_sdk_cloudfront::operation::update_field_level_encryption_config::builders::UpdateFieldLevelEncryptionConfigInputBuilder
source · #[non_exhaustive]pub struct UpdateFieldLevelEncryptionConfigInputBuilder { /* private fields */ }
Expand description
A builder for UpdateFieldLevelEncryptionConfigInput
.
Implementations§
source§impl UpdateFieldLevelEncryptionConfigInputBuilder
impl UpdateFieldLevelEncryptionConfigInputBuilder
sourcepub fn field_level_encryption_config(
self,
input: FieldLevelEncryptionConfig
) -> Self
pub fn field_level_encryption_config( self, input: FieldLevelEncryptionConfig ) -> Self
Request to update a field-level encryption configuration.
This field is required.sourcepub fn set_field_level_encryption_config(
self,
input: Option<FieldLevelEncryptionConfig>
) -> Self
pub fn set_field_level_encryption_config( self, input: Option<FieldLevelEncryptionConfig> ) -> Self
Request to update a field-level encryption configuration.
sourcepub fn get_field_level_encryption_config(
&self
) -> &Option<FieldLevelEncryptionConfig>
pub fn get_field_level_encryption_config( &self ) -> &Option<FieldLevelEncryptionConfig>
Request to update a field-level encryption configuration.
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The ID of the configuration you want to update.
This field is required.sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The ID of the configuration you want to update.
sourcepub fn if_match(self, input: impl Into<String>) -> Self
pub fn if_match(self, input: impl Into<String>) -> Self
The value of the ETag
header that you received when retrieving the configuration identity to update. For example: E2QWRUHAPOMQZL
.
sourcepub fn set_if_match(self, input: Option<String>) -> Self
pub fn set_if_match(self, input: Option<String>) -> Self
The value of the ETag
header that you received when retrieving the configuration identity to update. For example: E2QWRUHAPOMQZL
.
sourcepub fn get_if_match(&self) -> &Option<String>
pub fn get_if_match(&self) -> &Option<String>
The value of the ETag
header that you received when retrieving the configuration identity to update. For example: E2QWRUHAPOMQZL
.
sourcepub fn build(self) -> Result<UpdateFieldLevelEncryptionConfigInput, BuildError>
pub fn build(self) -> Result<UpdateFieldLevelEncryptionConfigInput, BuildError>
Consumes the builder and constructs a UpdateFieldLevelEncryptionConfigInput
.
source§impl UpdateFieldLevelEncryptionConfigInputBuilder
impl UpdateFieldLevelEncryptionConfigInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateFieldLevelEncryptionConfigOutput, SdkError<UpdateFieldLevelEncryptionConfigError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateFieldLevelEncryptionConfigOutput, SdkError<UpdateFieldLevelEncryptionConfigError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateFieldLevelEncryptionConfigInputBuilder
impl Clone for UpdateFieldLevelEncryptionConfigInputBuilder
source§fn clone(&self) -> UpdateFieldLevelEncryptionConfigInputBuilder
fn clone(&self) -> UpdateFieldLevelEncryptionConfigInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateFieldLevelEncryptionConfigInputBuilder
impl Default for UpdateFieldLevelEncryptionConfigInputBuilder
source§fn default() -> UpdateFieldLevelEncryptionConfigInputBuilder
fn default() -> UpdateFieldLevelEncryptionConfigInputBuilder
source§impl PartialEq for UpdateFieldLevelEncryptionConfigInputBuilder
impl PartialEq for UpdateFieldLevelEncryptionConfigInputBuilder
source§fn eq(&self, other: &UpdateFieldLevelEncryptionConfigInputBuilder) -> bool
fn eq(&self, other: &UpdateFieldLevelEncryptionConfigInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateFieldLevelEncryptionConfigInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateFieldLevelEncryptionConfigInputBuilder
impl RefUnwindSafe for UpdateFieldLevelEncryptionConfigInputBuilder
impl Send for UpdateFieldLevelEncryptionConfigInputBuilder
impl Sync for UpdateFieldLevelEncryptionConfigInputBuilder
impl Unpin for UpdateFieldLevelEncryptionConfigInputBuilder
impl UnwindSafe for UpdateFieldLevelEncryptionConfigInputBuilder
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> 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