Struct aws_sdk_auditmanager::operation::batch_create_delegation_by_assessment::BatchCreateDelegationByAssessmentInput
source · #[non_exhaustive]pub struct BatchCreateDelegationByAssessmentInput {
pub create_delegation_requests: Option<Vec<CreateDelegationRequest>>,
pub assessment_id: Option<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.create_delegation_requests: Option<Vec<CreateDelegationRequest>>The API request to batch create delegations in Audit Manager.
assessment_id: Option<String>The identifier for the assessment.
Implementations§
source§impl BatchCreateDelegationByAssessmentInput
impl BatchCreateDelegationByAssessmentInput
sourcepub fn create_delegation_requests(&self) -> &[CreateDelegationRequest]
pub fn create_delegation_requests(&self) -> &[CreateDelegationRequest]
The API request to batch create delegations in Audit Manager.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .create_delegation_requests.is_none().
sourcepub fn assessment_id(&self) -> Option<&str>
pub fn assessment_id(&self) -> Option<&str>
The identifier for the assessment.
source§impl BatchCreateDelegationByAssessmentInput
impl BatchCreateDelegationByAssessmentInput
sourcepub fn builder() -> BatchCreateDelegationByAssessmentInputBuilder
pub fn builder() -> BatchCreateDelegationByAssessmentInputBuilder
Creates a new builder-style object to manufacture BatchCreateDelegationByAssessmentInput.
Trait Implementations§
source§impl Clone for BatchCreateDelegationByAssessmentInput
impl Clone for BatchCreateDelegationByAssessmentInput
source§fn clone(&self) -> BatchCreateDelegationByAssessmentInput
fn clone(&self) -> BatchCreateDelegationByAssessmentInput
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 BatchCreateDelegationByAssessmentInput
impl PartialEq for BatchCreateDelegationByAssessmentInput
source§fn eq(&self, other: &BatchCreateDelegationByAssessmentInput) -> bool
fn eq(&self, other: &BatchCreateDelegationByAssessmentInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchCreateDelegationByAssessmentInput
Auto Trait Implementations§
impl RefUnwindSafe for BatchCreateDelegationByAssessmentInput
impl Send for BatchCreateDelegationByAssessmentInput
impl Sync for BatchCreateDelegationByAssessmentInput
impl Unpin for BatchCreateDelegationByAssessmentInput
impl UnwindSafe for BatchCreateDelegationByAssessmentInput
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.