#[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 ==
.