pub struct DescribeStackResourceDriftsInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub stack_name: String,
pub stack_resource_drift_status_filters: Option<Vec<String>>,
}Fields§
§max_results: Option<i64>The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a NextToken value that you can assign to the NextToken request parameter to get the next set of results.
next_token: Option<String>A string that identifies the next page of stack resource drift results.
stack_name: StringThe name of the stack for which you want drift information.
stack_resource_drift_status_filters: Option<Vec<String>>The resource drift status values to use as filters for the resource drift results returned.
-
DELETED: The resource differs from its expected template configuration in that the resource has been deleted. -
MODIFIED: One or more resource properties differ from their expected template values. -
INSYNC: The resources's actual configuration matches its expected template configuration. -
NOTCHECKED: AWS CloudFormation does not currently return this value.
Trait Implementations§
Source§impl Clone for DescribeStackResourceDriftsInput
impl Clone for DescribeStackResourceDriftsInput
Source§fn clone(&self) -> DescribeStackResourceDriftsInput
fn clone(&self) -> DescribeStackResourceDriftsInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DescribeStackResourceDriftsInput
impl Default for DescribeStackResourceDriftsInput
Source§fn default() -> DescribeStackResourceDriftsInput
fn default() -> DescribeStackResourceDriftsInput
Source§impl PartialEq for DescribeStackResourceDriftsInput
impl PartialEq for DescribeStackResourceDriftsInput
Source§fn eq(&self, other: &DescribeStackResourceDriftsInput) -> bool
fn eq(&self, other: &DescribeStackResourceDriftsInput) -> bool
self and other values to be equal, and is used by ==.