Struct aws_sdk_cloudfront::operation::create_field_level_encryption_config::builders::CreateFieldLevelEncryptionConfigInputBuilder
source · #[non_exhaustive]pub struct CreateFieldLevelEncryptionConfigInputBuilder { /* private fields */ }
Expand description
A builder for CreateFieldLevelEncryptionConfigInput
.
Implementations§
source§impl CreateFieldLevelEncryptionConfigInputBuilder
impl CreateFieldLevelEncryptionConfigInputBuilder
sourcepub fn field_level_encryption_config(
self,
input: FieldLevelEncryptionConfig
) -> Self
pub fn field_level_encryption_config( self, input: FieldLevelEncryptionConfig ) -> Self
The request to create a new 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
The request to create a new field-level encryption configuration.
sourcepub fn get_field_level_encryption_config(
&self
) -> &Option<FieldLevelEncryptionConfig>
pub fn get_field_level_encryption_config( &self ) -> &Option<FieldLevelEncryptionConfig>
The request to create a new field-level encryption configuration.
sourcepub fn build(self) -> Result<CreateFieldLevelEncryptionConfigInput, BuildError>
pub fn build(self) -> Result<CreateFieldLevelEncryptionConfigInput, BuildError>
Consumes the builder and constructs a CreateFieldLevelEncryptionConfigInput
.
source§impl CreateFieldLevelEncryptionConfigInputBuilder
impl CreateFieldLevelEncryptionConfigInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateFieldLevelEncryptionConfigOutput, SdkError<CreateFieldLevelEncryptionConfigError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateFieldLevelEncryptionConfigOutput, SdkError<CreateFieldLevelEncryptionConfigError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateFieldLevelEncryptionConfigInputBuilder
impl Clone for CreateFieldLevelEncryptionConfigInputBuilder
source§fn clone(&self) -> CreateFieldLevelEncryptionConfigInputBuilder
fn clone(&self) -> CreateFieldLevelEncryptionConfigInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for CreateFieldLevelEncryptionConfigInputBuilder
impl Default for CreateFieldLevelEncryptionConfigInputBuilder
source§fn default() -> CreateFieldLevelEncryptionConfigInputBuilder
fn default() -> CreateFieldLevelEncryptionConfigInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CreateFieldLevelEncryptionConfigInputBuilder
impl PartialEq for CreateFieldLevelEncryptionConfigInputBuilder
source§fn eq(&self, other: &CreateFieldLevelEncryptionConfigInputBuilder) -> bool
fn eq(&self, other: &CreateFieldLevelEncryptionConfigInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateFieldLevelEncryptionConfigInputBuilder
Auto Trait Implementations§
impl Freeze for CreateFieldLevelEncryptionConfigInputBuilder
impl RefUnwindSafe for CreateFieldLevelEncryptionConfigInputBuilder
impl Send for CreateFieldLevelEncryptionConfigInputBuilder
impl Sync for CreateFieldLevelEncryptionConfigInputBuilder
impl Unpin for CreateFieldLevelEncryptionConfigInputBuilder
impl UnwindSafe for CreateFieldLevelEncryptionConfigInputBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.