-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v1.38.20 (2021-04-14) (#3865)
Release v1.38.20 (2021-04-14) === ### Service Client Updates * `service/codestar-connections`: Updates service API and documentation * `service/config`: Updates service API and documentation * `service/mediaconnect`: Updates service API, documentation, and waiters * `service/route53`: Updates service documentation * Documentation updates for route53
- Loading branch information
1 parent
c9a8f65
commit 6158bd6
Showing
16 changed files
with
461 additions
and
34 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
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.