#[non_exhaustive]pub struct EvaluationResultIdentifierBuilder { /* private fields */ }Expand description
A builder for EvaluationResultIdentifier.
Implementations§
source§impl EvaluationResultIdentifierBuilder
impl EvaluationResultIdentifierBuilder
sourcepub fn evaluation_result_qualifier(
self,
input: EvaluationResultQualifier,
) -> Self
pub fn evaluation_result_qualifier( self, input: EvaluationResultQualifier, ) -> Self
Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource.
sourcepub fn set_evaluation_result_qualifier(
self,
input: Option<EvaluationResultQualifier>,
) -> Self
pub fn set_evaluation_result_qualifier( self, input: Option<EvaluationResultQualifier>, ) -> Self
Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource.
sourcepub fn get_evaluation_result_qualifier(
&self,
) -> &Option<EvaluationResultQualifier>
pub fn get_evaluation_result_qualifier( &self, ) -> &Option<EvaluationResultQualifier>
Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource.
sourcepub fn ordering_timestamp(self, input: DateTime) -> Self
pub fn ordering_timestamp(self, input: DateTime) -> Self
The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation.
sourcepub fn set_ordering_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_ordering_timestamp(self, input: Option<DateTime>) -> Self
The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation.
sourcepub fn get_ordering_timestamp(&self) -> &Option<DateTime>
pub fn get_ordering_timestamp(&self) -> &Option<DateTime>
The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation.
sourcepub fn resource_evaluation_id(self, input: impl Into<String>) -> Self
pub fn resource_evaluation_id(self, input: impl Into<String>) -> Self
A Unique ID for an evaluation result.
sourcepub fn set_resource_evaluation_id(self, input: Option<String>) -> Self
pub fn set_resource_evaluation_id(self, input: Option<String>) -> Self
A Unique ID for an evaluation result.
sourcepub fn get_resource_evaluation_id(&self) -> &Option<String>
pub fn get_resource_evaluation_id(&self) -> &Option<String>
A Unique ID for an evaluation result.
sourcepub fn build(self) -> EvaluationResultIdentifier
pub fn build(self) -> EvaluationResultIdentifier
Consumes the builder and constructs a EvaluationResultIdentifier.
Trait Implementations§
source§impl Clone for EvaluationResultIdentifierBuilder
impl Clone for EvaluationResultIdentifierBuilder
source§fn clone(&self) -> EvaluationResultIdentifierBuilder
fn clone(&self) -> EvaluationResultIdentifierBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for EvaluationResultIdentifierBuilder
impl Default for EvaluationResultIdentifierBuilder
source§fn default() -> EvaluationResultIdentifierBuilder
fn default() -> EvaluationResultIdentifierBuilder
source§impl PartialEq for EvaluationResultIdentifierBuilder
impl PartialEq for EvaluationResultIdentifierBuilder
source§fn eq(&self, other: &EvaluationResultIdentifierBuilder) -> bool
fn eq(&self, other: &EvaluationResultIdentifierBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EvaluationResultIdentifierBuilder
Auto Trait Implementations§
impl Freeze for EvaluationResultIdentifierBuilder
impl RefUnwindSafe for EvaluationResultIdentifierBuilder
impl Send for EvaluationResultIdentifierBuilder
impl Sync for EvaluationResultIdentifierBuilder
impl Unpin for EvaluationResultIdentifierBuilder
impl UnwindSafe for EvaluationResultIdentifierBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
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>
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 more