Struct aws_sdk_auditmanager::operation::batch_associate_assessment_report_evidence::BatchAssociateAssessmentReportEvidenceInput
source · #[non_exhaustive]pub struct BatchAssociateAssessmentReportEvidenceInput {
pub assessment_id: Option<String>,
pub evidence_folder_id: Option<String>,
pub evidence_ids: Option<Vec<String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.assessment_id: Option<String>The identifier for the assessment.
evidence_folder_id: Option<String>The identifier for the folder that the evidence is stored in.
evidence_ids: Option<Vec<String>>The list of evidence identifiers.
Implementations§
source§impl BatchAssociateAssessmentReportEvidenceInput
impl BatchAssociateAssessmentReportEvidenceInput
sourcepub fn assessment_id(&self) -> Option<&str>
pub fn assessment_id(&self) -> Option<&str>
The identifier for the assessment.
sourcepub fn evidence_folder_id(&self) -> Option<&str>
pub fn evidence_folder_id(&self) -> Option<&str>
The identifier for the folder that the evidence is stored in.
sourcepub fn evidence_ids(&self) -> &[String]
pub fn evidence_ids(&self) -> &[String]
The list of evidence identifiers.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .evidence_ids.is_none().
source§impl BatchAssociateAssessmentReportEvidenceInput
impl BatchAssociateAssessmentReportEvidenceInput
sourcepub fn builder() -> BatchAssociateAssessmentReportEvidenceInputBuilder
pub fn builder() -> BatchAssociateAssessmentReportEvidenceInputBuilder
Creates a new builder-style object to manufacture BatchAssociateAssessmentReportEvidenceInput.
Trait Implementations§
source§impl Clone for BatchAssociateAssessmentReportEvidenceInput
impl Clone for BatchAssociateAssessmentReportEvidenceInput
source§fn clone(&self) -> BatchAssociateAssessmentReportEvidenceInput
fn clone(&self) -> BatchAssociateAssessmentReportEvidenceInput
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 PartialEq for BatchAssociateAssessmentReportEvidenceInput
impl PartialEq for BatchAssociateAssessmentReportEvidenceInput
source§fn eq(&self, other: &BatchAssociateAssessmentReportEvidenceInput) -> bool
fn eq(&self, other: &BatchAssociateAssessmentReportEvidenceInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchAssociateAssessmentReportEvidenceInput
Auto Trait Implementations§
impl RefUnwindSafe for BatchAssociateAssessmentReportEvidenceInput
impl Send for BatchAssociateAssessmentReportEvidenceInput
impl Sync for BatchAssociateAssessmentReportEvidenceInput
impl Unpin for BatchAssociateAssessmentReportEvidenceInput
impl UnwindSafe for BatchAssociateAssessmentReportEvidenceInput
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>
Creates a shared type from an unshared type.