Returns the stack instance that's associated with the specified stack set, AWS account, and Region.
For a list of stack instances that are associated with a specific stack
set, use list_stack_instances
.
cloudformation_describe_stack_instance(StackSetName,
StackInstanceAccount, StackInstanceRegion)
A list with the following syntax:
list(
StackInstance = list(
StackSetId = "string",
Region = "string",
Account = "string",
StackId = "string",
ParameterOverrides = list(
list(
ParameterKey = "string",
ParameterValue = "string",
UsePreviousValue = TRUE|FALSE,
ResolvedValue = "string"
)
),
Status = "CURRENT"|"OUTDATED"|"INOPERABLE",
StackInstanceStatus = list(
DetailedStatus = "PENDING"|"RUNNING"|"SUCCEEDED"|"FAILED"|"CANCELLED"|"INOPERABLE"
),
StatusReason = "string",
OrganizationalUnitId = "string",
DriftStatus = "DRIFTED"|"IN_SYNC"|"UNKNOWN"|"NOT_CHECKED",
LastDriftCheckTimestamp = as.POSIXct(
"2015-01-01"
)
)
)
[required] The name or the unique stack ID of the stack set that you want to get stack instance information for.
[required] The ID of an AWS account that's associated with this stack instance.
[required] The name of a Region that's associated with this stack instance.
svc$describe_stack_instance(
StackSetName = "string",
StackInstanceAccount = "string",
StackInstanceRegion = "string"
)