@alma-cdk/cross-region-parameter
Version:
Store AWS SSM Parameter Store Parameters into another AWS Region with AWS CDK
46 lines (45 loc) • 967 B
JSON
{
"version": 2,
"waiters": {
"ServerOffline": {
"acceptors": [
{
"argument": "Server.State",
"expected": "OFFLINE",
"matcher": "path",
"state": "success"
},
{
"argument": "Server.State",
"expected": "STOP_FAILED",
"matcher": "path",
"state": "failure"
}
],
"delay": 30,
"maxAttempts": 120,
"operation": "DescribeServer",
"type": "api"
},
"ServerOnline": {
"acceptors": [
{
"argument": "Server.State",
"expected": "ONLINE",
"matcher": "path",
"state": "success"
},
{
"argument": "Server.State",
"expected": "START_FAILED",
"matcher": "path",
"state": "failure"
}
],
"delay": 30,
"maxAttempts": 120,
"operation": "DescribeServer",
"type": "api"
}
}
}