#[non_exhaustive]pub struct FieldLevelEncryptionSummaryBuilder { /* private fields */ }
Expand description
A builder for FieldLevelEncryptionSummary
.
Implementations§
source§impl FieldLevelEncryptionSummaryBuilder
impl FieldLevelEncryptionSummaryBuilder
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The unique ID of a field-level encryption item.
This field is required.sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The unique ID of a field-level encryption item.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
The last time that the summary of field-level encryption items was modified.
This field is required.sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
The last time that the summary of field-level encryption items was modified.
sourcepub fn get_last_modified_time(&self) -> &Option<DateTime>
pub fn get_last_modified_time(&self) -> &Option<DateTime>
The last time that the summary of field-level encryption items was modified.
sourcepub fn comment(self, input: impl Into<String>) -> Self
pub fn comment(self, input: impl Into<String>) -> Self
An optional comment about the field-level encryption item. The comment cannot be longer than 128 characters.
sourcepub fn set_comment(self, input: Option<String>) -> Self
pub fn set_comment(self, input: Option<String>) -> Self
An optional comment about the field-level encryption item. The comment cannot be longer than 128 characters.
sourcepub fn get_comment(&self) -> &Option<String>
pub fn get_comment(&self) -> &Option<String>
An optional comment about the field-level encryption item. The comment cannot be longer than 128 characters.
sourcepub fn query_arg_profile_config(self, input: QueryArgProfileConfig) -> Self
pub fn query_arg_profile_config(self, input: QueryArgProfileConfig) -> Self
A summary of a query argument-profile mapping.
sourcepub fn set_query_arg_profile_config(
self,
input: Option<QueryArgProfileConfig>
) -> Self
pub fn set_query_arg_profile_config( self, input: Option<QueryArgProfileConfig> ) -> Self
A summary of a query argument-profile mapping.
sourcepub fn get_query_arg_profile_config(&self) -> &Option<QueryArgProfileConfig>
pub fn get_query_arg_profile_config(&self) -> &Option<QueryArgProfileConfig>
A summary of a query argument-profile mapping.
sourcepub fn content_type_profile_config(
self,
input: ContentTypeProfileConfig
) -> Self
pub fn content_type_profile_config( self, input: ContentTypeProfileConfig ) -> Self
A summary of a content type-profile mapping.
sourcepub fn set_content_type_profile_config(
self,
input: Option<ContentTypeProfileConfig>
) -> Self
pub fn set_content_type_profile_config( self, input: Option<ContentTypeProfileConfig> ) -> Self
A summary of a content type-profile mapping.
sourcepub fn get_content_type_profile_config(
&self
) -> &Option<ContentTypeProfileConfig>
pub fn get_content_type_profile_config( &self ) -> &Option<ContentTypeProfileConfig>
A summary of a content type-profile mapping.
sourcepub fn build(self) -> Result<FieldLevelEncryptionSummary, BuildError>
pub fn build(self) -> Result<FieldLevelEncryptionSummary, BuildError>
Consumes the builder and constructs a FieldLevelEncryptionSummary
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for FieldLevelEncryptionSummaryBuilder
impl Clone for FieldLevelEncryptionSummaryBuilder
source§fn clone(&self) -> FieldLevelEncryptionSummaryBuilder
fn clone(&self) -> FieldLevelEncryptionSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for FieldLevelEncryptionSummaryBuilder
impl Default for FieldLevelEncryptionSummaryBuilder
source§fn default() -> FieldLevelEncryptionSummaryBuilder
fn default() -> FieldLevelEncryptionSummaryBuilder
source§impl PartialEq for FieldLevelEncryptionSummaryBuilder
impl PartialEq for FieldLevelEncryptionSummaryBuilder
source§fn eq(&self, other: &FieldLevelEncryptionSummaryBuilder) -> bool
fn eq(&self, other: &FieldLevelEncryptionSummaryBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FieldLevelEncryptionSummaryBuilder
Auto Trait Implementations§
impl Freeze for FieldLevelEncryptionSummaryBuilder
impl RefUnwindSafe for FieldLevelEncryptionSummaryBuilder
impl Send for FieldLevelEncryptionSummaryBuilder
impl Sync for FieldLevelEncryptionSummaryBuilder
impl Unpin for FieldLevelEncryptionSummaryBuilder
impl UnwindSafe for FieldLevelEncryptionSummaryBuilder
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