-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
awstools
committed
Apr 14, 2021
1 parent
693a714
commit 17245a8
Showing
21 changed files
with
865 additions
and
657 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "CodeStarconnections", | ||
"description": "This release adds tagging support for CodeStar Connections Host resources" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "ConfigService", | ||
"description": "Add exception for DeleteRemediationConfiguration and DescribeRemediationExecutionStatus" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "MediaConnect", | ||
"description": "For flows that use Listener protocols, you can now easily locate an output's outbound IP address for a private internet. Additionally, MediaConnect now supports the Waiters feature that makes it easier to poll for the status of a flow until it reaches its desired state." | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
{ | ||
"version": 2, | ||
"waiters": { | ||
"FlowActive": { | ||
"description": "Wait until a flow is active", | ||
"operation": "DescribeFlow", | ||
"delay": 3, | ||
"maxAttempts": 40, | ||
"acceptors": [ | ||
{ | ||
"state": "success", | ||
"matcher": "path", | ||
"argument": "Flow.Status", | ||
"expected": "ACTIVE" | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "path", | ||
"argument": "Flow.Status", | ||
"expected": "STARTING" | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "path", | ||
"argument": "Flow.Status", | ||
"expected": "UPDATING" | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "status", | ||
"expected": 500 | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "status", | ||
"expected": 503 | ||
}, | ||
{ | ||
"state": "failure", | ||
"matcher": "path", | ||
"argument": "Flow.Status", | ||
"expected": "ERROR" | ||
} | ||
] | ||
}, | ||
"FlowStandby": { | ||
"description": "Wait until a flow is in standby mode", | ||
"operation": "DescribeFlow", | ||
"delay": 3, | ||
"maxAttempts": 40, | ||
"acceptors": [ | ||
{ | ||
"state": "success", | ||
"matcher": "path", | ||
"argument": "Flow.Status", | ||
"expected": "STANDBY" | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "path", | ||
"argument": "Flow.Status", | ||
"expected": "STOPPING" | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "status", | ||
"expected": 500 | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "status", | ||
"expected": 503 | ||
}, | ||
{ | ||
"state": "failure", | ||
"matcher": "path", | ||
"argument": "Flow.Status", | ||
"expected": "ERROR" | ||
} | ||
] | ||
}, | ||
"FlowDeleted": { | ||
"description": "Wait until a flow is deleted", | ||
"operation": "DescribeFlow", | ||
"delay": 3, | ||
"maxAttempts": 40, | ||
"acceptors": [ | ||
{ | ||
"state": "success", | ||
"matcher": "status", | ||
"expected": 404 | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "path", | ||
"argument": "Flow.Status", | ||
"expected": "DELETING" | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "status", | ||
"expected": 500 | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "status", | ||
"expected": 503 | ||
}, | ||
{ | ||
"state": "failure", | ||
"matcher": "path", | ||
"argument": "Flow.Status", | ||
"expected": "ERROR" | ||
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.