#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for StackSetDriftDetectionDetails
Implementations
sourceimpl Builder
impl Builder
sourcepub fn drift_status(self, input: StackSetDriftStatus) -> Self
pub fn drift_status(self, input: StackSetDriftStatus) -> Self
Status of the stack set's actual configuration compared to its expected template and parameter configuration. A stack set is considered to have drifted if one or more of its stack instances have drifted from their expected template and parameter configuration.
-
DRIFTED
: One or more of the stack instances belonging to the stack set stack differs from the expected template and parameter configuration. A stack instance is considered to have drifted if one or more of the resources in the associated stack have drifted. -
NOT_CHECKED
: CloudFormation hasn't checked the stack set for drift. -
IN_SYNC
: All of the stack instances belonging to the stack set stack match from the expected template and parameter configuration.
sourcepub fn set_drift_status(self, input: Option<StackSetDriftStatus>) -> Self
pub fn set_drift_status(self, input: Option<StackSetDriftStatus>) -> Self
Status of the stack set's actual configuration compared to its expected template and parameter configuration. A stack set is considered to have drifted if one or more of its stack instances have drifted from their expected template and parameter configuration.
-
DRIFTED
: One or more of the stack instances belonging to the stack set stack differs from the expected template and parameter configuration. A stack instance is considered to have drifted if one or more of the resources in the associated stack have drifted. -
NOT_CHECKED
: CloudFormation hasn't checked the stack set for drift. -
IN_SYNC
: All of the stack instances belonging to the stack set stack match from the expected template and parameter configuration.
sourcepub fn drift_detection_status(self, input: StackSetDriftDetectionStatus) -> Self
pub fn drift_detection_status(self, input: StackSetDriftDetectionStatus) -> Self
The status of the stack set drift detection operation.
-
COMPLETED
: The drift detection operation completed without failing on any stack instances. -
FAILED
: The drift detection operation exceeded the specified failure tolerance. -
PARTIAL_SUCCESS
: The drift detection operation completed without exceeding the failure tolerance for the operation. -
IN_PROGRESS
: The drift detection operation is currently being performed. -
STOPPED
: The user has canceled the drift detection operation.
sourcepub fn set_drift_detection_status(
self,
input: Option<StackSetDriftDetectionStatus>
) -> Self
pub fn set_drift_detection_status(
self,
input: Option<StackSetDriftDetectionStatus>
) -> Self
The status of the stack set drift detection operation.
-
COMPLETED
: The drift detection operation completed without failing on any stack instances. -
FAILED
: The drift detection operation exceeded the specified failure tolerance. -
PARTIAL_SUCCESS
: The drift detection operation completed without exceeding the failure tolerance for the operation. -
IN_PROGRESS
: The drift detection operation is currently being performed. -
STOPPED
: The user has canceled the drift detection operation.
sourcepub fn last_drift_check_timestamp(self, input: DateTime) -> Self
pub fn last_drift_check_timestamp(self, input: DateTime) -> Self
Most recent time when CloudFormation performed a drift detection operation on the stack set. This value will be NULL
for any stack set on which drift detection hasn't yet been performed.
sourcepub fn set_last_drift_check_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_last_drift_check_timestamp(self, input: Option<DateTime>) -> Self
Most recent time when CloudFormation performed a drift detection operation on the stack set. This value will be NULL
for any stack set on which drift detection hasn't yet been performed.
sourcepub fn total_stack_instances_count(self, input: i32) -> Self
pub fn total_stack_instances_count(self, input: i32) -> Self
The total number of stack instances belonging to this stack set.
The total number of stack instances is equal to the total of:
-
Stack instances that match the stack set configuration.
-
Stack instances that have drifted from the stack set configuration.
-
Stack instances where the drift detection operation has failed.
-
Stack instances currently being checked for drift.
sourcepub fn set_total_stack_instances_count(self, input: Option<i32>) -> Self
pub fn set_total_stack_instances_count(self, input: Option<i32>) -> Self
The total number of stack instances belonging to this stack set.
The total number of stack instances is equal to the total of:
-
Stack instances that match the stack set configuration.
-
Stack instances that have drifted from the stack set configuration.
-
Stack instances where the drift detection operation has failed.
-
Stack instances currently being checked for drift.
sourcepub fn drifted_stack_instances_count(self, input: i32) -> Self
pub fn drifted_stack_instances_count(self, input: i32) -> Self
The number of stack instances that have drifted from the expected template and parameter configuration of the stack set. A stack instance is considered to have drifted if one or more of the resources in the associated stack don't match their expected configuration.
sourcepub fn set_drifted_stack_instances_count(self, input: Option<i32>) -> Self
pub fn set_drifted_stack_instances_count(self, input: Option<i32>) -> Self
The number of stack instances that have drifted from the expected template and parameter configuration of the stack set. A stack instance is considered to have drifted if one or more of the resources in the associated stack don't match their expected configuration.
sourcepub fn in_sync_stack_instances_count(self, input: i32) -> Self
pub fn in_sync_stack_instances_count(self, input: i32) -> Self
The number of stack instances which match the expected template and parameter configuration of the stack set.
sourcepub fn set_in_sync_stack_instances_count(self, input: Option<i32>) -> Self
pub fn set_in_sync_stack_instances_count(self, input: Option<i32>) -> Self
The number of stack instances which match the expected template and parameter configuration of the stack set.
sourcepub fn in_progress_stack_instances_count(self, input: i32) -> Self
pub fn in_progress_stack_instances_count(self, input: i32) -> Self
The number of stack instances that are currently being checked for drift.
sourcepub fn set_in_progress_stack_instances_count(self, input: Option<i32>) -> Self
pub fn set_in_progress_stack_instances_count(self, input: Option<i32>) -> Self
The number of stack instances that are currently being checked for drift.
sourcepub fn failed_stack_instances_count(self, input: i32) -> Self
pub fn failed_stack_instances_count(self, input: i32) -> Self
The number of stack instances for which the drift detection operation failed.
sourcepub fn set_failed_stack_instances_count(self, input: Option<i32>) -> Self
pub fn set_failed_stack_instances_count(self, input: Option<i32>) -> Self
The number of stack instances for which the drift detection operation failed.
sourcepub fn build(self) -> StackSetDriftDetectionDetails
pub fn build(self) -> StackSetDriftDetectionDetails
Consumes the builder and constructs a StackSetDriftDetectionDetails
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more