Inital Commit

This commit is contained in:
Brett Woodruff
2024-06-10 12:24:37 -04:00
commit 106024bcb4
2223 changed files with 241071 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{
"version": "1.0",
"examples": {
}
}

View File

@@ -0,0 +1,46 @@
{
"pagination": {
"GetResourcePolicies": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "resourcePolicies"
},
"ListIncidentRecords": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "incidentRecordSummaries"
},
"ListRelatedItems": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "relatedItems"
},
"ListReplicationSets": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "replicationSetArns"
},
"ListResponsePlans": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "responsePlanSummaries"
},
"ListTimelineEvents": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "eventSummaries"
},
"ListIncidentFindings": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "findings"
}
}
}

View File

@@ -0,0 +1,53 @@
{
"version" : 2,
"waiters" : {
"WaitForReplicationSetActive" : {
"description" : "Wait for a replication set to become ACTIVE",
"delay" : 30,
"maxAttempts" : 5,
"operation" : "GetReplicationSet",
"acceptors" : [ {
"matcher" : "path",
"argument" : "replicationSet.status",
"state" : "success",
"expected" : "ACTIVE"
}, {
"matcher" : "path",
"argument" : "replicationSet.status",
"state" : "retry",
"expected" : "CREATING"
}, {
"matcher" : "path",
"argument" : "replicationSet.status",
"state" : "retry",
"expected" : "UPDATING"
}, {
"matcher" : "path",
"argument" : "replicationSet.status",
"state" : "failure",
"expected" : "FAILED"
} ]
},
"WaitForReplicationSetDeleted" : {
"description" : "Wait for a replication set to be deleted",
"delay" : 30,
"maxAttempts" : 5,
"operation" : "GetReplicationSet",
"acceptors" : [ {
"matcher" : "error",
"state" : "success",
"expected" : "ResourceNotFoundException"
}, {
"matcher" : "path",
"argument" : "replicationSet.status",
"state" : "retry",
"expected" : "DELETING"
}, {
"matcher" : "path",
"argument" : "replicationSet.status",
"state" : "failure",
"expected" : "FAILED"
} ]
}
}
}