Struct aws_sdk_auditmanager::operation::get_evidence_folder::builders::GetEvidenceFolderInputBuilder
source · #[non_exhaustive]pub struct GetEvidenceFolderInputBuilder { /* private fields */ }Expand description
A builder for GetEvidenceFolderInput.
Implementations§
source§impl GetEvidenceFolderInputBuilder
impl GetEvidenceFolderInputBuilder
sourcepub fn assessment_id(self, input: impl Into<String>) -> Self
pub fn assessment_id(self, input: impl Into<String>) -> Self
The unique identifier for the assessment.
This field is required.sourcepub fn set_assessment_id(self, input: Option<String>) -> Self
pub fn set_assessment_id(self, input: Option<String>) -> Self
The unique identifier for the assessment.
sourcepub fn get_assessment_id(&self) -> &Option<String>
pub fn get_assessment_id(&self) -> &Option<String>
The unique identifier for the assessment.
sourcepub fn control_set_id(self, input: impl Into<String>) -> Self
pub fn control_set_id(self, input: impl Into<String>) -> Self
The unique identifier for the control set.
This field is required.sourcepub fn set_control_set_id(self, input: Option<String>) -> Self
pub fn set_control_set_id(self, input: Option<String>) -> Self
The unique identifier for the control set.
sourcepub fn get_control_set_id(&self) -> &Option<String>
pub fn get_control_set_id(&self) -> &Option<String>
The unique identifier for the control set.
sourcepub fn evidence_folder_id(self, input: impl Into<String>) -> Self
pub fn evidence_folder_id(self, input: impl Into<String>) -> Self
The unique identifier for the folder that the evidence is stored in.
This field is required.sourcepub fn set_evidence_folder_id(self, input: Option<String>) -> Self
pub fn set_evidence_folder_id(self, input: Option<String>) -> Self
The unique identifier for the folder that the evidence is stored in.
sourcepub fn get_evidence_folder_id(&self) -> &Option<String>
pub fn get_evidence_folder_id(&self) -> &Option<String>
The unique identifier for the folder that the evidence is stored in.
sourcepub fn build(self) -> Result<GetEvidenceFolderInput, BuildError>
pub fn build(self) -> Result<GetEvidenceFolderInput, BuildError>
Consumes the builder and constructs a GetEvidenceFolderInput.
source§impl GetEvidenceFolderInputBuilder
impl GetEvidenceFolderInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetEvidenceFolderOutput, SdkError<GetEvidenceFolderError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetEvidenceFolderOutput, SdkError<GetEvidenceFolderError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetEvidenceFolderInputBuilder
impl Clone for GetEvidenceFolderInputBuilder
source§fn clone(&self) -> GetEvidenceFolderInputBuilder
fn clone(&self) -> GetEvidenceFolderInputBuilder
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 GetEvidenceFolderInputBuilder
impl Default for GetEvidenceFolderInputBuilder
source§fn default() -> GetEvidenceFolderInputBuilder
fn default() -> GetEvidenceFolderInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetEvidenceFolderInputBuilder
impl PartialEq for GetEvidenceFolderInputBuilder
source§fn eq(&self, other: &GetEvidenceFolderInputBuilder) -> bool
fn eq(&self, other: &GetEvidenceFolderInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetEvidenceFolderInputBuilder
Auto Trait Implementations§
impl Freeze for GetEvidenceFolderInputBuilder
impl RefUnwindSafe for GetEvidenceFolderInputBuilder
impl Send for GetEvidenceFolderInputBuilder
impl Sync for GetEvidenceFolderInputBuilder
impl Unpin for GetEvidenceFolderInputBuilder
impl UnwindSafe for GetEvidenceFolderInputBuilder
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.