Struct aws_sdk_macie2::operation::put_classification_export_configuration::builders::PutClassificationExportConfigurationInputBuilder
source · #[non_exhaustive]pub struct PutClassificationExportConfigurationInputBuilder { /* private fields */ }
Expand description
A builder for PutClassificationExportConfigurationInput
.
Implementations§
source§impl PutClassificationExportConfigurationInputBuilder
impl PutClassificationExportConfigurationInputBuilder
sourcepub fn configuration(self, input: ClassificationExportConfiguration) -> Self
pub fn configuration(self, input: ClassificationExportConfiguration) -> Self
The location to store data classification results in, and the encryption settings to use when storing results in that location.
This field is required.sourcepub fn set_configuration(
self,
input: Option<ClassificationExportConfiguration>,
) -> Self
pub fn set_configuration( self, input: Option<ClassificationExportConfiguration>, ) -> Self
The location to store data classification results in, and the encryption settings to use when storing results in that location.
sourcepub fn get_configuration(&self) -> &Option<ClassificationExportConfiguration>
pub fn get_configuration(&self) -> &Option<ClassificationExportConfiguration>
The location to store data classification results in, and the encryption settings to use when storing results in that location.
sourcepub fn build(
self,
) -> Result<PutClassificationExportConfigurationInput, BuildError>
pub fn build( self, ) -> Result<PutClassificationExportConfigurationInput, BuildError>
Consumes the builder and constructs a PutClassificationExportConfigurationInput
.
source§impl PutClassificationExportConfigurationInputBuilder
impl PutClassificationExportConfigurationInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<PutClassificationExportConfigurationOutput, SdkError<PutClassificationExportConfigurationError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<PutClassificationExportConfigurationOutput, SdkError<PutClassificationExportConfigurationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PutClassificationExportConfigurationInputBuilder
impl Clone for PutClassificationExportConfigurationInputBuilder
source§fn clone(&self) -> PutClassificationExportConfigurationInputBuilder
fn clone(&self) -> PutClassificationExportConfigurationInputBuilder
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 PutClassificationExportConfigurationInputBuilder
impl Default for PutClassificationExportConfigurationInputBuilder
source§fn default() -> PutClassificationExportConfigurationInputBuilder
fn default() -> PutClassificationExportConfigurationInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for PutClassificationExportConfigurationInputBuilder
impl PartialEq for PutClassificationExportConfigurationInputBuilder
source§fn eq(&self, other: &PutClassificationExportConfigurationInputBuilder) -> bool
fn eq(&self, other: &PutClassificationExportConfigurationInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutClassificationExportConfigurationInputBuilder
Auto Trait Implementations§
impl Freeze for PutClassificationExportConfigurationInputBuilder
impl RefUnwindSafe for PutClassificationExportConfigurationInputBuilder
impl Send for PutClassificationExportConfigurationInputBuilder
impl Sync for PutClassificationExportConfigurationInputBuilder
impl Unpin for PutClassificationExportConfigurationInputBuilder
impl UnwindSafe for PutClassificationExportConfigurationInputBuilder
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.