Initial commit
This commit is contained in:
@@ -0,0 +1,284 @@
|
||||
{
|
||||
"definitions": {
|
||||
"throttling": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "Throttling",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
},
|
||||
"throttling_exception": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "ThrottlingException",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
},
|
||||
"throttled_exception": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "ThrottledException",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
},
|
||||
"request_throttled_exception": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "RequestThrottledException",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
},
|
||||
"too_many_requests": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"http_status_code": 429
|
||||
}
|
||||
}
|
||||
},
|
||||
"general_socket_errors": {
|
||||
"applies_when": {
|
||||
"socket_errors": ["GENERAL_CONNECTION_ERROR"]
|
||||
}
|
||||
},
|
||||
"general_server_error": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"http_status_code": 500
|
||||
}
|
||||
}
|
||||
},
|
||||
"bad_gateway": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"http_status_code": 502
|
||||
}
|
||||
}
|
||||
},
|
||||
"service_unavailable": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"http_status_code": 503
|
||||
}
|
||||
}
|
||||
},
|
||||
"gateway_timeout": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"http_status_code": 504
|
||||
}
|
||||
}
|
||||
},
|
||||
"limit_exceeded": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"http_status_code": 509
|
||||
}
|
||||
}
|
||||
},
|
||||
"throughput_exceeded": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "ProvisionedThroughputExceededException",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"retry": {
|
||||
"__default__": {
|
||||
"max_attempts": 5,
|
||||
"delay": {
|
||||
"type": "exponential",
|
||||
"base": "rand",
|
||||
"growth_factor": 2
|
||||
},
|
||||
"policies": {
|
||||
"general_socket_errors": {"$ref": "general_socket_errors"},
|
||||
"general_server_error": {"$ref": "general_server_error"},
|
||||
"bad_gateway": {"$ref": "bad_gateway"},
|
||||
"service_unavailable": {"$ref": "service_unavailable"},
|
||||
"gateway_timeout": {"$ref": "gateway_timeout"},
|
||||
"limit_exceeded": {"$ref": "limit_exceeded"},
|
||||
"throttling_exception": {"$ref": "throttling_exception"},
|
||||
"throttled_exception": {"$ref": "throttled_exception"},
|
||||
"request_throttled_exception": {"$ref": "request_throttled_exception"},
|
||||
"throttling": {"$ref": "throttling"},
|
||||
"too_many_requests": {"$ref": "too_many_requests"},
|
||||
"throughput_exceeded": {"$ref": "throughput_exceeded"}
|
||||
}
|
||||
},
|
||||
"organizations": {
|
||||
"__default__": {
|
||||
"policies": {
|
||||
"too_many_requests": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "TooManyRequestsException",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"dynamodb": {
|
||||
"__default__": {
|
||||
"max_attempts": 10,
|
||||
"delay": {
|
||||
"type": "exponential",
|
||||
"base": 0.05,
|
||||
"growth_factor": 2
|
||||
},
|
||||
"policies": {
|
||||
"still_processing": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "TransactionInProgressException",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
},
|
||||
"crc32": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"crc32body": "x-amz-crc32"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ec2": {
|
||||
"__default__": {
|
||||
"policies": {
|
||||
"request_limit_exceeded": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "RequestLimitExceeded",
|
||||
"http_status_code": 503
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"cloudsearch": {
|
||||
"__default__": {
|
||||
"policies": {
|
||||
"request_limit_exceeded": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "BandwidthLimitExceeded",
|
||||
"http_status_code": 509
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"kinesis": {
|
||||
"__default__": {
|
||||
"policies": {
|
||||
"request_limit_exceeded": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "LimitExceededException",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"sqs": {
|
||||
"__default__": {
|
||||
"policies": {
|
||||
"request_limit_exceeded": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "RequestThrottled",
|
||||
"http_status_code": 403
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"s3": {
|
||||
"__default__": {
|
||||
"policies": {
|
||||
"timeouts": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"http_status_code": 400,
|
||||
"service_error_code": "RequestTimeout"
|
||||
}
|
||||
}
|
||||
},
|
||||
"contentmd5": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"http_status_code": 400,
|
||||
"service_error_code": "BadDigest"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"glacier": {
|
||||
"__default__": {
|
||||
"policies": {
|
||||
"timeouts": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"http_status_code": 408,
|
||||
"service_error_code": "RequestTimeoutException"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"route53": {
|
||||
"__default__": {
|
||||
"policies": {
|
||||
"request_limit_exceeded": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "Throttling",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
},
|
||||
"still_processing": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "PriorRequestNotComplete",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"sts": {
|
||||
"__default__": {
|
||||
"policies": {
|
||||
"idp_unreachable_error": {
|
||||
"applies_when": {
|
||||
"response": {
|
||||
"service_error_code": "IDPCommunicationError",
|
||||
"http_status_code": 400
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCertificateAuthorities": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "CertificateAuthorities"
|
||||
},
|
||||
"ListTags": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Tags"
|
||||
},
|
||||
"ListPermissions": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Permissions"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"CertificateAuthorityCSRCreated": {
|
||||
"description": "Wait until a Certificate Authority CSR is created",
|
||||
"operation": "GetCertificateAuthorityCsr",
|
||||
"delay": 3,
|
||||
"maxAttempts": 60,
|
||||
"acceptors": [
|
||||
{
|
||||
"state": "success",
|
||||
"matcher": "status",
|
||||
"expected": 200
|
||||
},
|
||||
{
|
||||
"state": "retry",
|
||||
"matcher": "error",
|
||||
"expected": "RequestInProgressException"
|
||||
}
|
||||
]
|
||||
},
|
||||
"CertificateIssued": {
|
||||
"description": "Wait until a certificate is issued",
|
||||
"operation": "GetCertificate",
|
||||
"delay": 3,
|
||||
"maxAttempts": 60,
|
||||
"acceptors": [
|
||||
{
|
||||
"state": "success",
|
||||
"matcher": "status",
|
||||
"expected": 200
|
||||
},
|
||||
{
|
||||
"state": "retry",
|
||||
"matcher": "error",
|
||||
"expected": "RequestInProgressException"
|
||||
}
|
||||
]
|
||||
},
|
||||
"AuditReportCreated": {
|
||||
"description": "Wait until a Audit Report is created",
|
||||
"operation": "DescribeCertificateAuthorityAuditReport",
|
||||
"delay": 3,
|
||||
"maxAttempts": 60,
|
||||
"acceptors": [
|
||||
{
|
||||
"state": "success",
|
||||
"matcher": "path",
|
||||
"argument": "AuditReportStatus",
|
||||
"expected": "SUCCESS"
|
||||
},
|
||||
{
|
||||
"state": "failure",
|
||||
"matcher": "path",
|
||||
"argument": "AuditReportStatus",
|
||||
"expected": "FAILED"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCertificates": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxItems",
|
||||
"result_key": "CertificateSummaryList"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"CertificateValidated": {
|
||||
"delay": 60,
|
||||
"maxAttempts": 40,
|
||||
"operation": "DescribeCertificate",
|
||||
"acceptors": [
|
||||
{
|
||||
"matcher": "pathAll",
|
||||
"expected": "SUCCESS",
|
||||
"argument": "Certificate.DomainValidationOptions[].ValidationStatus",
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"matcher": "pathAny",
|
||||
"expected": "PENDING_VALIDATION",
|
||||
"argument": "Certificate.DomainValidationOptions[].ValidationStatus",
|
||||
"state": "retry"
|
||||
},
|
||||
{
|
||||
"matcher": "path",
|
||||
"expected": "FAILED",
|
||||
"argument": "Certificate.Status",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"matcher": "error",
|
||||
"expected": "ResourceNotFoundException",
|
||||
"state": "failure"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListSkills": {
|
||||
"result_key": "SkillSummaries",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"SearchUsers": {
|
||||
"result_key": "Users",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListTags": {
|
||||
"result_key": "Tags",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"SearchProfiles": {
|
||||
"result_key": "Profiles",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"SearchSkillGroups": {
|
||||
"result_key": "SkillGroups",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"SearchDevices": {
|
||||
"result_key": "Devices",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"SearchRooms": {
|
||||
"result_key": "Rooms",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListBusinessReportSchedules": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "BusinessReportSchedules"
|
||||
},
|
||||
"ListConferenceProviders": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "ConferenceProviders"
|
||||
},
|
||||
"ListDeviceEvents": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "DeviceEvents"
|
||||
},
|
||||
"ListSkillsStoreCategories": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "CategoryList"
|
||||
},
|
||||
"ListSkillsStoreSkillsByCategory": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "SkillsStoreSkills"
|
||||
},
|
||||
"ListSmartHomeAppliances": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "SmartHomeAppliances"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListApps": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "apps"
|
||||
},
|
||||
"ListBranches": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "branches"
|
||||
},
|
||||
"ListDomainAssociations": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "domainAssociations"
|
||||
},
|
||||
"ListJobs": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "jobSummaries"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"pagination": {
|
||||
"GetApiKeys": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetBasePathMappings": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetClientCertificates": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetDeployments": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetDomainNames": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetModels": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetResources": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetRestApis": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetUsage": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetUsagePlans": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetUsagePlanKeys": {
|
||||
"input_token": "position",
|
||||
"output_token": "position",
|
||||
"limit_key": "limit",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetVpcLinks": {
|
||||
"input_token": "position",
|
||||
"limit_key": "limit",
|
||||
"output_token": "position",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetAuthorizers": {
|
||||
"input_token": "position",
|
||||
"limit_key": "limit",
|
||||
"output_token": "position",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetDocumentationParts": {
|
||||
"input_token": "position",
|
||||
"limit_key": "limit",
|
||||
"output_token": "position",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetDocumentationVersions": {
|
||||
"input_token": "position",
|
||||
"limit_key": "limit",
|
||||
"output_token": "position",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetGatewayResponses": {
|
||||
"input_token": "position",
|
||||
"limit_key": "limit",
|
||||
"output_token": "position",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetRequestValidators": {
|
||||
"input_token": "position",
|
||||
"limit_key": "limit",
|
||||
"output_token": "position",
|
||||
"result_key": "items"
|
||||
},
|
||||
"GetSdkTypes": {
|
||||
"input_token": "position",
|
||||
"limit_key": "limit",
|
||||
"output_token": "position",
|
||||
"result_key": "items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"pagination": {}
|
||||
}
|
||||
@@ -0,0 +1,217 @@
|
||||
{
|
||||
"metadata" : {
|
||||
"apiVersion" : "2018-11-29",
|
||||
"endpointPrefix" : "execute-api",
|
||||
"signingName" : "execute-api",
|
||||
"serviceFullName" : "AmazonApiGatewayManagementApi",
|
||||
"serviceId" : "ApiGatewayManagementApi",
|
||||
"protocol" : "rest-json",
|
||||
"jsonVersion" : "1.1",
|
||||
"uid" : "apigatewaymanagementapi-2018-11-29",
|
||||
"signatureVersion" : "v4"
|
||||
},
|
||||
"operations" : {
|
||||
"DeleteConnection" : {
|
||||
"name" : "DeleteConnection",
|
||||
"http" : {
|
||||
"method" : "DELETE",
|
||||
"requestUri" : "/@connections/{connectionId}",
|
||||
"responseCode" : 204
|
||||
},
|
||||
"input" : {
|
||||
"shape" : "DeleteConnectionRequest"
|
||||
},
|
||||
"errors" : [ {
|
||||
"shape" : "GoneException",
|
||||
"documentation" : "<p>The connection with the provided id no longer exists.</p>"
|
||||
}, {
|
||||
"shape" : "LimitExceededException",
|
||||
"documentation" : "<p>The client is sending more than the allowed number of requests per unit of time or the WebSocket client side buffer is full.</p>"
|
||||
}, {
|
||||
"shape" : "ForbiddenException",
|
||||
"documentation" : "<p>The caller is not authorized to invoke this operation.</p>"
|
||||
} ],
|
||||
"documentation" : "<p>Delete the connection with the provided id.</p>"
|
||||
},
|
||||
"GetConnection" : {
|
||||
"name" : "GetConnection",
|
||||
"http" : {
|
||||
"method" : "GET",
|
||||
"requestUri" : "/@connections/{connectionId}",
|
||||
"responseCode" : 200
|
||||
},
|
||||
"input" : {
|
||||
"shape" : "GetConnectionRequest"
|
||||
},
|
||||
"output" : {
|
||||
"shape" : "GetConnectionResponse"
|
||||
},
|
||||
"errors" : [ {
|
||||
"shape" : "GoneException",
|
||||
"documentation" : "<p>The connection with the provided id no longer exists.</p>"
|
||||
}, {
|
||||
"shape" : "LimitExceededException",
|
||||
"documentation" : "<p>The client is sending more than the allowed number of requests per unit of time or the WebSocket client side buffer is full.</p>"
|
||||
}, {
|
||||
"shape" : "ForbiddenException",
|
||||
"documentation" : "<p>The caller is not authorized to invoke this operation.</p>"
|
||||
} ],
|
||||
"documentation" : "<p>Get information about the connection with the provided id.</p>"
|
||||
},
|
||||
"PostToConnection" : {
|
||||
"name" : "PostToConnection",
|
||||
"http" : {
|
||||
"method" : "POST",
|
||||
"requestUri" : "/@connections/{connectionId}",
|
||||
"responseCode" : 200
|
||||
},
|
||||
"input" : {
|
||||
"shape" : "PostToConnectionRequest"
|
||||
},
|
||||
"errors" : [ {
|
||||
"shape" : "GoneException",
|
||||
"documentation" : "<p>The connection with the provided id no longer exists.</p>"
|
||||
}, {
|
||||
"shape" : "LimitExceededException",
|
||||
"documentation" : "<p>The client is sending more than the allowed number of requests per unit of time or the WebSocket client side buffer is full.</p>"
|
||||
}, {
|
||||
"shape" : "PayloadTooLargeException",
|
||||
"documentation" : "<p>The data has exceeded the maximum size allowed.</p>"
|
||||
}, {
|
||||
"shape" : "ForbiddenException",
|
||||
"documentation" : "<p>The caller is not authorized to invoke this operation.</p>"
|
||||
} ],
|
||||
"documentation" : "<p>Sends the provided data to the specified connection.</p>"
|
||||
}
|
||||
},
|
||||
"shapes" : {
|
||||
"Data" : {
|
||||
"type" : "blob",
|
||||
"max" : 131072,
|
||||
"documentation" : "<p>The data to be sent to the client specified by its connection id.</p>"
|
||||
},
|
||||
"DeleteConnectionRequest" : {
|
||||
"type" : "structure",
|
||||
"members" : {
|
||||
"ConnectionId" : {
|
||||
"shape" : "__string",
|
||||
"location" : "uri",
|
||||
"locationName" : "connectionId"
|
||||
}
|
||||
},
|
||||
"required" : [ "ConnectionId" ]
|
||||
},
|
||||
"ForbiddenException" : {
|
||||
"type" : "structure",
|
||||
"members" : { },
|
||||
"documentation" : "<p>The caller is not authorized to invoke this operation.</p>",
|
||||
"exception" : true,
|
||||
"error" : {
|
||||
"httpStatusCode" : 403
|
||||
}
|
||||
},
|
||||
"GetConnectionRequest" : {
|
||||
"type" : "structure",
|
||||
"members" : {
|
||||
"ConnectionId" : {
|
||||
"shape" : "__string",
|
||||
"location" : "uri",
|
||||
"locationName" : "connectionId"
|
||||
}
|
||||
},
|
||||
"required" : [ "ConnectionId" ]
|
||||
},
|
||||
"GetConnectionResponse" : {
|
||||
"type" : "structure",
|
||||
"members" : {
|
||||
"ConnectedAt" : {
|
||||
"shape" : "__timestampIso8601",
|
||||
"locationName" : "connectedAt",
|
||||
"documentation" : "<p>The time in ISO 8601 format for when the connection was established.</p>"
|
||||
},
|
||||
"Identity" : {
|
||||
"shape" : "Identity",
|
||||
"locationName" : "identity"
|
||||
},
|
||||
"LastActiveAt" : {
|
||||
"shape" : "__timestampIso8601",
|
||||
"locationName" : "lastActiveAt",
|
||||
"documentation" : "<p>The time in ISO 8601 format for when the connection was last active.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"GoneException" : {
|
||||
"type" : "structure",
|
||||
"members" : { },
|
||||
"documentation" : "<p>The connection with the provided id no longer exists.</p>",
|
||||
"exception" : true,
|
||||
"error" : {
|
||||
"httpStatusCode" : 410
|
||||
}
|
||||
},
|
||||
"Identity" : {
|
||||
"type" : "structure",
|
||||
"members" : {
|
||||
"SourceIp" : {
|
||||
"shape" : "__string",
|
||||
"locationName" : "sourceIp",
|
||||
"documentation" : "<p>The source IP address of the TCP connection making the request to API Gateway.</p>"
|
||||
},
|
||||
"UserAgent" : {
|
||||
"shape" : "__string",
|
||||
"locationName" : "userAgent",
|
||||
"documentation" : "<p>The User Agent of the API caller.</p>"
|
||||
}
|
||||
},
|
||||
"required" : [ "SourceIp", "UserAgent" ]
|
||||
},
|
||||
"PayloadTooLargeException" : {
|
||||
"type" : "structure",
|
||||
"members" : {
|
||||
"Message" : {
|
||||
"shape" : "__string",
|
||||
"locationName" : "message"
|
||||
}
|
||||
},
|
||||
"documentation" : "<p>The data has exceeded the maximum size allowed.</p>",
|
||||
"exception" : true,
|
||||
"error" : {
|
||||
"httpStatusCode" : 413
|
||||
}
|
||||
},
|
||||
"PostToConnectionRequest" : {
|
||||
"type" : "structure",
|
||||
"members" : {
|
||||
"Data" : {
|
||||
"shape" : "Data",
|
||||
"documentation" : "<p>The data to be sent to the client specified by its connection id.</p>"
|
||||
},
|
||||
"ConnectionId" : {
|
||||
"shape" : "__string",
|
||||
"location" : "uri",
|
||||
"locationName" : "connectionId",
|
||||
"documentation" : "<p>The identifier of the connection that a specific client is using.</p>"
|
||||
}
|
||||
},
|
||||
"required" : [ "ConnectionId", "Data" ],
|
||||
"payload" : "Data"
|
||||
},
|
||||
"LimitExceededException" : {
|
||||
"type" : "structure",
|
||||
"members" : { },
|
||||
"documentation" : "<p>The client is sending more than the allowed number of requests per unit of time or the WebSocket client side buffer is full.</p>",
|
||||
"exception" : true,
|
||||
"error" : {
|
||||
"httpStatusCode" : 429
|
||||
}
|
||||
},
|
||||
"__string" : {
|
||||
"type" : "string"
|
||||
},
|
||||
"__timestampIso8601" : {
|
||||
"type" : "timestamp",
|
||||
"timestampFormat" : "iso8601"
|
||||
}
|
||||
},
|
||||
"documentation" : "<p>The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deployed API. The endpoint will be of the form https://{api-id}.execute-api.{region}.amazonaws.com/{stage}, or will be the endpoint corresponding to your API's custom domain and base path, if applicable.</p>"
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"pagination": {
|
||||
"GetApis": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Items"
|
||||
},
|
||||
"GetAuthorizers": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Items"
|
||||
},
|
||||
"GetDeployments": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Items"
|
||||
},
|
||||
"GetDomainNames": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Items"
|
||||
},
|
||||
"GetIntegrationResponses": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Items"
|
||||
},
|
||||
"GetIntegrations": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Items"
|
||||
},
|
||||
"GetModels": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Items"
|
||||
},
|
||||
"GetRouteResponses": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Items"
|
||||
},
|
||||
"GetRoutes": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Items"
|
||||
},
|
||||
"GetStages": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,257 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
"DeleteScalingPolicy": [
|
||||
{
|
||||
"input": {
|
||||
"PolicyName": "web-app-cpu-lt-25",
|
||||
"ResourceId": "service/default/web-app",
|
||||
"ScalableDimension": "ecs:service:DesiredCount",
|
||||
"ServiceNamespace": "ecs"
|
||||
},
|
||||
"output": {
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example deletes a scaling policy for the Amazon ECS service called web-app, which is running in the default cluster.",
|
||||
"id": "to-delete-a-scaling-policy-1470863892689",
|
||||
"title": "To delete a scaling policy"
|
||||
}
|
||||
],
|
||||
"DeregisterScalableTarget": [
|
||||
{
|
||||
"input": {
|
||||
"ResourceId": "service/default/web-app",
|
||||
"ScalableDimension": "ecs:service:DesiredCount",
|
||||
"ServiceNamespace": "ecs"
|
||||
},
|
||||
"output": {
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example deregisters a scalable target for an Amazon ECS service called web-app that is running in the default cluster.",
|
||||
"id": "to-deregister-a-scalable-target-1470864164895",
|
||||
"title": "To deregister a scalable target"
|
||||
}
|
||||
],
|
||||
"DescribeScalableTargets": [
|
||||
{
|
||||
"input": {
|
||||
"ServiceNamespace": "ecs"
|
||||
},
|
||||
"output": {
|
||||
"ScalableTargets": [
|
||||
{
|
||||
"CreationTime": "2016-05-06T11:21:46.199Z",
|
||||
"MaxCapacity": 10,
|
||||
"MinCapacity": 1,
|
||||
"ResourceId": "service/default/web-app",
|
||||
"RoleARN": "arn:aws:iam::012345678910:role/ApplicationAutoscalingECSRole",
|
||||
"ScalableDimension": "ecs:service:DesiredCount",
|
||||
"ServiceNamespace": "ecs"
|
||||
}
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example describes the scalable targets for the ecs service namespace.",
|
||||
"id": "to-describe-scalable-targets-1470864286961",
|
||||
"title": "To describe scalable targets"
|
||||
}
|
||||
],
|
||||
"DescribeScalingActivities": [
|
||||
{
|
||||
"input": {
|
||||
"ResourceId": "service/default/web-app",
|
||||
"ScalableDimension": "ecs:service:DesiredCount",
|
||||
"ServiceNamespace": "ecs"
|
||||
},
|
||||
"output": {
|
||||
"ScalingActivities": [
|
||||
{
|
||||
"ActivityId": "e6c5f7d1-dbbb-4a3f-89b2-51f33e766399",
|
||||
"Cause": "monitor alarm web-app-cpu-lt-25 in state ALARM triggered policy web-app-cpu-lt-25",
|
||||
"Description": "Setting desired count to 1.",
|
||||
"EndTime": "2016-05-06T16:04:32.111Z",
|
||||
"ResourceId": "service/default/web-app",
|
||||
"ScalableDimension": "ecs:service:DesiredCount",
|
||||
"ServiceNamespace": "ecs",
|
||||
"StartTime": "2016-05-06T16:03:58.171Z",
|
||||
"StatusCode": "Successful",
|
||||
"StatusMessage": "Successfully set desired count to 1. Change successfully fulfilled by ecs."
|
||||
}
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example describes the scaling activities for an Amazon ECS service called web-app that is running in the default cluster.",
|
||||
"id": "to-describe-scaling-activities-for-a-scalable-target-1470864398629",
|
||||
"title": "To describe scaling activities for a scalable target"
|
||||
}
|
||||
],
|
||||
"DescribeScalingPolicies": [
|
||||
{
|
||||
"input": {
|
||||
"ServiceNamespace": "ecs"
|
||||
},
|
||||
"output": {
|
||||
"NextToken": "",
|
||||
"ScalingPolicies": [
|
||||
{
|
||||
"Alarms": [
|
||||
{
|
||||
"AlarmARN": "arn:aws:cloudwatch:us-west-2:012345678910:alarm:web-app-cpu-gt-75",
|
||||
"AlarmName": "web-app-cpu-gt-75"
|
||||
}
|
||||
],
|
||||
"CreationTime": "2016-05-06T12:11:39.230Z",
|
||||
"PolicyARN": "arn:aws:autoscaling:us-west-2:012345678910:scalingPolicy:6d8972f3-efc8-437c-92d1-6270f29a66e7:resource/ecs/service/default/web-app:policyName/web-app-cpu-gt-75",
|
||||
"PolicyName": "web-app-cpu-gt-75",
|
||||
"PolicyType": "StepScaling",
|
||||
"ResourceId": "service/default/web-app",
|
||||
"ScalableDimension": "ecs:service:DesiredCount",
|
||||
"ServiceNamespace": "ecs",
|
||||
"StepScalingPolicyConfiguration": {
|
||||
"AdjustmentType": "PercentChangeInCapacity",
|
||||
"Cooldown": 60,
|
||||
"StepAdjustments": [
|
||||
{
|
||||
"MetricIntervalLowerBound": 0,
|
||||
"ScalingAdjustment": 200
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example describes the scaling policies for the ecs service namespace.",
|
||||
"id": "to-describe-scaling-policies-1470864609734",
|
||||
"title": "To describe scaling policies"
|
||||
}
|
||||
],
|
||||
"PutScalingPolicy": [
|
||||
{
|
||||
"input": {
|
||||
"PolicyName": "web-app-cpu-gt-75",
|
||||
"PolicyType": "StepScaling",
|
||||
"ResourceId": "service/default/web-app",
|
||||
"ScalableDimension": "ecs:service:DesiredCount",
|
||||
"ServiceNamespace": "ecs",
|
||||
"StepScalingPolicyConfiguration": {
|
||||
"AdjustmentType": "PercentChangeInCapacity",
|
||||
"Cooldown": 60,
|
||||
"StepAdjustments": [
|
||||
{
|
||||
"MetricIntervalLowerBound": 0,
|
||||
"ScalingAdjustment": 200
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"output": {
|
||||
"PolicyARN": "arn:aws:autoscaling:us-west-2:012345678910:scalingPolicy:6d8972f3-efc8-437c-92d1-6270f29a66e7:resource/ecs/service/default/web-app:policyName/web-app-cpu-gt-75"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example applies a scaling policy to an Amazon ECS service called web-app in the default cluster. The policy increases the desired count of the service by 200%, with a cool down period of 60 seconds.",
|
||||
"id": "to-apply-a-scaling-policy-to-an-amazon-ecs-service-1470864779862",
|
||||
"title": "To apply a scaling policy to an Amazon ECS service"
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"PolicyName": "fleet-cpu-gt-75",
|
||||
"PolicyType": "StepScaling",
|
||||
"ResourceId": "spot-fleet-request/sfr-45e69d8a-be48-4539-bbf3-3464e99c50c3",
|
||||
"ScalableDimension": "ec2:spot-fleet-request:TargetCapacity",
|
||||
"ServiceNamespace": "ec2",
|
||||
"StepScalingPolicyConfiguration": {
|
||||
"AdjustmentType": "PercentChangeInCapacity",
|
||||
"Cooldown": 180,
|
||||
"StepAdjustments": [
|
||||
{
|
||||
"MetricIntervalLowerBound": 0,
|
||||
"ScalingAdjustment": 200
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"output": {
|
||||
"PolicyARN": "arn:aws:autoscaling:us-east-1:012345678910:scalingPolicy:89406401-0cb7-4130-b770-d97cca0e446b:resource/ec2/spot-fleet-request/sfr-45e69d8a-be48-4539-bbf3-3464e99c50c3:policyName/fleet-cpu-gt-75"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example applies a scaling policy to an Amazon EC2 Spot fleet. The policy increases the target capacity of the spot fleet by 200%, with a cool down period of 180 seconds.\",\n ",
|
||||
"id": "to-apply-a-scaling-policy-to-an-amazon-ec2-spot-fleet-1472073278469",
|
||||
"title": "To apply a scaling policy to an Amazon EC2 Spot fleet"
|
||||
}
|
||||
],
|
||||
"RegisterScalableTarget": [
|
||||
{
|
||||
"input": {
|
||||
"MaxCapacity": 10,
|
||||
"MinCapacity": 1,
|
||||
"ResourceId": "service/default/web-app",
|
||||
"RoleARN": "arn:aws:iam::012345678910:role/ApplicationAutoscalingECSRole",
|
||||
"ScalableDimension": "ecs:service:DesiredCount",
|
||||
"ServiceNamespace": "ecs"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example registers a scalable target from an Amazon ECS service called web-app that is running on the default cluster, with a minimum desired count of 1 task and a maximum desired count of 10 tasks.",
|
||||
"id": "to-register-a-new-scalable-target-1470864910380",
|
||||
"title": "To register an ECS service as a scalable target"
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"MaxCapacity": 10,
|
||||
"MinCapacity": 1,
|
||||
"ResourceId": "spot-fleet-request/sfr-45e69d8a-be48-4539-bbf3-3464e99c50c3",
|
||||
"RoleARN": "arn:aws:iam::012345678910:role/ApplicationAutoscalingSpotRole",
|
||||
"ScalableDimension": "ec2:spot-fleet-request:TargetCapacity",
|
||||
"ServiceNamespace": "ec2"
|
||||
},
|
||||
"output": {
|
||||
},
|
||||
"comments": {
|
||||
},
|
||||
"description": "This example registers a scalable target from an Amazon EC2 Spot fleet with a minimum target capacity of 1 and a maximum of 10.",
|
||||
"id": "to-register-an-ec2-spot-fleet-as-a-scalable-target-1472072899649",
|
||||
"title": "To register an EC2 Spot fleet as a scalable target"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"pagination": {
|
||||
"DescribeScalableTargets": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "ScalableTargets"
|
||||
},
|
||||
"DescribeScalingActivities": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "ScalingActivities"
|
||||
},
|
||||
"DescribeScalingPolicies": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "ScalingPolicies"
|
||||
},
|
||||
"DescribeScheduledActions": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "ScheduledActions"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"pagination": {}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListMeshes": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "limit",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "meshes"
|
||||
},
|
||||
"ListRoutes": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "limit",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "routes"
|
||||
},
|
||||
"ListVirtualNodes": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "limit",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "virtualNodes"
|
||||
},
|
||||
"ListVirtualRouters": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "limit",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "virtualRouters"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListMeshes": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "limit",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "meshes"
|
||||
},
|
||||
"ListRoutes": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "limit",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "routes"
|
||||
},
|
||||
"ListVirtualNodes": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "limit",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "virtualNodes"
|
||||
},
|
||||
"ListVirtualRouters": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "limit",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "virtualRouters"
|
||||
},
|
||||
"ListVirtualServices": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "limit",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "virtualServices"
|
||||
},
|
||||
"ListTagsForResource": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "limit",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "tags"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"pagination": {
|
||||
"DescribeDirectoryConfigs": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "DirectoryConfigs"
|
||||
},
|
||||
"DescribeFleets": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Fleets"
|
||||
},
|
||||
"DescribeImageBuilders": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "ImageBuilders"
|
||||
},
|
||||
"DescribeImages": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "Images"
|
||||
},
|
||||
"DescribeSessions": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "Limit",
|
||||
"result_key": "Sessions"
|
||||
},
|
||||
"DescribeStacks": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Stacks"
|
||||
},
|
||||
"DescribeUserStackAssociations": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "UserStackAssociations"
|
||||
},
|
||||
"DescribeUsers": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "Users"
|
||||
},
|
||||
"ListAssociatedFleets": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Names"
|
||||
},
|
||||
"ListAssociatedStacks": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Names"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"FleetStarted": {
|
||||
"delay": 30,
|
||||
"maxAttempts": 40,
|
||||
"operation": "DescribeFleets",
|
||||
"acceptors": [
|
||||
{
|
||||
"state": "success",
|
||||
"matcher": "pathAll",
|
||||
"argument": "Fleets[].State",
|
||||
"expected": "ACTIVE"
|
||||
},
|
||||
{
|
||||
"state": "failure",
|
||||
"matcher": "pathAny",
|
||||
"argument": "Fleets[].State",
|
||||
"expected": "PENDING_DEACTIVATE"
|
||||
},
|
||||
{
|
||||
"state": "failure",
|
||||
"matcher": "pathAny",
|
||||
"argument": "Fleets[].State",
|
||||
"expected": "INACTIVE"
|
||||
}
|
||||
]
|
||||
},
|
||||
"FleetStopped": {
|
||||
"delay": 30,
|
||||
"maxAttempts": 40,
|
||||
"operation": "DescribeFleets",
|
||||
"acceptors": [
|
||||
{
|
||||
"state": "success",
|
||||
"matcher": "pathAll",
|
||||
"argument": "Fleets[].State",
|
||||
"expected": "INACTIVE"
|
||||
},
|
||||
{
|
||||
"state": "failure",
|
||||
"matcher": "pathAny",
|
||||
"argument": "Fleets[].State",
|
||||
"expected": "PENDING_ACTIVATE"
|
||||
},
|
||||
{
|
||||
"state": "failure",
|
||||
"matcher": "pathAny",
|
||||
"argument": "Fleets[].State",
|
||||
"expected": "ACTIVE"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListApiKeys": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "apiKeys"
|
||||
},
|
||||
"ListDataSources": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "dataSources"
|
||||
},
|
||||
"ListFunctions": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "functions"
|
||||
},
|
||||
"ListGraphqlApis": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "graphqlApis"
|
||||
},
|
||||
"ListResolvers": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "resolvers"
|
||||
},
|
||||
"ListResolversByFunction": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "resolvers"
|
||||
},
|
||||
"ListTypes": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "types"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListNamedQueries": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "NamedQueryIds"
|
||||
},
|
||||
"ListQueryExecutions": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "QueryExecutionIds"
|
||||
},
|
||||
"GetQueryResults": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "ResultSet.Rows",
|
||||
"non_aggregate_keys": [
|
||||
"ResultSet.ResultSetMetadata",
|
||||
"UpdateCount"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"pagination": {
|
||||
"DescribeScalingPlanResources": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "ScalingPlanResources"
|
||||
},
|
||||
"DescribeScalingPlans": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "ScalingPlans"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,967 @@
|
||||
{
|
||||
"version":"2.0",
|
||||
"metadata":{
|
||||
"apiVersion":"2018-01-06",
|
||||
"endpointPrefix":"autoscaling",
|
||||
"jsonVersion":"1.1",
|
||||
"protocol":"json",
|
||||
"serviceFullName":"AWS Auto Scaling Plans",
|
||||
"serviceId":"Auto Scaling Plans",
|
||||
"signatureVersion":"v4",
|
||||
"signingName":"autoscaling-plans",
|
||||
"targetPrefix":"AnyScaleScalingPlannerFrontendService",
|
||||
"uid":"autoscaling-plans-2018-01-06"
|
||||
},
|
||||
"operations":{
|
||||
"CreateScalingPlan":{
|
||||
"name":"CreateScalingPlan",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"CreateScalingPlanRequest"},
|
||||
"output":{"shape":"CreateScalingPlanResponse"},
|
||||
"errors":[
|
||||
{"shape":"ValidationException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"ConcurrentUpdateException"},
|
||||
{"shape":"InternalServiceException"}
|
||||
],
|
||||
"documentation":"<p>Creates a scaling plan.</p>"
|
||||
},
|
||||
"DeleteScalingPlan":{
|
||||
"name":"DeleteScalingPlan",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"DeleteScalingPlanRequest"},
|
||||
"output":{"shape":"DeleteScalingPlanResponse"},
|
||||
"errors":[
|
||||
{"shape":"ValidationException"},
|
||||
{"shape":"ObjectNotFoundException"},
|
||||
{"shape":"ConcurrentUpdateException"},
|
||||
{"shape":"InternalServiceException"}
|
||||
],
|
||||
"documentation":"<p>Deletes the specified scaling plan.</p> <p>Deleting a scaling plan deletes the underlying <a>ScalingInstruction</a> for all of the scalable resources that are covered by the plan.</p> <p>If the plan has launched resources or has scaling activities in progress, you must delete those resources separately.</p>"
|
||||
},
|
||||
"DescribeScalingPlanResources":{
|
||||
"name":"DescribeScalingPlanResources",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"DescribeScalingPlanResourcesRequest"},
|
||||
"output":{"shape":"DescribeScalingPlanResourcesResponse"},
|
||||
"errors":[
|
||||
{"shape":"ValidationException"},
|
||||
{"shape":"InvalidNextTokenException"},
|
||||
{"shape":"ConcurrentUpdateException"},
|
||||
{"shape":"InternalServiceException"}
|
||||
],
|
||||
"documentation":"<p>Describes the scalable resources in the specified scaling plan.</p>"
|
||||
},
|
||||
"DescribeScalingPlans":{
|
||||
"name":"DescribeScalingPlans",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"DescribeScalingPlansRequest"},
|
||||
"output":{"shape":"DescribeScalingPlansResponse"},
|
||||
"errors":[
|
||||
{"shape":"ValidationException"},
|
||||
{"shape":"InvalidNextTokenException"},
|
||||
{"shape":"ConcurrentUpdateException"},
|
||||
{"shape":"InternalServiceException"}
|
||||
],
|
||||
"documentation":"<p>Describes one or more of your scaling plans.</p>"
|
||||
},
|
||||
"GetScalingPlanResourceForecastData":{
|
||||
"name":"GetScalingPlanResourceForecastData",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"GetScalingPlanResourceForecastDataRequest"},
|
||||
"output":{"shape":"GetScalingPlanResourceForecastDataResponse"},
|
||||
"errors":[
|
||||
{"shape":"ValidationException"},
|
||||
{"shape":"InternalServiceException"}
|
||||
],
|
||||
"documentation":"<p>Retrieves the forecast data for a scalable resource.</p> <p>Capacity forecasts are represented as predicted values, or data points, that are calculated using historical data points from a specified CloudWatch load metric. Data points are available for up to 56 days. </p>"
|
||||
},
|
||||
"UpdateScalingPlan":{
|
||||
"name":"UpdateScalingPlan",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"UpdateScalingPlanRequest"},
|
||||
"output":{"shape":"UpdateScalingPlanResponse"},
|
||||
"errors":[
|
||||
{"shape":"ValidationException"},
|
||||
{"shape":"ConcurrentUpdateException"},
|
||||
{"shape":"InternalServiceException"},
|
||||
{"shape":"ObjectNotFoundException"}
|
||||
],
|
||||
"documentation":"<p>Updates the specified scaling plan.</p> <p>You cannot update a scaling plan if it is in the process of being created, updated, or deleted.</p>"
|
||||
}
|
||||
},
|
||||
"shapes":{
|
||||
"ApplicationSource":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"CloudFormationStackARN":{
|
||||
"shape":"XmlString",
|
||||
"documentation":"<p>The Amazon Resource Name (ARN) of a AWS CloudFormation stack.</p>"
|
||||
},
|
||||
"TagFilters":{
|
||||
"shape":"TagFilters",
|
||||
"documentation":"<p>A set of tags (up to 50).</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents an application source.</p>"
|
||||
},
|
||||
"ApplicationSources":{
|
||||
"type":"list",
|
||||
"member":{"shape":"ApplicationSource"}
|
||||
},
|
||||
"ConcurrentUpdateException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"Message":{"shape":"ErrorMessage"}
|
||||
},
|
||||
"documentation":"<p>Concurrent updates caused an exception, for example, if you request an update to a scaling plan that already has a pending update.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"Cooldown":{"type":"integer"},
|
||||
"CreateScalingPlanRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"ScalingPlanName",
|
||||
"ApplicationSource",
|
||||
"ScalingInstructions"
|
||||
],
|
||||
"members":{
|
||||
"ScalingPlanName":{
|
||||
"shape":"ScalingPlanName",
|
||||
"documentation":"<p>The name of the scaling plan. Names cannot contain vertical bars, colons, or forward slashes.</p>"
|
||||
},
|
||||
"ApplicationSource":{
|
||||
"shape":"ApplicationSource",
|
||||
"documentation":"<p>A CloudFormation stack or set of tags. You can create one scaling plan per application source.</p>"
|
||||
},
|
||||
"ScalingInstructions":{
|
||||
"shape":"ScalingInstructions",
|
||||
"documentation":"<p>The scaling instructions.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CreateScalingPlanResponse":{
|
||||
"type":"structure",
|
||||
"required":["ScalingPlanVersion"],
|
||||
"members":{
|
||||
"ScalingPlanVersion":{
|
||||
"shape":"ScalingPlanVersion",
|
||||
"documentation":"<p>The version number of the scaling plan. This value is always 1.</p> <p>Currently, you cannot specify multiple scaling plan versions.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CustomizedLoadMetricSpecification":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"MetricName",
|
||||
"Namespace",
|
||||
"Statistic"
|
||||
],
|
||||
"members":{
|
||||
"MetricName":{
|
||||
"shape":"MetricName",
|
||||
"documentation":"<p>The name of the metric.</p>"
|
||||
},
|
||||
"Namespace":{
|
||||
"shape":"MetricNamespace",
|
||||
"documentation":"<p>The namespace of the metric.</p>"
|
||||
},
|
||||
"Dimensions":{
|
||||
"shape":"MetricDimensions",
|
||||
"documentation":"<p>The dimensions of the metric.</p> <p>Conditional: If you published your metric with dimensions, you must specify the same dimensions in your customized load metric specification.</p>"
|
||||
},
|
||||
"Statistic":{
|
||||
"shape":"MetricStatistic",
|
||||
"documentation":"<p>The statistic of the metric. Currently, the value must always be <code>Sum</code>. </p>"
|
||||
},
|
||||
"Unit":{
|
||||
"shape":"MetricUnit",
|
||||
"documentation":"<p>The unit of the metric.</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents a CloudWatch metric of your choosing that can be used for predictive scaling. </p> <p>For predictive scaling to work with a customized load metric specification, AWS Auto Scaling needs access to the <code>Sum</code> and <code>Average</code> statistics that CloudWatch computes from metric data. Statistics are calculations used to aggregate data over specified time periods.</p> <p>When you choose a load metric, make sure that the required <code>Sum</code> and <code>Average</code> statistics for your metric are available in CloudWatch and that they provide relevant data for predictive scaling. The <code>Sum</code> statistic must represent the total load on the resource, and the <code>Average</code> statistic must represent the average load per capacity unit of the resource. For example, there is a metric that counts the number of requests processed by your Auto Scaling group. If the <code>Sum</code> statistic represents the total request count processed by the group, then the <code>Average</code> statistic for the specified metric must represent the average request count processed by each instance of the group.</p> <p>For information about terminology, available metrics, or how to publish new metrics, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html\">Amazon CloudWatch Concepts</a> in the <i>Amazon CloudWatch User Guide</i>. </p>"
|
||||
},
|
||||
"CustomizedScalingMetricSpecification":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"MetricName",
|
||||
"Namespace",
|
||||
"Statistic"
|
||||
],
|
||||
"members":{
|
||||
"MetricName":{
|
||||
"shape":"MetricName",
|
||||
"documentation":"<p>The name of the metric.</p>"
|
||||
},
|
||||
"Namespace":{
|
||||
"shape":"MetricNamespace",
|
||||
"documentation":"<p>The namespace of the metric.</p>"
|
||||
},
|
||||
"Dimensions":{
|
||||
"shape":"MetricDimensions",
|
||||
"documentation":"<p>The dimensions of the metric.</p> <p>Conditional: If you published your metric with dimensions, you must specify the same dimensions in your customized scaling metric specification.</p>"
|
||||
},
|
||||
"Statistic":{
|
||||
"shape":"MetricStatistic",
|
||||
"documentation":"<p>The statistic of the metric.</p>"
|
||||
},
|
||||
"Unit":{
|
||||
"shape":"MetricUnit",
|
||||
"documentation":"<p>The unit of the metric. </p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents a CloudWatch metric of your choosing that can be used for dynamic scaling as part of a target tracking scaling policy. </p> <p>To create your customized scaling metric specification:</p> <ul> <li> <p>Add values for each required parameter from CloudWatch. You can use an existing metric, or a new metric that you create. To use your own metric, you must first publish the metric to CloudWatch. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/publishingMetrics.html\">Publish Custom Metrics</a> in the <i>Amazon CloudWatch User Guide</i>.</p> </li> <li> <p>Choose a metric that changes proportionally with capacity. The value of the metric should increase or decrease in inverse proportion to the number of capacity units. That is, the value of the metric should decrease when capacity increases. </p> </li> </ul> <p>For more information about CloudWatch, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html\">Amazon CloudWatch Concepts</a>. </p>"
|
||||
},
|
||||
"Datapoint":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"Timestamp":{
|
||||
"shape":"TimestampType",
|
||||
"documentation":"<p>The time stamp for the data point in UTC format.</p>"
|
||||
},
|
||||
"Value":{
|
||||
"shape":"MetricScale",
|
||||
"documentation":"<p>The value of the data point.</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents a single value in the forecast data used for predictive scaling.</p>"
|
||||
},
|
||||
"Datapoints":{
|
||||
"type":"list",
|
||||
"member":{"shape":"Datapoint"}
|
||||
},
|
||||
"DeleteScalingPlanRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"ScalingPlanName",
|
||||
"ScalingPlanVersion"
|
||||
],
|
||||
"members":{
|
||||
"ScalingPlanName":{
|
||||
"shape":"ScalingPlanName",
|
||||
"documentation":"<p>The name of the scaling plan.</p>"
|
||||
},
|
||||
"ScalingPlanVersion":{
|
||||
"shape":"ScalingPlanVersion",
|
||||
"documentation":"<p>The version number of the scaling plan.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DeleteScalingPlanResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
}
|
||||
},
|
||||
"DescribeScalingPlanResourcesRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"ScalingPlanName",
|
||||
"ScalingPlanVersion"
|
||||
],
|
||||
"members":{
|
||||
"ScalingPlanName":{
|
||||
"shape":"ScalingPlanName",
|
||||
"documentation":"<p>The name of the scaling plan.</p>"
|
||||
},
|
||||
"ScalingPlanVersion":{
|
||||
"shape":"ScalingPlanVersion",
|
||||
"documentation":"<p>The version number of the scaling plan.</p>"
|
||||
},
|
||||
"MaxResults":{
|
||||
"shape":"MaxResults",
|
||||
"documentation":"<p>The maximum number of scalable resources to return. The value must be between 1 and 50. The default value is 50.</p>"
|
||||
},
|
||||
"NextToken":{
|
||||
"shape":"NextToken",
|
||||
"documentation":"<p>The token for the next set of results.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DescribeScalingPlanResourcesResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"ScalingPlanResources":{
|
||||
"shape":"ScalingPlanResources",
|
||||
"documentation":"<p>Information about the scalable resources.</p>"
|
||||
},
|
||||
"NextToken":{
|
||||
"shape":"NextToken",
|
||||
"documentation":"<p>The token required to get the next set of results. This value is <code>null</code> if there are no more results to return.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DescribeScalingPlansRequest":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"ScalingPlanNames":{
|
||||
"shape":"ScalingPlanNames",
|
||||
"documentation":"<p>The names of the scaling plans (up to 10). If you specify application sources, you cannot specify scaling plan names.</p>"
|
||||
},
|
||||
"ScalingPlanVersion":{
|
||||
"shape":"ScalingPlanVersion",
|
||||
"documentation":"<p>The version number of the scaling plan. If you specify a scaling plan version, you must also specify a scaling plan name.</p>"
|
||||
},
|
||||
"ApplicationSources":{
|
||||
"shape":"ApplicationSources",
|
||||
"documentation":"<p>The sources for the applications (up to 10). If you specify scaling plan names, you cannot specify application sources.</p>"
|
||||
},
|
||||
"MaxResults":{
|
||||
"shape":"MaxResults",
|
||||
"documentation":"<p>The maximum number of scalable resources to return. This value can be between 1 and 50. The default value is 50.</p>"
|
||||
},
|
||||
"NextToken":{
|
||||
"shape":"NextToken",
|
||||
"documentation":"<p>The token for the next set of results.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DescribeScalingPlansResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"ScalingPlans":{
|
||||
"shape":"ScalingPlans",
|
||||
"documentation":"<p>Information about the scaling plans.</p>"
|
||||
},
|
||||
"NextToken":{
|
||||
"shape":"NextToken",
|
||||
"documentation":"<p>The token required to get the next set of results. This value is <code>null</code> if there are no more results to return.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DisableDynamicScaling":{"type":"boolean"},
|
||||
"DisableScaleIn":{"type":"boolean"},
|
||||
"ErrorMessage":{"type":"string"},
|
||||
"ForecastDataType":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"CapacityForecast",
|
||||
"LoadForecast",
|
||||
"ScheduledActionMinCapacity",
|
||||
"ScheduledActionMaxCapacity"
|
||||
]
|
||||
},
|
||||
"GetScalingPlanResourceForecastDataRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"ScalingPlanName",
|
||||
"ScalingPlanVersion",
|
||||
"ServiceNamespace",
|
||||
"ResourceId",
|
||||
"ScalableDimension",
|
||||
"ForecastDataType",
|
||||
"StartTime",
|
||||
"EndTime"
|
||||
],
|
||||
"members":{
|
||||
"ScalingPlanName":{
|
||||
"shape":"ScalingPlanName",
|
||||
"documentation":"<p>The name of the scaling plan.</p>"
|
||||
},
|
||||
"ScalingPlanVersion":{
|
||||
"shape":"ScalingPlanVersion",
|
||||
"documentation":"<p>The version number of the scaling plan.</p>"
|
||||
},
|
||||
"ServiceNamespace":{
|
||||
"shape":"ServiceNamespace",
|
||||
"documentation":"<p>The namespace of the AWS service.</p>"
|
||||
},
|
||||
"ResourceId":{
|
||||
"shape":"XmlString",
|
||||
"documentation":"<p>The ID of the resource. This string consists of the resource type and unique identifier. </p> <ul> <li> <p>Auto Scaling group - The resource type is <code>autoScalingGroup</code> and the unique identifier is the name of the Auto Scaling group. Example: <code>autoScalingGroup/my-asg</code>.</p> </li> <li> <p>ECS service - The resource type is <code>service</code> and the unique identifier is the cluster name and service name. Example: <code>service/default/sample-webapp</code>.</p> </li> <li> <p>Spot Fleet request - The resource type is <code>spot-fleet-request</code> and the unique identifier is the Spot Fleet request ID. Example: <code>spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE</code>.</p> </li> <li> <p>DynamoDB table - The resource type is <code>table</code> and the unique identifier is the resource ID. Example: <code>table/my-table</code>.</p> </li> <li> <p>DynamoDB global secondary index - The resource type is <code>index</code> and the unique identifier is the resource ID. Example: <code>table/my-table/index/my-table-index</code>.</p> </li> <li> <p>Aurora DB cluster - The resource type is <code>cluster</code> and the unique identifier is the cluster name. Example: <code>cluster:my-db-cluster</code>.</p> </li> </ul>"
|
||||
},
|
||||
"ScalableDimension":{
|
||||
"shape":"ScalableDimension",
|
||||
"documentation":"<p>The scalable dimension for the resource.</p>"
|
||||
},
|
||||
"ForecastDataType":{
|
||||
"shape":"ForecastDataType",
|
||||
"documentation":"<p>The type of forecast data to get.</p> <ul> <li> <p> <code>LoadForecast</code>: The load metric forecast. </p> </li> <li> <p> <code>CapacityForecast</code>: The capacity forecast. </p> </li> <li> <p> <code>ScheduledActionMinCapacity</code>: The minimum capacity for each scheduled scaling action. This data is calculated as the larger of two values: the capacity forecast or the minimum capacity in the scaling instruction.</p> </li> <li> <p> <code>ScheduledActionMaxCapacity</code>: The maximum capacity for each scheduled scaling action. The calculation used is determined by the predictive scaling maximum capacity behavior setting in the scaling instruction.</p> </li> </ul>"
|
||||
},
|
||||
"StartTime":{
|
||||
"shape":"TimestampType",
|
||||
"documentation":"<p>The inclusive start time of the time range for the forecast data to get. The date and time can be at most 56 days before the current date and time. </p>"
|
||||
},
|
||||
"EndTime":{
|
||||
"shape":"TimestampType",
|
||||
"documentation":"<p>The exclusive end time of the time range for the forecast data to get. The maximum time duration between the start and end time is seven days. </p> <p>Although this parameter can accept a date and time that is more than two days in the future, the availability of forecast data has limits. AWS Auto Scaling only issues forecasts for periods of two days in advance.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"GetScalingPlanResourceForecastDataResponse":{
|
||||
"type":"structure",
|
||||
"required":["Datapoints"],
|
||||
"members":{
|
||||
"Datapoints":{
|
||||
"shape":"Datapoints",
|
||||
"documentation":"<p>The data points to return.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"InternalServiceException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"Message":{"shape":"ErrorMessage"}
|
||||
},
|
||||
"documentation":"<p>The service encountered an internal error.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"InvalidNextTokenException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"Message":{"shape":"ErrorMessage"}
|
||||
},
|
||||
"documentation":"<p>The token provided is not valid.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"LimitExceededException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"Message":{"shape":"ErrorMessage"}
|
||||
},
|
||||
"documentation":"<p>Your account exceeded a limit. This exception is thrown when a per-account resource limit is exceeded.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"LoadMetricType":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"ASGTotalCPUUtilization",
|
||||
"ASGTotalNetworkIn",
|
||||
"ASGTotalNetworkOut",
|
||||
"ALBTargetGroupRequestCount"
|
||||
]
|
||||
},
|
||||
"MaxResults":{"type":"integer"},
|
||||
"MetricDimension":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"Name",
|
||||
"Value"
|
||||
],
|
||||
"members":{
|
||||
"Name":{
|
||||
"shape":"MetricDimensionName",
|
||||
"documentation":"<p>The name of the dimension.</p>"
|
||||
},
|
||||
"Value":{
|
||||
"shape":"MetricDimensionValue",
|
||||
"documentation":"<p>The value of the dimension.</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents a dimension for a customized metric.</p>"
|
||||
},
|
||||
"MetricDimensionName":{"type":"string"},
|
||||
"MetricDimensionValue":{"type":"string"},
|
||||
"MetricDimensions":{
|
||||
"type":"list",
|
||||
"member":{"shape":"MetricDimension"}
|
||||
},
|
||||
"MetricName":{"type":"string"},
|
||||
"MetricNamespace":{"type":"string"},
|
||||
"MetricScale":{"type":"double"},
|
||||
"MetricStatistic":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"Average",
|
||||
"Minimum",
|
||||
"Maximum",
|
||||
"SampleCount",
|
||||
"Sum"
|
||||
]
|
||||
},
|
||||
"MetricUnit":{"type":"string"},
|
||||
"NextToken":{"type":"string"},
|
||||
"ObjectNotFoundException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"Message":{"shape":"ErrorMessage"}
|
||||
},
|
||||
"documentation":"<p>The specified object could not be found.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"PolicyName":{
|
||||
"type":"string",
|
||||
"max":256,
|
||||
"min":1,
|
||||
"pattern":"\\p{Print}+"
|
||||
},
|
||||
"PolicyType":{
|
||||
"type":"string",
|
||||
"enum":["TargetTrackingScaling"]
|
||||
},
|
||||
"PredefinedLoadMetricSpecification":{
|
||||
"type":"structure",
|
||||
"required":["PredefinedLoadMetricType"],
|
||||
"members":{
|
||||
"PredefinedLoadMetricType":{
|
||||
"shape":"LoadMetricType",
|
||||
"documentation":"<p>The metric type.</p>"
|
||||
},
|
||||
"ResourceLabel":{
|
||||
"shape":"ResourceLabel",
|
||||
"documentation":"<p>Identifies the resource associated with the metric type. You can't specify a resource label unless the metric type is <code>ALBRequestCountPerTarget</code> and there is a target group for an Application Load Balancer attached to the Auto Scaling group.</p> <p>The format is app/<load-balancer-name>/<load-balancer-id>/targetgroup/<target-group-name>/<target-group-id>, where:</p> <ul> <li> <p>app/<load-balancer-name>/<load-balancer-id> is the final portion of the load balancer ARN.</p> </li> <li> <p>targetgroup/<target-group-name>/<target-group-id> is the final portion of the target group ARN.</p> </li> </ul>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents a predefined metric that can be used for predictive scaling. </p>"
|
||||
},
|
||||
"PredefinedScalingMetricSpecification":{
|
||||
"type":"structure",
|
||||
"required":["PredefinedScalingMetricType"],
|
||||
"members":{
|
||||
"PredefinedScalingMetricType":{
|
||||
"shape":"ScalingMetricType",
|
||||
"documentation":"<p>The metric type. The <code>ALBRequestCountPerTarget</code> metric type applies only to Auto Scaling groups, Spot Fleet requests, and ECS services.</p>"
|
||||
},
|
||||
"ResourceLabel":{
|
||||
"shape":"ResourceLabel",
|
||||
"documentation":"<p>Identifies the resource associated with the metric type. You can't specify a resource label unless the metric type is <code>ALBRequestCountPerTarget</code> and there is a target group for an Application Load Balancer attached to the Auto Scaling group, Spot Fleet request, or ECS service.</p> <p>The format is app/<load-balancer-name>/<load-balancer-id>/targetgroup/<target-group-name>/<target-group-id>, where:</p> <ul> <li> <p>app/<load-balancer-name>/<load-balancer-id> is the final portion of the load balancer ARN.</p> </li> <li> <p>targetgroup/<target-group-name>/<target-group-id> is the final portion of the target group ARN.</p> </li> </ul>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents a predefined metric that can be used for dynamic scaling as part of a target tracking scaling policy.</p>"
|
||||
},
|
||||
"PredictiveScalingMaxCapacityBehavior":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"SetForecastCapacityToMaxCapacity",
|
||||
"SetMaxCapacityToForecastCapacity",
|
||||
"SetMaxCapacityAboveForecastCapacity"
|
||||
]
|
||||
},
|
||||
"PredictiveScalingMode":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"ForecastAndScale",
|
||||
"ForecastOnly"
|
||||
]
|
||||
},
|
||||
"ResourceCapacity":{"type":"integer"},
|
||||
"ResourceIdMaxLen1600":{
|
||||
"type":"string",
|
||||
"max":1600,
|
||||
"min":1,
|
||||
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
|
||||
},
|
||||
"ResourceLabel":{
|
||||
"type":"string",
|
||||
"max":1023,
|
||||
"min":1
|
||||
},
|
||||
"ScalableDimension":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"autoscaling:autoScalingGroup:DesiredCapacity",
|
||||
"ecs:service:DesiredCount",
|
||||
"ec2:spot-fleet-request:TargetCapacity",
|
||||
"rds:cluster:ReadReplicaCount",
|
||||
"dynamodb:table:ReadCapacityUnits",
|
||||
"dynamodb:table:WriteCapacityUnits",
|
||||
"dynamodb:index:ReadCapacityUnits",
|
||||
"dynamodb:index:WriteCapacityUnits"
|
||||
]
|
||||
},
|
||||
"ScalingInstruction":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"ServiceNamespace",
|
||||
"ResourceId",
|
||||
"ScalableDimension",
|
||||
"MinCapacity",
|
||||
"MaxCapacity",
|
||||
"TargetTrackingConfigurations"
|
||||
],
|
||||
"members":{
|
||||
"ServiceNamespace":{
|
||||
"shape":"ServiceNamespace",
|
||||
"documentation":"<p>The namespace of the AWS service.</p>"
|
||||
},
|
||||
"ResourceId":{
|
||||
"shape":"ResourceIdMaxLen1600",
|
||||
"documentation":"<p>The ID of the resource. This string consists of the resource type and unique identifier.</p> <ul> <li> <p>Auto Scaling group - The resource type is <code>autoScalingGroup</code> and the unique identifier is the name of the Auto Scaling group. Example: <code>autoScalingGroup/my-asg</code>.</p> </li> <li> <p>ECS service - The resource type is <code>service</code> and the unique identifier is the cluster name and service name. Example: <code>service/default/sample-webapp</code>.</p> </li> <li> <p>Spot Fleet request - The resource type is <code>spot-fleet-request</code> and the unique identifier is the Spot Fleet request ID. Example: <code>spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE</code>.</p> </li> <li> <p>DynamoDB table - The resource type is <code>table</code> and the unique identifier is the resource ID. Example: <code>table/my-table</code>.</p> </li> <li> <p>DynamoDB global secondary index - The resource type is <code>index</code> and the unique identifier is the resource ID. Example: <code>table/my-table/index/my-table-index</code>.</p> </li> <li> <p>Aurora DB cluster - The resource type is <code>cluster</code> and the unique identifier is the cluster name. Example: <code>cluster:my-db-cluster</code>.</p> </li> </ul>"
|
||||
},
|
||||
"ScalableDimension":{
|
||||
"shape":"ScalableDimension",
|
||||
"documentation":"<p>The scalable dimension associated with the resource.</p> <ul> <li> <p> <code>autoscaling:autoScalingGroup:DesiredCapacity</code> - The desired capacity of an Auto Scaling group.</p> </li> <li> <p> <code>ecs:service:DesiredCount</code> - The desired task count of an ECS service.</p> </li> <li> <p> <code>ec2:spot-fleet-request:TargetCapacity</code> - The target capacity of a Spot Fleet request.</p> </li> <li> <p> <code>dynamodb:table:ReadCapacityUnits</code> - The provisioned read capacity for a DynamoDB table.</p> </li> <li> <p> <code>dynamodb:table:WriteCapacityUnits</code> - The provisioned write capacity for a DynamoDB table.</p> </li> <li> <p> <code>dynamodb:index:ReadCapacityUnits</code> - The provisioned read capacity for a DynamoDB global secondary index.</p> </li> <li> <p> <code>dynamodb:index:WriteCapacityUnits</code> - The provisioned write capacity for a DynamoDB global secondary index.</p> </li> <li> <p> <code>rds:cluster:ReadReplicaCount</code> - The count of Aurora Replicas in an Aurora DB cluster. Available for Aurora MySQL-compatible edition and Aurora PostgreSQL-compatible edition.</p> </li> </ul>"
|
||||
},
|
||||
"MinCapacity":{
|
||||
"shape":"ResourceCapacity",
|
||||
"documentation":"<p>The minimum capacity of the resource. </p>"
|
||||
},
|
||||
"MaxCapacity":{
|
||||
"shape":"ResourceCapacity",
|
||||
"documentation":"<p>The maximum capacity of the resource. The exception to this upper limit is if you specify a non-default setting for <b>PredictiveScalingMaxCapacityBehavior</b>. </p>"
|
||||
},
|
||||
"TargetTrackingConfigurations":{
|
||||
"shape":"TargetTrackingConfigurations",
|
||||
"documentation":"<p>The structure that defines new target tracking configurations (up to 10). Each of these structures includes a specific scaling metric and a target value for the metric, along with various parameters to use with dynamic scaling. </p> <p>With predictive scaling and dynamic scaling, the resource scales based on the target tracking configuration that provides the largest capacity for both scale in and scale out. </p> <p>Condition: The scaling metric must be unique across target tracking configurations.</p>"
|
||||
},
|
||||
"PredefinedLoadMetricSpecification":{
|
||||
"shape":"PredefinedLoadMetricSpecification",
|
||||
"documentation":"<p>The predefined load metric to use for predictive scaling. This parameter or a <b>CustomizedLoadMetricSpecification</b> is required when configuring predictive scaling, and cannot be used otherwise. </p>"
|
||||
},
|
||||
"CustomizedLoadMetricSpecification":{
|
||||
"shape":"CustomizedLoadMetricSpecification",
|
||||
"documentation":"<p>The customized load metric to use for predictive scaling. This parameter or a <b>PredefinedLoadMetricSpecification</b> is required when configuring predictive scaling, and cannot be used otherwise. </p>"
|
||||
},
|
||||
"ScheduledActionBufferTime":{
|
||||
"shape":"ScheduledActionBufferTime",
|
||||
"documentation":"<p>The amount of time, in seconds, to buffer the run time of scheduled scaling actions when scaling out. For example, if the forecast says to add capacity at 10:00 AM, and the buffer time is 5 minutes, then the run time of the corresponding scheduled scaling action will be 9:55 AM. The intention is to give resources time to be provisioned. For example, it can take a few minutes to launch an EC2 instance. The actual amount of time required depends on several factors, such as the size of the instance and whether there are startup scripts to complete. </p> <p>The value must be less than the forecast interval duration of 3600 seconds (60 minutes). The default is 300 seconds. </p> <p>Only valid when configuring predictive scaling. </p>"
|
||||
},
|
||||
"PredictiveScalingMaxCapacityBehavior":{
|
||||
"shape":"PredictiveScalingMaxCapacityBehavior",
|
||||
"documentation":"<p>Defines the behavior that should be applied if the forecast capacity approaches or exceeds the maximum capacity specified for the resource. The default value is <code>SetForecastCapacityToMaxCapacity</code>.</p> <p>The following are possible values:</p> <ul> <li> <p> <code>SetForecastCapacityToMaxCapacity</code> - AWS Auto Scaling cannot scale resource capacity higher than the maximum capacity. The maximum capacity is enforced as a hard limit. </p> </li> <li> <p> <code>SetMaxCapacityToForecastCapacity</code> - AWS Auto Scaling may scale resource capacity higher than the maximum capacity to equal but not exceed forecast capacity.</p> </li> <li> <p> <code>SetMaxCapacityAboveForecastCapacity</code> - AWS Auto Scaling may scale resource capacity higher than the maximum capacity by a specified buffer value. The intention is to give the target tracking scaling policy extra capacity if unexpected traffic occurs. </p> </li> </ul> <p>Only valid when configuring predictive scaling.</p>"
|
||||
},
|
||||
"PredictiveScalingMaxCapacityBuffer":{
|
||||
"shape":"ResourceCapacity",
|
||||
"documentation":"<p>The size of the capacity buffer to use when the forecast capacity is close to or exceeds the maximum capacity. The value is specified as a percentage relative to the forecast capacity. For example, if the buffer is 10, this means a 10 percent buffer, such that if the forecast capacity is 50, and the maximum capacity is 40, then the effective maximum capacity is 55.</p> <p>Only valid when configuring predictive scaling. Required if the <b>PredictiveScalingMaxCapacityBehavior</b> is set to <code>SetMaxCapacityAboveForecastCapacity</code>, and cannot be used otherwise.</p> <p>The range is 1-100.</p>"
|
||||
},
|
||||
"PredictiveScalingMode":{
|
||||
"shape":"PredictiveScalingMode",
|
||||
"documentation":"<p>The predictive scaling mode. The default value is <code>ForecastAndScale</code>. Otherwise, AWS Auto Scaling forecasts capacity but does not create any scheduled scaling actions based on the capacity forecast. </p>"
|
||||
},
|
||||
"ScalingPolicyUpdateBehavior":{
|
||||
"shape":"ScalingPolicyUpdateBehavior",
|
||||
"documentation":"<p>Controls whether a resource's externally created scaling policies are kept or replaced. </p> <p>The default value is <code>KeepExternalPolicies</code>. If the parameter is set to <code>ReplaceExternalPolicies</code>, any scaling policies that are external to AWS Auto Scaling are deleted and new target tracking scaling policies created. </p> <p>Only valid when configuring dynamic scaling. </p> <p>Condition: The number of existing policies to be replaced must be less than or equal to 50. If there are more than 50 policies to be replaced, AWS Auto Scaling keeps all existing policies and does not create new ones.</p>"
|
||||
},
|
||||
"DisableDynamicScaling":{
|
||||
"shape":"DisableDynamicScaling",
|
||||
"documentation":"<p>Controls whether dynamic scaling by AWS Auto Scaling is disabled. When dynamic scaling is enabled, AWS Auto Scaling creates target tracking scaling policies based on the specified target tracking configurations. </p> <p>The default is enabled (<code>false</code>). </p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Describes a scaling instruction for a scalable resource.</p> <p>The scaling instruction is used in combination with a scaling plan, which is a set of instructions for configuring dynamic scaling and predictive scaling for the scalable resources in your application. Each scaling instruction applies to one resource.</p> <p>AWS Auto Scaling creates target tracking scaling policies based on the scaling instructions. Target tracking scaling policies adjust the capacity of your scalable resource as required to maintain resource utilization at the target value that you specified. </p> <p>AWS Auto Scaling also configures predictive scaling for your Amazon EC2 Auto Scaling groups using a subset of parameters, including the load metric, the scaling metric, the target value for the scaling metric, the predictive scaling mode (forecast and scale or forecast only), and the desired behavior when the forecast capacity exceeds the maximum capacity of the resource. With predictive scaling, AWS Auto Scaling generates forecasts with traffic predictions for the two days ahead and schedules scaling actions that proactively add and remove resource capacity to match the forecast. </p> <p>We recommend waiting a minimum of 24 hours after creating an Auto Scaling group to configure predictive scaling. At minimum, there must be 24 hours of historical data to generate a forecast.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/autoscaling/plans/userguide/auto-scaling-getting-started.html\">Getting Started with AWS Auto Scaling</a>.</p>"
|
||||
},
|
||||
"ScalingInstructions":{
|
||||
"type":"list",
|
||||
"member":{"shape":"ScalingInstruction"}
|
||||
},
|
||||
"ScalingMetricType":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"ASGAverageCPUUtilization",
|
||||
"ASGAverageNetworkIn",
|
||||
"ASGAverageNetworkOut",
|
||||
"DynamoDBReadCapacityUtilization",
|
||||
"DynamoDBWriteCapacityUtilization",
|
||||
"ECSServiceAverageCPUUtilization",
|
||||
"ECSServiceAverageMemoryUtilization",
|
||||
"ALBRequestCountPerTarget",
|
||||
"RDSReaderAverageCPUUtilization",
|
||||
"RDSReaderAverageDatabaseConnections",
|
||||
"EC2SpotFleetRequestAverageCPUUtilization",
|
||||
"EC2SpotFleetRequestAverageNetworkIn",
|
||||
"EC2SpotFleetRequestAverageNetworkOut"
|
||||
]
|
||||
},
|
||||
"ScalingPlan":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"ScalingPlanName",
|
||||
"ScalingPlanVersion",
|
||||
"ApplicationSource",
|
||||
"ScalingInstructions",
|
||||
"StatusCode"
|
||||
],
|
||||
"members":{
|
||||
"ScalingPlanName":{
|
||||
"shape":"ScalingPlanName",
|
||||
"documentation":"<p>The name of the scaling plan.</p>"
|
||||
},
|
||||
"ScalingPlanVersion":{
|
||||
"shape":"ScalingPlanVersion",
|
||||
"documentation":"<p>The version number of the scaling plan.</p>"
|
||||
},
|
||||
"ApplicationSource":{
|
||||
"shape":"ApplicationSource",
|
||||
"documentation":"<p>The application source.</p>"
|
||||
},
|
||||
"ScalingInstructions":{
|
||||
"shape":"ScalingInstructions",
|
||||
"documentation":"<p>The scaling instructions.</p>"
|
||||
},
|
||||
"StatusCode":{
|
||||
"shape":"ScalingPlanStatusCode",
|
||||
"documentation":"<p>The status of the scaling plan.</p> <ul> <li> <p> <code>Active</code> - The scaling plan is active.</p> </li> <li> <p> <code>ActiveWithProblems</code> - The scaling plan is active, but the scaling configuration for one or more resources could not be applied.</p> </li> <li> <p> <code>CreationInProgress</code> - The scaling plan is being created.</p> </li> <li> <p> <code>CreationFailed</code> - The scaling plan could not be created.</p> </li> <li> <p> <code>DeletionInProgress</code> - The scaling plan is being deleted.</p> </li> <li> <p> <code>DeletionFailed</code> - The scaling plan could not be deleted.</p> </li> <li> <p> <code>UpdateInProgress</code> - The scaling plan is being updated.</p> </li> <li> <p> <code>UpdateFailed</code> - The scaling plan could not be updated.</p> </li> </ul>"
|
||||
},
|
||||
"StatusMessage":{
|
||||
"shape":"XmlString",
|
||||
"documentation":"<p>A simple message about the current status of the scaling plan.</p>"
|
||||
},
|
||||
"StatusStartTime":{
|
||||
"shape":"TimestampType",
|
||||
"documentation":"<p>The Unix time stamp when the scaling plan entered the current status.</p>"
|
||||
},
|
||||
"CreationTime":{
|
||||
"shape":"TimestampType",
|
||||
"documentation":"<p>The Unix time stamp when the scaling plan was created.</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents a scaling plan.</p>"
|
||||
},
|
||||
"ScalingPlanName":{
|
||||
"type":"string",
|
||||
"max":128,
|
||||
"min":1,
|
||||
"pattern":"[\\p{Print}&&[^|:/]]+"
|
||||
},
|
||||
"ScalingPlanNames":{
|
||||
"type":"list",
|
||||
"member":{"shape":"ScalingPlanName"}
|
||||
},
|
||||
"ScalingPlanResource":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"ScalingPlanName",
|
||||
"ScalingPlanVersion",
|
||||
"ServiceNamespace",
|
||||
"ResourceId",
|
||||
"ScalableDimension",
|
||||
"ScalingStatusCode"
|
||||
],
|
||||
"members":{
|
||||
"ScalingPlanName":{
|
||||
"shape":"ScalingPlanName",
|
||||
"documentation":"<p>The name of the scaling plan.</p>"
|
||||
},
|
||||
"ScalingPlanVersion":{
|
||||
"shape":"ScalingPlanVersion",
|
||||
"documentation":"<p>The version number of the scaling plan.</p>"
|
||||
},
|
||||
"ServiceNamespace":{
|
||||
"shape":"ServiceNamespace",
|
||||
"documentation":"<p>The namespace of the AWS service.</p>"
|
||||
},
|
||||
"ResourceId":{
|
||||
"shape":"ResourceIdMaxLen1600",
|
||||
"documentation":"<p>The ID of the resource. This string consists of the resource type and unique identifier.</p> <ul> <li> <p>Auto Scaling group - The resource type is <code>autoScalingGroup</code> and the unique identifier is the name of the Auto Scaling group. Example: <code>autoScalingGroup/my-asg</code>.</p> </li> <li> <p>ECS service - The resource type is <code>service</code> and the unique identifier is the cluster name and service name. Example: <code>service/default/sample-webapp</code>.</p> </li> <li> <p>Spot Fleet request - The resource type is <code>spot-fleet-request</code> and the unique identifier is the Spot Fleet request ID. Example: <code>spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE</code>.</p> </li> <li> <p>DynamoDB table - The resource type is <code>table</code> and the unique identifier is the resource ID. Example: <code>table/my-table</code>.</p> </li> <li> <p>DynamoDB global secondary index - The resource type is <code>index</code> and the unique identifier is the resource ID. Example: <code>table/my-table/index/my-table-index</code>.</p> </li> <li> <p>Aurora DB cluster - The resource type is <code>cluster</code> and the unique identifier is the cluster name. Example: <code>cluster:my-db-cluster</code>.</p> </li> </ul>"
|
||||
},
|
||||
"ScalableDimension":{
|
||||
"shape":"ScalableDimension",
|
||||
"documentation":"<p>The scalable dimension for the resource.</p> <ul> <li> <p> <code>autoscaling:autoScalingGroup:DesiredCapacity</code> - The desired capacity of an Auto Scaling group.</p> </li> <li> <p> <code>ecs:service:DesiredCount</code> - The desired task count of an ECS service.</p> </li> <li> <p> <code>ec2:spot-fleet-request:TargetCapacity</code> - The target capacity of a Spot Fleet request.</p> </li> <li> <p> <code>dynamodb:table:ReadCapacityUnits</code> - The provisioned read capacity for a DynamoDB table.</p> </li> <li> <p> <code>dynamodb:table:WriteCapacityUnits</code> - The provisioned write capacity for a DynamoDB table.</p> </li> <li> <p> <code>dynamodb:index:ReadCapacityUnits</code> - The provisioned read capacity for a DynamoDB global secondary index.</p> </li> <li> <p> <code>dynamodb:index:WriteCapacityUnits</code> - The provisioned write capacity for a DynamoDB global secondary index.</p> </li> <li> <p> <code>rds:cluster:ReadReplicaCount</code> - The count of Aurora Replicas in an Aurora DB cluster. Available for Aurora MySQL-compatible edition and Aurora PostgreSQL-compatible edition.</p> </li> </ul>"
|
||||
},
|
||||
"ScalingPolicies":{
|
||||
"shape":"ScalingPolicies",
|
||||
"documentation":"<p>The scaling policies.</p>"
|
||||
},
|
||||
"ScalingStatusCode":{
|
||||
"shape":"ScalingStatusCode",
|
||||
"documentation":"<p>The scaling status of the resource.</p> <ul> <li> <p> <code>Active</code> - The scaling configuration is active.</p> </li> <li> <p> <code>Inactive</code> - The scaling configuration is not active because the scaling plan is being created or the scaling configuration could not be applied. Check the status message for more information.</p> </li> <li> <p> <code>PartiallyActive</code> - The scaling configuration is partially active because the scaling plan is being created or deleted or the scaling configuration could not be fully applied. Check the status message for more information.</p> </li> </ul>"
|
||||
},
|
||||
"ScalingStatusMessage":{
|
||||
"shape":"XmlString",
|
||||
"documentation":"<p>A simple message about the current scaling status of the resource.</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents a scalable resource.</p>"
|
||||
},
|
||||
"ScalingPlanResources":{
|
||||
"type":"list",
|
||||
"member":{"shape":"ScalingPlanResource"}
|
||||
},
|
||||
"ScalingPlanStatusCode":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"Active",
|
||||
"ActiveWithProblems",
|
||||
"CreationInProgress",
|
||||
"CreationFailed",
|
||||
"DeletionInProgress",
|
||||
"DeletionFailed",
|
||||
"UpdateInProgress",
|
||||
"UpdateFailed"
|
||||
]
|
||||
},
|
||||
"ScalingPlanVersion":{"type":"long"},
|
||||
"ScalingPlans":{
|
||||
"type":"list",
|
||||
"member":{"shape":"ScalingPlan"}
|
||||
},
|
||||
"ScalingPolicies":{
|
||||
"type":"list",
|
||||
"member":{"shape":"ScalingPolicy"}
|
||||
},
|
||||
"ScalingPolicy":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"PolicyName",
|
||||
"PolicyType"
|
||||
],
|
||||
"members":{
|
||||
"PolicyName":{
|
||||
"shape":"PolicyName",
|
||||
"documentation":"<p>The name of the scaling policy.</p>"
|
||||
},
|
||||
"PolicyType":{
|
||||
"shape":"PolicyType",
|
||||
"documentation":"<p>The type of scaling policy.</p>"
|
||||
},
|
||||
"TargetTrackingConfiguration":{
|
||||
"shape":"TargetTrackingConfiguration",
|
||||
"documentation":"<p>The target tracking scaling policy. Includes support for predefined or customized metrics.</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents a scaling policy.</p>"
|
||||
},
|
||||
"ScalingPolicyUpdateBehavior":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"KeepExternalPolicies",
|
||||
"ReplaceExternalPolicies"
|
||||
]
|
||||
},
|
||||
"ScalingStatusCode":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"Inactive",
|
||||
"PartiallyActive",
|
||||
"Active"
|
||||
]
|
||||
},
|
||||
"ScheduledActionBufferTime":{
|
||||
"type":"integer",
|
||||
"min":0
|
||||
},
|
||||
"ServiceNamespace":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"autoscaling",
|
||||
"ecs",
|
||||
"ec2",
|
||||
"rds",
|
||||
"dynamodb"
|
||||
]
|
||||
},
|
||||
"TagFilter":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"Key":{
|
||||
"shape":"XmlStringMaxLen128",
|
||||
"documentation":"<p>The tag key.</p>"
|
||||
},
|
||||
"Values":{
|
||||
"shape":"TagValues",
|
||||
"documentation":"<p>The tag values (0 to 20).</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Represents a tag.</p>"
|
||||
},
|
||||
"TagFilters":{
|
||||
"type":"list",
|
||||
"member":{"shape":"TagFilter"}
|
||||
},
|
||||
"TagValues":{
|
||||
"type":"list",
|
||||
"member":{"shape":"XmlStringMaxLen256"}
|
||||
},
|
||||
"TargetTrackingConfiguration":{
|
||||
"type":"structure",
|
||||
"required":["TargetValue"],
|
||||
"members":{
|
||||
"PredefinedScalingMetricSpecification":{
|
||||
"shape":"PredefinedScalingMetricSpecification",
|
||||
"documentation":"<p>A predefined metric. You can specify either a predefined metric or a customized metric.</p>"
|
||||
},
|
||||
"CustomizedScalingMetricSpecification":{
|
||||
"shape":"CustomizedScalingMetricSpecification",
|
||||
"documentation":"<p>A customized metric. You can specify either a predefined metric or a customized metric. </p>"
|
||||
},
|
||||
"TargetValue":{
|
||||
"shape":"MetricScale",
|
||||
"documentation":"<p>The target value for the metric. The range is 8.515920e-109 to 1.174271e+108 (Base 10) or 2e-360 to 2e360 (Base 2).</p>"
|
||||
},
|
||||
"DisableScaleIn":{
|
||||
"shape":"DisableScaleIn",
|
||||
"documentation":"<p>Indicates whether scale in by the target tracking scaling policy is disabled. If the value is <code>true</code>, scale in is disabled and the target tracking scaling policy doesn't remove capacity from the scalable resource. Otherwise, scale in is enabled and the target tracking scaling policy can remove capacity from the scalable resource. </p> <p>The default value is <code>false</code>.</p>"
|
||||
},
|
||||
"ScaleOutCooldown":{
|
||||
"shape":"Cooldown",
|
||||
"documentation":"<p>The amount of time, in seconds, after a scale-out activity completes before another scale-out activity can start. This value is not used if the scalable resource is an Auto Scaling group.</p> <p>While the cooldown period is in effect, the capacity that has been added by the previous scale-out event that initiated the cooldown is calculated as part of the desired capacity for the next scale out. The intention is to continuously (but not excessively) scale out.</p>"
|
||||
},
|
||||
"ScaleInCooldown":{
|
||||
"shape":"Cooldown",
|
||||
"documentation":"<p>The amount of time, in seconds, after a scale in activity completes before another scale in activity can start. This value is not used if the scalable resource is an Auto Scaling group.</p> <p>The cooldown period is used to block subsequent scale in requests until it has expired. The intention is to scale in conservatively to protect your application's availability. However, if another alarm triggers a scale-out policy during the cooldown period after a scale-in, AWS Auto Scaling scales out your scalable target immediately.</p>"
|
||||
},
|
||||
"EstimatedInstanceWarmup":{
|
||||
"shape":"Cooldown",
|
||||
"documentation":"<p>The estimated time, in seconds, until a newly launched instance can contribute to the CloudWatch metrics. This value is used only if the resource is an Auto Scaling group.</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Describes a target tracking configuration to use with AWS Auto Scaling. Used with <a>ScalingInstruction</a> and <a>ScalingPolicy</a>.</p>"
|
||||
},
|
||||
"TargetTrackingConfigurations":{
|
||||
"type":"list",
|
||||
"member":{"shape":"TargetTrackingConfiguration"}
|
||||
},
|
||||
"TimestampType":{"type":"timestamp"},
|
||||
"UpdateScalingPlanRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"ScalingPlanName",
|
||||
"ScalingPlanVersion"
|
||||
],
|
||||
"members":{
|
||||
"ScalingPlanName":{
|
||||
"shape":"ScalingPlanName",
|
||||
"documentation":"<p>The name of the scaling plan.</p>"
|
||||
},
|
||||
"ScalingPlanVersion":{
|
||||
"shape":"ScalingPlanVersion",
|
||||
"documentation":"<p>The version number of the scaling plan.</p>"
|
||||
},
|
||||
"ApplicationSource":{
|
||||
"shape":"ApplicationSource",
|
||||
"documentation":"<p>A CloudFormation stack or set of tags.</p>"
|
||||
},
|
||||
"ScalingInstructions":{
|
||||
"shape":"ScalingInstructions",
|
||||
"documentation":"<p>The scaling instructions.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"UpdateScalingPlanResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
}
|
||||
},
|
||||
"ValidationException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"Message":{"shape":"ErrorMessage"}
|
||||
},
|
||||
"documentation":"<p>An exception was thrown for a validation issue. Review the parameters provided.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"XmlString":{
|
||||
"type":"string",
|
||||
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
|
||||
},
|
||||
"XmlStringMaxLen128":{
|
||||
"type":"string",
|
||||
"max":128,
|
||||
"min":1,
|
||||
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
|
||||
},
|
||||
"XmlStringMaxLen256":{
|
||||
"type":"string",
|
||||
"max":256,
|
||||
"min":1,
|
||||
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
|
||||
}
|
||||
},
|
||||
"documentation":"<fullname>AWS Auto Scaling</fullname> <p>Use AWS Auto Scaling to quickly discover all the scalable AWS resources for your application and configure dynamic scaling and predictive scaling for your resources using scaling plans. Use this service in conjunction with the Amazon EC2 Auto Scaling, Application Auto Scaling, Amazon CloudWatch, and AWS CloudFormation services. </p> <p>Currently, predictive scaling is only available for Amazon EC2 Auto Scaling groups.</p> <p>For more information about AWS Auto Scaling, including information about granting IAM users required permissions for AWS Auto Scaling actions, see the <a href=\"https://docs.aws.amazon.com/autoscaling/plans/userguide/what-is-aws-auto-scaling.html\">AWS Auto Scaling User Guide</a>.</p>"
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"pagination": {
|
||||
"DescribeAutoScalingGroups": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxRecords",
|
||||
"result_key": "AutoScalingGroups"
|
||||
},
|
||||
"DescribeAutoScalingInstances": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxRecords",
|
||||
"result_key": "AutoScalingInstances"
|
||||
},
|
||||
"DescribeLaunchConfigurations": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxRecords",
|
||||
"result_key": "LaunchConfigurations"
|
||||
},
|
||||
"DescribeNotificationConfigurations": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxRecords",
|
||||
"result_key": "NotificationConfigurations"
|
||||
},
|
||||
"DescribePolicies": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxRecords",
|
||||
"result_key": "ScalingPolicies"
|
||||
},
|
||||
"DescribeScalingActivities": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxRecords",
|
||||
"result_key": "Activities"
|
||||
},
|
||||
"DescribeScheduledActions": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxRecords",
|
||||
"result_key": "ScheduledUpdateGroupActions"
|
||||
},
|
||||
"DescribeTags": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxRecords",
|
||||
"result_key": "Tags"
|
||||
},
|
||||
"DescribeLoadBalancerTargetGroups": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxRecords",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "LoadBalancerTargetGroups"
|
||||
},
|
||||
"DescribeLoadBalancers": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxRecords",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "LoadBalancers"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"pagination": {}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,589 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
"CancelJob": [
|
||||
{
|
||||
"input": {
|
||||
"jobId": "1d828f65-7a4d-42e8-996d-3b900ed59dc4",
|
||||
"reason": "Cancelling job."
|
||||
},
|
||||
"output": {
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example cancels a job with the specified job ID.",
|
||||
"id": "to-cancel-a-job-1481152314733",
|
||||
"title": "To cancel a job"
|
||||
}
|
||||
],
|
||||
"CreateComputeEnvironment": [
|
||||
{
|
||||
"input": {
|
||||
"type": "MANAGED",
|
||||
"computeEnvironmentName": "C4OnDemand",
|
||||
"computeResources": {
|
||||
"type": "EC2",
|
||||
"desiredvCpus": 48,
|
||||
"ec2KeyPair": "id_rsa",
|
||||
"instanceRole": "ecsInstanceRole",
|
||||
"instanceTypes": [
|
||||
"c4.large",
|
||||
"c4.xlarge",
|
||||
"c4.2xlarge",
|
||||
"c4.4xlarge",
|
||||
"c4.8xlarge"
|
||||
],
|
||||
"maxvCpus": 128,
|
||||
"minvCpus": 0,
|
||||
"securityGroupIds": [
|
||||
"sg-cf5093b2"
|
||||
],
|
||||
"subnets": [
|
||||
"subnet-220c0e0a",
|
||||
"subnet-1a95556d",
|
||||
"subnet-978f6dce"
|
||||
],
|
||||
"tags": {
|
||||
"Name": "Batch Instance - C4OnDemand"
|
||||
}
|
||||
},
|
||||
"serviceRole": "arn:aws:iam::012345678910:role/AWSBatchServiceRole",
|
||||
"state": "ENABLED"
|
||||
},
|
||||
"output": {
|
||||
"computeEnvironmentArn": "arn:aws:batch:us-east-1:012345678910:compute-environment/C4OnDemand",
|
||||
"computeEnvironmentName": "C4OnDemand"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example creates a managed compute environment with specific C4 instance types that are launched on demand. The compute environment is called C4OnDemand.",
|
||||
"id": "to-create-a-managed-ec2-compute-environment-1481152600017",
|
||||
"title": "To create a managed EC2 compute environment"
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"type": "MANAGED",
|
||||
"computeEnvironmentName": "M4Spot",
|
||||
"computeResources": {
|
||||
"type": "SPOT",
|
||||
"bidPercentage": 20,
|
||||
"desiredvCpus": 4,
|
||||
"ec2KeyPair": "id_rsa",
|
||||
"instanceRole": "ecsInstanceRole",
|
||||
"instanceTypes": [
|
||||
"m4"
|
||||
],
|
||||
"maxvCpus": 128,
|
||||
"minvCpus": 0,
|
||||
"securityGroupIds": [
|
||||
"sg-cf5093b2"
|
||||
],
|
||||
"spotIamFleetRole": "arn:aws:iam::012345678910:role/aws-ec2-spot-fleet-role",
|
||||
"subnets": [
|
||||
"subnet-220c0e0a",
|
||||
"subnet-1a95556d",
|
||||
"subnet-978f6dce"
|
||||
],
|
||||
"tags": {
|
||||
"Name": "Batch Instance - M4Spot"
|
||||
}
|
||||
},
|
||||
"serviceRole": "arn:aws:iam::012345678910:role/AWSBatchServiceRole",
|
||||
"state": "ENABLED"
|
||||
},
|
||||
"output": {
|
||||
"computeEnvironmentArn": "arn:aws:batch:us-east-1:012345678910:compute-environment/M4Spot",
|
||||
"computeEnvironmentName": "M4Spot"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example creates a managed compute environment with the M4 instance type that is launched when the Spot bid price is at or below 20% of the On-Demand price for the instance type. The compute environment is called M4Spot.",
|
||||
"id": "to-create-a-managed-ec2-spot-compute-environment-1481152844190",
|
||||
"title": "To create a managed EC2 Spot compute environment"
|
||||
}
|
||||
],
|
||||
"CreateJobQueue": [
|
||||
{
|
||||
"input": {
|
||||
"computeEnvironmentOrder": [
|
||||
{
|
||||
"computeEnvironment": "M4Spot",
|
||||
"order": 1
|
||||
}
|
||||
],
|
||||
"jobQueueName": "LowPriority",
|
||||
"priority": 10,
|
||||
"state": "ENABLED"
|
||||
},
|
||||
"output": {
|
||||
"jobQueueArn": "arn:aws:batch:us-east-1:012345678910:job-queue/LowPriority",
|
||||
"jobQueueName": "LowPriority"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example creates a job queue called LowPriority that uses the M4Spot compute environment.",
|
||||
"id": "to-create-a-job-queue-with-a-single-compute-environment-1481152967946",
|
||||
"title": "To create a job queue with a single compute environment"
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"computeEnvironmentOrder": [
|
||||
{
|
||||
"computeEnvironment": "C4OnDemand",
|
||||
"order": 1
|
||||
},
|
||||
{
|
||||
"computeEnvironment": "M4Spot",
|
||||
"order": 2
|
||||
}
|
||||
],
|
||||
"jobQueueName": "HighPriority",
|
||||
"priority": 1,
|
||||
"state": "ENABLED"
|
||||
},
|
||||
"output": {
|
||||
"jobQueueArn": "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority",
|
||||
"jobQueueName": "HighPriority"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example creates a job queue called HighPriority that uses the C4OnDemand compute environment with an order of 1 and the M4Spot compute environment with an order of 2.",
|
||||
"id": "to-create-a-job-queue-with-multiple-compute-environments-1481153027051",
|
||||
"title": "To create a job queue with multiple compute environments"
|
||||
}
|
||||
],
|
||||
"DeleteComputeEnvironment": [
|
||||
{
|
||||
"input": {
|
||||
"computeEnvironment": "P2OnDemand"
|
||||
},
|
||||
"output": {
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example deletes the P2OnDemand compute environment.",
|
||||
"id": "to-delete-a-compute-environment-1481153105644",
|
||||
"title": "To delete a compute environment"
|
||||
}
|
||||
],
|
||||
"DeleteJobQueue": [
|
||||
{
|
||||
"input": {
|
||||
"jobQueue": "GPGPU"
|
||||
},
|
||||
"output": {
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example deletes the GPGPU job queue.",
|
||||
"id": "to-delete-a-job-queue-1481153508134",
|
||||
"title": "To delete a job queue"
|
||||
}
|
||||
],
|
||||
"DeregisterJobDefinition": [
|
||||
{
|
||||
"input": {
|
||||
"jobDefinition": "sleep10"
|
||||
},
|
||||
"output": {
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example deregisters a job definition called sleep10.",
|
||||
"id": "to-deregister-a-job-definition-1481153579565",
|
||||
"title": "To deregister a job definition"
|
||||
}
|
||||
],
|
||||
"DescribeComputeEnvironments": [
|
||||
{
|
||||
"input": {
|
||||
"computeEnvironments": [
|
||||
"P2OnDemand"
|
||||
]
|
||||
},
|
||||
"output": {
|
||||
"computeEnvironments": [
|
||||
{
|
||||
"type": "MANAGED",
|
||||
"computeEnvironmentArn": "arn:aws:batch:us-east-1:012345678910:compute-environment/P2OnDemand",
|
||||
"computeEnvironmentName": "P2OnDemand",
|
||||
"computeResources": {
|
||||
"type": "EC2",
|
||||
"desiredvCpus": 48,
|
||||
"ec2KeyPair": "id_rsa",
|
||||
"instanceRole": "ecsInstanceRole",
|
||||
"instanceTypes": [
|
||||
"p2"
|
||||
],
|
||||
"maxvCpus": 128,
|
||||
"minvCpus": 0,
|
||||
"securityGroupIds": [
|
||||
"sg-cf5093b2"
|
||||
],
|
||||
"subnets": [
|
||||
"subnet-220c0e0a",
|
||||
"subnet-1a95556d",
|
||||
"subnet-978f6dce"
|
||||
],
|
||||
"tags": {
|
||||
"Name": "Batch Instance - P2OnDemand"
|
||||
}
|
||||
},
|
||||
"ecsClusterArn": "arn:aws:ecs:us-east-1:012345678910:cluster/P2OnDemand_Batch_2c06f29d-d1fe-3a49-879d-42394c86effc",
|
||||
"serviceRole": "arn:aws:iam::012345678910:role/AWSBatchServiceRole",
|
||||
"state": "ENABLED",
|
||||
"status": "VALID",
|
||||
"statusReason": "ComputeEnvironment Healthy"
|
||||
}
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example describes the P2OnDemand compute environment.",
|
||||
"id": "to-describe-a-compute-environment-1481153713334",
|
||||
"title": "To describe a compute environment"
|
||||
}
|
||||
],
|
||||
"DescribeJobDefinitions": [
|
||||
{
|
||||
"input": {
|
||||
"status": "ACTIVE"
|
||||
},
|
||||
"output": {
|
||||
"jobDefinitions": [
|
||||
{
|
||||
"type": "container",
|
||||
"containerProperties": {
|
||||
"command": [
|
||||
"sleep",
|
||||
"60"
|
||||
],
|
||||
"environment": [
|
||||
|
||||
],
|
||||
"image": "busybox",
|
||||
"memory": 128,
|
||||
"mountPoints": [
|
||||
|
||||
],
|
||||
"ulimits": [
|
||||
|
||||
],
|
||||
"vcpus": 1,
|
||||
"volumes": [
|
||||
|
||||
]
|
||||
},
|
||||
"jobDefinitionArn": "arn:aws:batch:us-east-1:012345678910:job-definition/sleep60:1",
|
||||
"jobDefinitionName": "sleep60",
|
||||
"revision": 1,
|
||||
"status": "ACTIVE"
|
||||
}
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example describes all of your active job definitions.",
|
||||
"id": "to-describe-active-job-definitions-1481153895831",
|
||||
"title": "To describe active job definitions"
|
||||
}
|
||||
],
|
||||
"DescribeJobQueues": [
|
||||
{
|
||||
"input": {
|
||||
"jobQueues": [
|
||||
"HighPriority"
|
||||
]
|
||||
},
|
||||
"output": {
|
||||
"jobQueues": [
|
||||
{
|
||||
"computeEnvironmentOrder": [
|
||||
{
|
||||
"computeEnvironment": "arn:aws:batch:us-east-1:012345678910:compute-environment/C4OnDemand",
|
||||
"order": 1
|
||||
}
|
||||
],
|
||||
"jobQueueArn": "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority",
|
||||
"jobQueueName": "HighPriority",
|
||||
"priority": 1,
|
||||
"state": "ENABLED",
|
||||
"status": "VALID",
|
||||
"statusReason": "JobQueue Healthy"
|
||||
}
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example describes the HighPriority job queue.",
|
||||
"id": "to-describe-a-job-queue-1481153995804",
|
||||
"title": "To describe a job queue"
|
||||
}
|
||||
],
|
||||
"DescribeJobs": [
|
||||
{
|
||||
"input": {
|
||||
"jobs": [
|
||||
"24fa2d7a-64c4-49d2-8b47-f8da4fbde8e9"
|
||||
]
|
||||
},
|
||||
"output": {
|
||||
"jobs": [
|
||||
{
|
||||
"container": {
|
||||
"command": [
|
||||
"sleep",
|
||||
"60"
|
||||
],
|
||||
"containerInstanceArn": "arn:aws:ecs:us-east-1:012345678910:container-instance/5406d7cd-58bd-4b8f-9936-48d7c6b1526c",
|
||||
"environment": [
|
||||
|
||||
],
|
||||
"exitCode": 0,
|
||||
"image": "busybox",
|
||||
"memory": 128,
|
||||
"mountPoints": [
|
||||
|
||||
],
|
||||
"ulimits": [
|
||||
|
||||
],
|
||||
"vcpus": 1,
|
||||
"volumes": [
|
||||
|
||||
]
|
||||
},
|
||||
"createdAt": 1480460782010,
|
||||
"dependsOn": [
|
||||
|
||||
],
|
||||
"jobDefinition": "sleep60",
|
||||
"jobId": "24fa2d7a-64c4-49d2-8b47-f8da4fbde8e9",
|
||||
"jobName": "example",
|
||||
"jobQueue": "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority",
|
||||
"parameters": {
|
||||
},
|
||||
"startedAt": 1480460816500,
|
||||
"status": "SUCCEEDED",
|
||||
"stoppedAt": 1480460880699
|
||||
}
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example describes a job with the specified job ID.",
|
||||
"id": "to-describe-a-specific-job-1481154090490",
|
||||
"title": "To describe a specific job"
|
||||
}
|
||||
],
|
||||
"ListJobs": [
|
||||
{
|
||||
"input": {
|
||||
"jobQueue": "HighPriority"
|
||||
},
|
||||
"output": {
|
||||
"jobSummaryList": [
|
||||
{
|
||||
"jobId": "e66ff5fd-a1ff-4640-b1a2-0b0a142f49bb",
|
||||
"jobName": "example"
|
||||
}
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example lists the running jobs in the HighPriority job queue.",
|
||||
"id": "to-list-running-jobs-1481154202164",
|
||||
"title": "To list running jobs"
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"jobQueue": "HighPriority",
|
||||
"jobStatus": "SUBMITTED"
|
||||
},
|
||||
"output": {
|
||||
"jobSummaryList": [
|
||||
{
|
||||
"jobId": "68f0c163-fbd4-44e6-9fd1-25b14a434786",
|
||||
"jobName": "example"
|
||||
}
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example lists jobs in the HighPriority job queue that are in the SUBMITTED job status.",
|
||||
"id": "to-list-submitted-jobs-1481154251623",
|
||||
"title": "To list submitted jobs"
|
||||
}
|
||||
],
|
||||
"RegisterJobDefinition": [
|
||||
{
|
||||
"input": {
|
||||
"type": "container",
|
||||
"containerProperties": {
|
||||
"command": [
|
||||
"sleep",
|
||||
"10"
|
||||
],
|
||||
"image": "busybox",
|
||||
"memory": 128,
|
||||
"vcpus": 1
|
||||
},
|
||||
"jobDefinitionName": "sleep10"
|
||||
},
|
||||
"output": {
|
||||
"jobDefinitionArn": "arn:aws:batch:us-east-1:012345678910:job-definition/sleep10:1",
|
||||
"jobDefinitionName": "sleep10",
|
||||
"revision": 1
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example registers a job definition for a simple container job.",
|
||||
"id": "to-register-a-job-definition-1481154325325",
|
||||
"title": "To register a job definition"
|
||||
}
|
||||
],
|
||||
"SubmitJob": [
|
||||
{
|
||||
"input": {
|
||||
"jobDefinition": "sleep60",
|
||||
"jobName": "example",
|
||||
"jobQueue": "HighPriority"
|
||||
},
|
||||
"output": {
|
||||
"jobId": "876da822-4198-45f2-a252-6cea32512ea8",
|
||||
"jobName": "example"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example submits a simple container job called example to the HighPriority job queue.",
|
||||
"id": "to-submit-a-job-to-a-queue-1481154481673",
|
||||
"title": "To submit a job to a queue"
|
||||
}
|
||||
],
|
||||
"TerminateJob": [
|
||||
{
|
||||
"input": {
|
||||
"jobId": "61e743ed-35e4-48da-b2de-5c8333821c84",
|
||||
"reason": "Terminating job."
|
||||
},
|
||||
"output": {
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example terminates a job with the specified job ID.",
|
||||
"id": "to-terminate-a-job-1481154558276",
|
||||
"title": "To terminate a job"
|
||||
}
|
||||
],
|
||||
"UpdateComputeEnvironment": [
|
||||
{
|
||||
"input": {
|
||||
"computeEnvironment": "P2OnDemand",
|
||||
"state": "DISABLED"
|
||||
},
|
||||
"output": {
|
||||
"computeEnvironmentArn": "arn:aws:batch:us-east-1:012345678910:compute-environment/P2OnDemand",
|
||||
"computeEnvironmentName": "P2OnDemand"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example disables the P2OnDemand compute environment so it can be deleted.",
|
||||
"id": "to-update-a-compute-environment-1481154702731",
|
||||
"title": "To update a compute environment"
|
||||
}
|
||||
],
|
||||
"UpdateJobQueue": [
|
||||
{
|
||||
"input": {
|
||||
"jobQueue": "GPGPU",
|
||||
"state": "DISABLED"
|
||||
},
|
||||
"output": {
|
||||
"jobQueueArn": "arn:aws:batch:us-east-1:012345678910:job-queue/GPGPU",
|
||||
"jobQueueName": "GPGPU"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example disables a job queue so that it can be deleted.",
|
||||
"id": "to-update-a-job-queue-1481154806981",
|
||||
"title": "To update a job queue"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"pagination": {
|
||||
"DescribeComputeEnvironments": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "computeEnvironments"
|
||||
},
|
||||
"DescribeJobDefinitions": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "jobDefinitions"
|
||||
},
|
||||
"DescribeJobQueues": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "jobQueues"
|
||||
},
|
||||
"ListJobs": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "jobSummaryList"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"pagination": {
|
||||
"DescribeBudgets": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Budgets"
|
||||
},
|
||||
"DescribeNotificationsForBudget": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Notifications"
|
||||
},
|
||||
"DescribeSubscribersForNotification": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Subscribers"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"pagination": {}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListAccounts": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Accounts"
|
||||
},
|
||||
"ListUsers": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Users"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"pagination": {
|
||||
"DescribeEnvironmentMemberships": {
|
||||
"result_key": "memberships",
|
||||
"output_token": "nextToken",
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults"
|
||||
},
|
||||
"ListEnvironments": {
|
||||
"result_key": "environmentIds",
|
||||
"output_token": "nextToken",
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,729 @@
|
||||
{
|
||||
"version":"2.0",
|
||||
"metadata":{
|
||||
"apiVersion":"2017-09-23",
|
||||
"endpointPrefix":"cloud9",
|
||||
"jsonVersion":"1.1",
|
||||
"protocol":"json",
|
||||
"serviceFullName":"AWS Cloud9",
|
||||
"serviceId":"Cloud9",
|
||||
"signatureVersion":"v4",
|
||||
"targetPrefix":"AWSCloud9WorkspaceManagementService",
|
||||
"uid":"cloud9-2017-09-23"
|
||||
},
|
||||
"operations":{
|
||||
"CreateEnvironmentEC2":{
|
||||
"name":"CreateEnvironmentEC2",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"CreateEnvironmentEC2Request"},
|
||||
"output":{"shape":"CreateEnvironmentEC2Result"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"ConflictException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"ForbiddenException"},
|
||||
{"shape":"TooManyRequestsException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalServerErrorException"}
|
||||
],
|
||||
"documentation":"<p>Creates an AWS Cloud9 development environment, launches an Amazon Elastic Compute Cloud (Amazon EC2) instance, and then connects from the instance to the environment.</p>",
|
||||
"idempotent":true
|
||||
},
|
||||
"CreateEnvironmentMembership":{
|
||||
"name":"CreateEnvironmentMembership",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"CreateEnvironmentMembershipRequest"},
|
||||
"output":{"shape":"CreateEnvironmentMembershipResult"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"ConflictException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"ForbiddenException"},
|
||||
{"shape":"TooManyRequestsException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalServerErrorException"}
|
||||
],
|
||||
"documentation":"<p>Adds an environment member to an AWS Cloud9 development environment.</p>",
|
||||
"idempotent":true
|
||||
},
|
||||
"DeleteEnvironment":{
|
||||
"name":"DeleteEnvironment",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"DeleteEnvironmentRequest"},
|
||||
"output":{"shape":"DeleteEnvironmentResult"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"ConflictException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"ForbiddenException"},
|
||||
{"shape":"TooManyRequestsException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalServerErrorException"}
|
||||
],
|
||||
"documentation":"<p>Deletes an AWS Cloud9 development environment. If an Amazon EC2 instance is connected to the environment, also terminates the instance.</p>",
|
||||
"idempotent":true
|
||||
},
|
||||
"DeleteEnvironmentMembership":{
|
||||
"name":"DeleteEnvironmentMembership",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"DeleteEnvironmentMembershipRequest"},
|
||||
"output":{"shape":"DeleteEnvironmentMembershipResult"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"ConflictException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"ForbiddenException"},
|
||||
{"shape":"TooManyRequestsException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalServerErrorException"}
|
||||
],
|
||||
"documentation":"<p>Deletes an environment member from an AWS Cloud9 development environment.</p>",
|
||||
"idempotent":true
|
||||
},
|
||||
"DescribeEnvironmentMemberships":{
|
||||
"name":"DescribeEnvironmentMemberships",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"DescribeEnvironmentMembershipsRequest"},
|
||||
"output":{"shape":"DescribeEnvironmentMembershipsResult"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"ConflictException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"ForbiddenException"},
|
||||
{"shape":"TooManyRequestsException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalServerErrorException"}
|
||||
],
|
||||
"documentation":"<p>Gets information about environment members for an AWS Cloud9 development environment.</p>"
|
||||
},
|
||||
"DescribeEnvironmentStatus":{
|
||||
"name":"DescribeEnvironmentStatus",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"DescribeEnvironmentStatusRequest"},
|
||||
"output":{"shape":"DescribeEnvironmentStatusResult"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"ConflictException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"ForbiddenException"},
|
||||
{"shape":"TooManyRequestsException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalServerErrorException"}
|
||||
],
|
||||
"documentation":"<p>Gets status information for an AWS Cloud9 development environment.</p>"
|
||||
},
|
||||
"DescribeEnvironments":{
|
||||
"name":"DescribeEnvironments",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"DescribeEnvironmentsRequest"},
|
||||
"output":{"shape":"DescribeEnvironmentsResult"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"ConflictException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"ForbiddenException"},
|
||||
{"shape":"TooManyRequestsException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalServerErrorException"}
|
||||
],
|
||||
"documentation":"<p>Gets information about AWS Cloud9 development environments.</p>"
|
||||
},
|
||||
"ListEnvironments":{
|
||||
"name":"ListEnvironments",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"ListEnvironmentsRequest"},
|
||||
"output":{"shape":"ListEnvironmentsResult"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"ConflictException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"ForbiddenException"},
|
||||
{"shape":"TooManyRequestsException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalServerErrorException"}
|
||||
],
|
||||
"documentation":"<p>Gets a list of AWS Cloud9 development environment identifiers.</p>"
|
||||
},
|
||||
"UpdateEnvironment":{
|
||||
"name":"UpdateEnvironment",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"UpdateEnvironmentRequest"},
|
||||
"output":{"shape":"UpdateEnvironmentResult"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"ConflictException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"ForbiddenException"},
|
||||
{"shape":"TooManyRequestsException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalServerErrorException"}
|
||||
],
|
||||
"documentation":"<p>Changes the settings of an existing AWS Cloud9 development environment.</p>",
|
||||
"idempotent":true
|
||||
},
|
||||
"UpdateEnvironmentMembership":{
|
||||
"name":"UpdateEnvironmentMembership",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/"
|
||||
},
|
||||
"input":{"shape":"UpdateEnvironmentMembershipRequest"},
|
||||
"output":{"shape":"UpdateEnvironmentMembershipResult"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"ConflictException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"ForbiddenException"},
|
||||
{"shape":"TooManyRequestsException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalServerErrorException"}
|
||||
],
|
||||
"documentation":"<p>Changes the settings of an existing environment member for an AWS Cloud9 development environment.</p>",
|
||||
"idempotent":true
|
||||
}
|
||||
},
|
||||
"shapes":{
|
||||
"AutomaticStopTimeMinutes":{
|
||||
"type":"integer",
|
||||
"box":true,
|
||||
"max":20160
|
||||
},
|
||||
"BadRequestException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
},
|
||||
"documentation":"<p>The target request is invalid.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"BoundedEnvironmentIdList":{
|
||||
"type":"list",
|
||||
"member":{"shape":"EnvironmentId"},
|
||||
"max":25,
|
||||
"min":1
|
||||
},
|
||||
"ClientRequestToken":{
|
||||
"type":"string",
|
||||
"pattern":"[\\x20-\\x7E]{10,128}"
|
||||
},
|
||||
"ConflictException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
},
|
||||
"documentation":"<p>A conflict occurred.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"CreateEnvironmentEC2Request":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"name",
|
||||
"instanceType"
|
||||
],
|
||||
"members":{
|
||||
"name":{
|
||||
"shape":"EnvironmentName",
|
||||
"documentation":"<p>The name of the environment to create.</p> <p>This name is visible to other AWS IAM users in the same AWS account.</p>"
|
||||
},
|
||||
"description":{
|
||||
"shape":"EnvironmentDescription",
|
||||
"documentation":"<p>The description of the environment to create.</p>"
|
||||
},
|
||||
"clientRequestToken":{
|
||||
"shape":"ClientRequestToken",
|
||||
"documentation":"<p>A unique, case-sensitive string that helps AWS Cloud9 to ensure this operation completes no more than one time.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html\">Client Tokens</a> in the <i>Amazon EC2 API Reference</i>.</p>"
|
||||
},
|
||||
"instanceType":{
|
||||
"shape":"InstanceType",
|
||||
"documentation":"<p>The type of instance to connect to the environment (for example, <code>t2.micro</code>).</p>"
|
||||
},
|
||||
"subnetId":{
|
||||
"shape":"SubnetId",
|
||||
"documentation":"<p>The ID of the subnet in Amazon VPC that AWS Cloud9 will use to communicate with the Amazon EC2 instance.</p>"
|
||||
},
|
||||
"automaticStopTimeMinutes":{
|
||||
"shape":"AutomaticStopTimeMinutes",
|
||||
"documentation":"<p>The number of minutes until the running instance is shut down after the environment has last been used.</p>"
|
||||
},
|
||||
"ownerArn":{
|
||||
"shape":"UserArn",
|
||||
"documentation":"<p>The Amazon Resource Name (ARN) of the environment owner. This ARN can be the ARN of any AWS IAM principal. If this value is not specified, the ARN defaults to this environment's creator.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CreateEnvironmentEC2Result":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"environmentId":{
|
||||
"shape":"EnvironmentId",
|
||||
"documentation":"<p>The ID of the environment that was created.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CreateEnvironmentMembershipRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"environmentId",
|
||||
"userArn",
|
||||
"permissions"
|
||||
],
|
||||
"members":{
|
||||
"environmentId":{
|
||||
"shape":"EnvironmentId",
|
||||
"documentation":"<p>The ID of the environment that contains the environment member you want to add.</p>"
|
||||
},
|
||||
"userArn":{
|
||||
"shape":"UserArn",
|
||||
"documentation":"<p>The Amazon Resource Name (ARN) of the environment member you want to add.</p>"
|
||||
},
|
||||
"permissions":{
|
||||
"shape":"MemberPermissions",
|
||||
"documentation":"<p>The type of environment member permissions you want to associate with this environment member. Available values include:</p> <ul> <li> <p> <code>read-only</code>: Has read-only access to the environment.</p> </li> <li> <p> <code>read-write</code>: Has read-write access to the environment.</p> </li> </ul>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CreateEnvironmentMembershipResult":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"membership":{
|
||||
"shape":"EnvironmentMember",
|
||||
"documentation":"<p>Information about the environment member that was added.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DeleteEnvironmentMembershipRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"environmentId",
|
||||
"userArn"
|
||||
],
|
||||
"members":{
|
||||
"environmentId":{
|
||||
"shape":"EnvironmentId",
|
||||
"documentation":"<p>The ID of the environment to delete the environment member from.</p>"
|
||||
},
|
||||
"userArn":{
|
||||
"shape":"UserArn",
|
||||
"documentation":"<p>The Amazon Resource Name (ARN) of the environment member to delete from the environment.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DeleteEnvironmentMembershipResult":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
}
|
||||
},
|
||||
"DeleteEnvironmentRequest":{
|
||||
"type":"structure",
|
||||
"required":["environmentId"],
|
||||
"members":{
|
||||
"environmentId":{
|
||||
"shape":"EnvironmentId",
|
||||
"documentation":"<p>The ID of the environment to delete.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DeleteEnvironmentResult":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
}
|
||||
},
|
||||
"DescribeEnvironmentMembershipsRequest":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"userArn":{
|
||||
"shape":"UserArn",
|
||||
"documentation":"<p>The Amazon Resource Name (ARN) of an individual environment member to get information about. If no value is specified, information about all environment members are returned.</p>"
|
||||
},
|
||||
"environmentId":{
|
||||
"shape":"EnvironmentId",
|
||||
"documentation":"<p>The ID of the environment to get environment member information about.</p>"
|
||||
},
|
||||
"permissions":{
|
||||
"shape":"PermissionsList",
|
||||
"documentation":"<p>The type of environment member permissions to get information about. Available values include:</p> <ul> <li> <p> <code>owner</code>: Owns the environment.</p> </li> <li> <p> <code>read-only</code>: Has read-only access to the environment.</p> </li> <li> <p> <code>read-write</code>: Has read-write access to the environment.</p> </li> </ul> <p>If no value is specified, information about all environment members are returned.</p>"
|
||||
},
|
||||
"nextToken":{
|
||||
"shape":"String",
|
||||
"documentation":"<p>During a previous call, if there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p>"
|
||||
},
|
||||
"maxResults":{
|
||||
"shape":"MaxResults",
|
||||
"documentation":"<p>The maximum number of environment members to get information about.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DescribeEnvironmentMembershipsResult":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"memberships":{
|
||||
"shape":"EnvironmentMembersList",
|
||||
"documentation":"<p>Information about the environment members for the environment.</p>"
|
||||
},
|
||||
"nextToken":{
|
||||
"shape":"String",
|
||||
"documentation":"<p>If there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DescribeEnvironmentStatusRequest":{
|
||||
"type":"structure",
|
||||
"required":["environmentId"],
|
||||
"members":{
|
||||
"environmentId":{
|
||||
"shape":"EnvironmentId",
|
||||
"documentation":"<p>The ID of the environment to get status information about.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DescribeEnvironmentStatusResult":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"status":{
|
||||
"shape":"EnvironmentStatus",
|
||||
"documentation":"<p>The status of the environment. Available values include:</p> <ul> <li> <p> <code>connecting</code>: The environment is connecting.</p> </li> <li> <p> <code>creating</code>: The environment is being created.</p> </li> <li> <p> <code>deleting</code>: The environment is being deleted.</p> </li> <li> <p> <code>error</code>: The environment is in an error state.</p> </li> <li> <p> <code>ready</code>: The environment is ready.</p> </li> <li> <p> <code>stopped</code>: The environment is stopped.</p> </li> <li> <p> <code>stopping</code>: The environment is stopping.</p> </li> </ul>"
|
||||
},
|
||||
"message":{
|
||||
"shape":"String",
|
||||
"documentation":"<p>Any informational message about the status of the environment.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DescribeEnvironmentsRequest":{
|
||||
"type":"structure",
|
||||
"required":["environmentIds"],
|
||||
"members":{
|
||||
"environmentIds":{
|
||||
"shape":"BoundedEnvironmentIdList",
|
||||
"documentation":"<p>The IDs of individual environments to get information about.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DescribeEnvironmentsResult":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"environments":{
|
||||
"shape":"EnvironmentList",
|
||||
"documentation":"<p>Information about the environments that are returned.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Environment":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"id":{
|
||||
"shape":"EnvironmentId",
|
||||
"documentation":"<p>The ID of the environment.</p>"
|
||||
},
|
||||
"name":{
|
||||
"shape":"EnvironmentName",
|
||||
"documentation":"<p>The name of the environment.</p>"
|
||||
},
|
||||
"description":{
|
||||
"shape":"EnvironmentDescription",
|
||||
"documentation":"<p>The description for the environment.</p>"
|
||||
},
|
||||
"type":{
|
||||
"shape":"EnvironmentType",
|
||||
"documentation":"<p>The type of environment. Valid values include the following:</p> <ul> <li> <p> <code>ec2</code>: An Amazon Elastic Compute Cloud (Amazon EC2) instance connects to the environment.</p> </li> <li> <p> <code>ssh</code>: Your own server connects to the environment.</p> </li> </ul>"
|
||||
},
|
||||
"arn":{
|
||||
"shape":"String",
|
||||
"documentation":"<p>The Amazon Resource Name (ARN) of the environment.</p>"
|
||||
},
|
||||
"ownerArn":{
|
||||
"shape":"String",
|
||||
"documentation":"<p>The Amazon Resource Name (ARN) of the environment owner.</p>"
|
||||
},
|
||||
"lifecycle":{
|
||||
"shape":"EnvironmentLifecycle",
|
||||
"documentation":"<p>The state of the environment in its creation or deletion lifecycle.</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Information about an AWS Cloud9 development environment.</p>"
|
||||
},
|
||||
"EnvironmentDescription":{
|
||||
"type":"string",
|
||||
"max":200,
|
||||
"sensitive":true
|
||||
},
|
||||
"EnvironmentId":{
|
||||
"type":"string",
|
||||
"pattern":"^[a-zA-Z0-9]{8,32}$"
|
||||
},
|
||||
"EnvironmentIdList":{
|
||||
"type":"list",
|
||||
"member":{"shape":"EnvironmentId"}
|
||||
},
|
||||
"EnvironmentLifecycle":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"status":{
|
||||
"shape":"EnvironmentLifecycleStatus",
|
||||
"documentation":"<p>The current creation or deletion lifecycle state of the environment.</p> <ul> <li> <p> <code>CREATING</code>: The environment is in the process of being created.</p> </li> <li> <p> <code>CREATED</code>: The environment was successfully created.</p> </li> <li> <p> <code>CREATE_FAILED</code>: The environment failed to be created.</p> </li> <li> <p> <code>DELETING</code>: The environment is in the process of being deleted.</p> </li> <li> <p> <code>DELETE_FAILED</code>: The environment failed to delete.</p> </li> </ul>"
|
||||
},
|
||||
"reason":{
|
||||
"shape":"String",
|
||||
"documentation":"<p>Any informational message about the lifecycle state of the environment.</p>"
|
||||
},
|
||||
"failureResource":{
|
||||
"shape":"String",
|
||||
"documentation":"<p>If the environment failed to delete, the Amazon Resource Name (ARN) of the related AWS resource.</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Information about the current creation or deletion lifecycle state of an AWS Cloud9 development environment.</p>"
|
||||
},
|
||||
"EnvironmentLifecycleStatus":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"CREATING",
|
||||
"CREATED",
|
||||
"CREATE_FAILED",
|
||||
"DELETING",
|
||||
"DELETE_FAILED"
|
||||
]
|
||||
},
|
||||
"EnvironmentList":{
|
||||
"type":"list",
|
||||
"member":{"shape":"Environment"}
|
||||
},
|
||||
"EnvironmentMember":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"permissions":{
|
||||
"shape":"Permissions",
|
||||
"documentation":"<p>The type of environment member permissions associated with this environment member. Available values include:</p> <ul> <li> <p> <code>owner</code>: Owns the environment.</p> </li> <li> <p> <code>read-only</code>: Has read-only access to the environment.</p> </li> <li> <p> <code>read-write</code>: Has read-write access to the environment.</p> </li> </ul>"
|
||||
},
|
||||
"userId":{
|
||||
"shape":"String",
|
||||
"documentation":"<p>The user ID in AWS Identity and Access Management (AWS IAM) of the environment member.</p>"
|
||||
},
|
||||
"userArn":{
|
||||
"shape":"UserArn",
|
||||
"documentation":"<p>The Amazon Resource Name (ARN) of the environment member.</p>"
|
||||
},
|
||||
"environmentId":{
|
||||
"shape":"EnvironmentId",
|
||||
"documentation":"<p>The ID of the environment for the environment member.</p>"
|
||||
},
|
||||
"lastAccess":{
|
||||
"shape":"Timestamp",
|
||||
"documentation":"<p>The time, expressed in epoch time format, when the environment member last opened the environment.</p>"
|
||||
}
|
||||
},
|
||||
"documentation":"<p>Information about an environment member for an AWS Cloud9 development environment.</p>"
|
||||
},
|
||||
"EnvironmentMembersList":{
|
||||
"type":"list",
|
||||
"member":{"shape":"EnvironmentMember"}
|
||||
},
|
||||
"EnvironmentName":{
|
||||
"type":"string",
|
||||
"max":60,
|
||||
"min":1
|
||||
},
|
||||
"EnvironmentStatus":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"error",
|
||||
"creating",
|
||||
"connecting",
|
||||
"ready",
|
||||
"stopping",
|
||||
"stopped",
|
||||
"deleting"
|
||||
]
|
||||
},
|
||||
"EnvironmentType":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"ssh",
|
||||
"ec2"
|
||||
]
|
||||
},
|
||||
"ForbiddenException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
},
|
||||
"documentation":"<p>An access permissions issue occurred.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"InstanceType":{
|
||||
"type":"string",
|
||||
"max":20,
|
||||
"min":5,
|
||||
"pattern":"^[a-z][1-9][.][a-z0-9]+$"
|
||||
},
|
||||
"InternalServerErrorException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
},
|
||||
"documentation":"<p>An internal server error occurred.</p>",
|
||||
"exception":true,
|
||||
"fault":true
|
||||
},
|
||||
"LimitExceededException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
},
|
||||
"documentation":"<p>A service limit was exceeded.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"ListEnvironmentsRequest":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"nextToken":{
|
||||
"shape":"String",
|
||||
"documentation":"<p>During a previous call, if there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p>"
|
||||
},
|
||||
"maxResults":{
|
||||
"shape":"MaxResults",
|
||||
"documentation":"<p>The maximum number of environments to get identifiers for.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ListEnvironmentsResult":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"nextToken":{
|
||||
"shape":"String",
|
||||
"documentation":"<p>If there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call.</p>"
|
||||
},
|
||||
"environmentIds":{
|
||||
"shape":"EnvironmentIdList",
|
||||
"documentation":"<p>The list of environment identifiers.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MaxResults":{
|
||||
"type":"integer",
|
||||
"box":true,
|
||||
"max":25,
|
||||
"min":0
|
||||
},
|
||||
"MemberPermissions":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"read-write",
|
||||
"read-only"
|
||||
]
|
||||
},
|
||||
"NotFoundException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
},
|
||||
"documentation":"<p>The target resource cannot be found.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"Permissions":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"owner",
|
||||
"read-write",
|
||||
"read-only"
|
||||
]
|
||||
},
|
||||
"PermissionsList":{
|
||||
"type":"list",
|
||||
"member":{"shape":"Permissions"}
|
||||
},
|
||||
"String":{"type":"string"},
|
||||
"SubnetId":{
|
||||
"type":"string",
|
||||
"max":30,
|
||||
"min":5
|
||||
},
|
||||
"Timestamp":{"type":"timestamp"},
|
||||
"TooManyRequestsException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
},
|
||||
"documentation":"<p>Too many service requests were made over the given time period.</p>",
|
||||
"exception":true
|
||||
},
|
||||
"UpdateEnvironmentMembershipRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"environmentId",
|
||||
"userArn",
|
||||
"permissions"
|
||||
],
|
||||
"members":{
|
||||
"environmentId":{
|
||||
"shape":"EnvironmentId",
|
||||
"documentation":"<p>The ID of the environment for the environment member whose settings you want to change.</p>"
|
||||
},
|
||||
"userArn":{
|
||||
"shape":"UserArn",
|
||||
"documentation":"<p>The Amazon Resource Name (ARN) of the environment member whose settings you want to change.</p>"
|
||||
},
|
||||
"permissions":{
|
||||
"shape":"MemberPermissions",
|
||||
"documentation":"<p>The replacement type of environment member permissions you want to associate with this environment member. Available values include:</p> <ul> <li> <p> <code>read-only</code>: Has read-only access to the environment.</p> </li> <li> <p> <code>read-write</code>: Has read-write access to the environment.</p> </li> </ul>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"UpdateEnvironmentMembershipResult":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"membership":{
|
||||
"shape":"EnvironmentMember",
|
||||
"documentation":"<p>Information about the environment member whose settings were changed.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"UpdateEnvironmentRequest":{
|
||||
"type":"structure",
|
||||
"required":["environmentId"],
|
||||
"members":{
|
||||
"environmentId":{
|
||||
"shape":"EnvironmentId",
|
||||
"documentation":"<p>The ID of the environment to change settings.</p>"
|
||||
},
|
||||
"name":{
|
||||
"shape":"EnvironmentName",
|
||||
"documentation":"<p>A replacement name for the environment.</p>"
|
||||
},
|
||||
"description":{
|
||||
"shape":"EnvironmentDescription",
|
||||
"documentation":"<p>Any new or replacement description for the environment.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"UpdateEnvironmentResult":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
}
|
||||
},
|
||||
"UserArn":{
|
||||
"type":"string",
|
||||
"pattern":"^arn:aws:(iam|sts)::\\d+:(root|(user\\/[\\w+=/:,.@-]{1,64}|federated-user\\/[\\w+=/:,.@-]{2,32}|assumed-role\\/[\\w+=/:,.@-]{1,64}\\/[\\w+=/:,.@-]{1,64}))$"
|
||||
}
|
||||
},
|
||||
"documentation":"<fullname>AWS Cloud9</fullname> <p>AWS Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and release software in the cloud.</p> <p>For more information about AWS Cloud9, see the <a href=\"https://docs.aws.amazon.com/cloud9/latest/user-guide\">AWS Cloud9 User Guide</a>.</p> <p>AWS Cloud9 supports these operations:</p> <ul> <li> <p> <code>CreateEnvironmentEC2</code>: Creates an AWS Cloud9 development environment, launches an Amazon EC2 instance, and then connects from the instance to the environment.</p> </li> <li> <p> <code>CreateEnvironmentMembership</code>: Adds an environment member to an environment.</p> </li> <li> <p> <code>DeleteEnvironment</code>: Deletes an environment. If an Amazon EC2 instance is connected to the environment, also terminates the instance.</p> </li> <li> <p> <code>DeleteEnvironmentMembership</code>: Deletes an environment member from an environment.</p> </li> <li> <p> <code>DescribeEnvironmentMemberships</code>: Gets information about environment members for an environment.</p> </li> <li> <p> <code>DescribeEnvironments</code>: Gets information about environments.</p> </li> <li> <p> <code>DescribeEnvironmentStatus</code>: Gets status information for an environment.</p> </li> <li> <p> <code>ListEnvironments</code>: Gets a list of environment identifiers.</p> </li> <li> <p> <code>UpdateEnvironment</code>: Changes the settings of an existing environment.</p> </li> <li> <p> <code>UpdateEnvironmentMembership</code>: Changes the settings of an existing environment member for an environment.</p> </li> </ul>"
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListObjectParentPaths": {
|
||||
"result_key": "PathToObjectIdentifiersList",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListFacetNames": {
|
||||
"result_key": "FacetNames",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListPublishedSchemaArns": {
|
||||
"result_key": "SchemaArns",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListDirectories": {
|
||||
"result_key": "Directories",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListDevelopmentSchemaArns": {
|
||||
"result_key": "SchemaArns",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListTypedLinkFacetNames": {
|
||||
"result_key": "FacetNames",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListIndex": {
|
||||
"result_key": "IndexAttachments",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListFacetAttributes": {
|
||||
"result_key": "Attributes",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListObjectPolicies": {
|
||||
"result_key": "AttachedPolicyIds",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListTagsForResource": {
|
||||
"result_key": "Tags",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListAttachedIndices": {
|
||||
"result_key": "IndexAttachments",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"LookupPolicy": {
|
||||
"result_key": "PolicyToPathList",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListPolicyAttachments": {
|
||||
"result_key": "ObjectIdentifiers",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListObjectAttributes": {
|
||||
"result_key": "Attributes",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListAppliedSchemaArns": {
|
||||
"result_key": "SchemaArns",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListTypedLinkFacetAttributes": {
|
||||
"result_key": "Attributes",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,118 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListObjectParentPaths": {
|
||||
"result_key": "PathToObjectIdentifiersList",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListFacetNames": {
|
||||
"result_key": "FacetNames",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListPublishedSchemaArns": {
|
||||
"result_key": "SchemaArns",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListDirectories": {
|
||||
"result_key": "Directories",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListDevelopmentSchemaArns": {
|
||||
"result_key": "SchemaArns",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListTypedLinkFacetNames": {
|
||||
"result_key": "FacetNames",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListIndex": {
|
||||
"result_key": "IndexAttachments",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListFacetAttributes": {
|
||||
"result_key": "Attributes",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListObjectPolicies": {
|
||||
"result_key": "AttachedPolicyIds",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListTagsForResource": {
|
||||
"result_key": "Tags",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListAttachedIndices": {
|
||||
"result_key": "IndexAttachments",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"LookupPolicy": {
|
||||
"result_key": "PolicyToPathList",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListPolicyAttachments": {
|
||||
"result_key": "ObjectIdentifiers",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListObjectAttributes": {
|
||||
"result_key": "Attributes",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListAppliedSchemaArns": {
|
||||
"result_key": "SchemaArns",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListTypedLinkFacetAttributes": {
|
||||
"result_key": "Attributes",
|
||||
"output_token": "NextToken",
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListIncomingTypedLinks": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "LinkSpecifiers"
|
||||
},
|
||||
"ListManagedSchemaArns": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "SchemaArns"
|
||||
},
|
||||
"ListOutgoingTypedLinks": {
|
||||
"input_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "TypedLinkSpecifiers"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,158 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
"CancelUpdateStack": [
|
||||
{
|
||||
"input": {
|
||||
"StackName": "MyStack"
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example cancels an update of the specified stack.",
|
||||
"id": "to-cancel-a-stack-update-that-is-in-progress-1472747085196",
|
||||
"title": "To cancel a stack update in progress"
|
||||
}
|
||||
],
|
||||
"UpdateStack": [
|
||||
{
|
||||
"input": {
|
||||
"NotificationARNs": [
|
||||
|
||||
],
|
||||
"Parameters": [
|
||||
{
|
||||
"ParameterKey": "KeyPairName",
|
||||
"ParameterValue": "ExampleKeyPair"
|
||||
},
|
||||
{
|
||||
"ParameterKey": "SubnetIDs",
|
||||
"ParameterValue": "ExampleSubnetID1, ExampleSubnetID2"
|
||||
}
|
||||
],
|
||||
"ResourceTypes": [
|
||||
|
||||
],
|
||||
"StackName": "MyStack",
|
||||
"Tags": [
|
||||
|
||||
],
|
||||
"TemplateURL": "https://s3.amazonaws.com/example/updated.template"
|
||||
},
|
||||
"output": {
|
||||
"StackId": ""
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example updates the template and input parameters for the specified stack.",
|
||||
"id": "to-update-an-aws-cloudformation-stack-1472841931621",
|
||||
"title": "To update an AWS CloudFormation stack"
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"NotificationARNs": [
|
||||
|
||||
],
|
||||
"Parameters": [
|
||||
{
|
||||
"ParameterKey": "KeyPairName",
|
||||
"UsePreviousValue": true
|
||||
},
|
||||
{
|
||||
"ParameterKey": "SubnetIDs",
|
||||
"ParameterValue": "SampleSubnetID1, UpdatedSampleSubnetID2"
|
||||
}
|
||||
],
|
||||
"ResourceTypes": [
|
||||
|
||||
],
|
||||
"StackName": "MyStack",
|
||||
"Tags": [
|
||||
|
||||
],
|
||||
"TemplateURL": "https://s3.amazonaws.com/example/updated.template"
|
||||
},
|
||||
"output": {
|
||||
"StackId": ""
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example updates only the the specified parameter value for the specified stack. If you don't specify a parameter value, AWS CloudFormation uses the default value from the template.",
|
||||
"id": "to-update-an-aws-cloudformation-stack-1472841931621",
|
||||
"title": "To update an AWS CloudFormation stack"
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"Capabilities": [
|
||||
|
||||
],
|
||||
"NotificationARNs": [
|
||||
"arn:aws:sns:use-east-1:123456789012:mytopic1",
|
||||
"arn:aws:sns:us-east-1:123456789012:mytopic2"
|
||||
],
|
||||
"Parameters": [
|
||||
|
||||
],
|
||||
"ResourceTypes": [
|
||||
|
||||
],
|
||||
"StackName": "MyStack",
|
||||
"Tags": [
|
||||
|
||||
],
|
||||
"TemplateURL": "https://s3.amazonaws.com/example/updated.template",
|
||||
"UsePreviousTemplate": true
|
||||
},
|
||||
"output": {
|
||||
"StackId": ""
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example adds two stack notification topics to the specified stack.",
|
||||
"id": "to-update-an-aws-cloudformation-stack-1472841931621",
|
||||
"title": "To update an AWS CloudFormation stack"
|
||||
}
|
||||
],
|
||||
"ValidateTemplate": [
|
||||
{
|
||||
"input": {
|
||||
"TemplateBody": "MyTemplate.json"
|
||||
},
|
||||
"output": {
|
||||
"Capabilities": [
|
||||
|
||||
],
|
||||
"CapabilitiesReason": "",
|
||||
"Description": "AWS CloudFormation Example Template S3_Bucket: An example template that shows how to create a publicly-accessible S3 bucket. IMPORTANT: This template creates an S3 bucket. You will be billed for the AWS resources used if you create a stack from this template.",
|
||||
"Parameters": [
|
||||
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example validates the specified template.",
|
||||
"id": "to-validate-an-aws-cloudformation-template-1472839072307",
|
||||
"title": "To validate an AWS CloudFormation template"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,89 @@
|
||||
{
|
||||
"pagination": {
|
||||
"DescribeAccountLimits": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "AccountLimits"
|
||||
},
|
||||
"DescribeChangeSet": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Changes",
|
||||
"non_aggregate_keys": [
|
||||
"ChangeSetName",
|
||||
"ChangeSetId",
|
||||
"StackId",
|
||||
"StackName",
|
||||
"Description",
|
||||
"Parameters",
|
||||
"CreationTime",
|
||||
"ExecutionStatus",
|
||||
"Status",
|
||||
"StatusReason",
|
||||
"NotificationARNs",
|
||||
"RollbackConfiguration",
|
||||
"Capabilities",
|
||||
"Tags"
|
||||
]
|
||||
},
|
||||
"DescribeStackEvents": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "StackEvents"
|
||||
},
|
||||
"DescribeStacks": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Stacks"
|
||||
},
|
||||
"ListChangeSets": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Summaries"
|
||||
},
|
||||
"ListStackInstances": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "Summaries"
|
||||
},
|
||||
"ListStackResources": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "StackResourceSummaries"
|
||||
},
|
||||
"ListStacks": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "StackSummaries"
|
||||
},
|
||||
"ListStackSetOperationResults": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "Summaries"
|
||||
},
|
||||
"ListStackSetOperations": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "Summaries"
|
||||
},
|
||||
"ListStackSets": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults",
|
||||
"result_key": "Summaries"
|
||||
},
|
||||
"ListExports": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Exports"
|
||||
},
|
||||
"ListImports": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"result_key": "Imports"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,182 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"StackExists": {
|
||||
"delay": 5,
|
||||
"operation": "DescribeStacks",
|
||||
"maxAttempts": 20,
|
||||
"acceptors": [
|
||||
{
|
||||
"matcher": "status",
|
||||
"expected": 200,
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"matcher": "error",
|
||||
"expected": "ValidationError",
|
||||
"state": "retry"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StackCreateComplete": {
|
||||
"delay": 30,
|
||||
"operation": "DescribeStacks",
|
||||
"maxAttempts": 120,
|
||||
"description": "Wait until stack status is CREATE_COMPLETE.",
|
||||
"acceptors": [
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "CREATE_COMPLETE",
|
||||
"matcher": "pathAll",
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "CREATE_FAILED",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "DELETE_COMPLETE",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "DELETE_FAILED",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "ROLLBACK_FAILED",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "ROLLBACK_COMPLETE",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"expected": "ValidationError",
|
||||
"matcher": "error",
|
||||
"state": "failure"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StackDeleteComplete": {
|
||||
"delay": 30,
|
||||
"operation": "DescribeStacks",
|
||||
"maxAttempts": 120,
|
||||
"description": "Wait until stack status is DELETE_COMPLETE.",
|
||||
"acceptors": [
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "DELETE_COMPLETE",
|
||||
"matcher": "pathAll",
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"expected": "ValidationError",
|
||||
"matcher": "error",
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "DELETE_FAILED",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "CREATE_FAILED",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "ROLLBACK_FAILED",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "UPDATE_ROLLBACK_FAILED",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "UPDATE_ROLLBACK_IN_PROGRESS",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StackUpdateComplete": {
|
||||
"delay": 30,
|
||||
"maxAttempts": 120,
|
||||
"operation": "DescribeStacks",
|
||||
"description": "Wait until stack status is UPDATE_COMPLETE.",
|
||||
"acceptors": [
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "UPDATE_COMPLETE",
|
||||
"matcher": "pathAll",
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"expected": "UPDATE_FAILED",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure",
|
||||
"argument": "Stacks[].StackStatus"
|
||||
},
|
||||
{
|
||||
"argument": "Stacks[].StackStatus",
|
||||
"expected": "UPDATE_ROLLBACK_FAILED",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"expected": "UPDATE_ROLLBACK_COMPLETE",
|
||||
"matcher": "pathAny",
|
||||
"state": "failure",
|
||||
"argument": "Stacks[].StackStatus"
|
||||
},
|
||||
{
|
||||
"expected": "ValidationError",
|
||||
"matcher": "error",
|
||||
"state": "failure"
|
||||
}
|
||||
]
|
||||
},
|
||||
"ChangeSetCreateComplete": {
|
||||
"delay": 30,
|
||||
"operation": "DescribeChangeSet",
|
||||
"maxAttempts": 120,
|
||||
"description": "Wait until change set status is CREATE_COMPLETE.",
|
||||
"acceptors": [
|
||||
{
|
||||
"argument": "Status",
|
||||
"expected": "CREATE_COMPLETE",
|
||||
"matcher": "path",
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"argument": "Status",
|
||||
"expected": "FAILED",
|
||||
"matcher": "path",
|
||||
"state": "failure"
|
||||
},
|
||||
{
|
||||
"expected": "ValidationError",
|
||||
"matcher": "error",
|
||||
"state": "failure"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListCloudFrontOriginAccessIdentities": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
||||
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
||||
},
|
||||
"ListDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "DistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "DistributionList.IsTruncated",
|
||||
"result_key": "DistributionList.Items"
|
||||
},
|
||||
"ListInvalidations": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "InvalidationList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "InvalidationList.IsTruncated",
|
||||
"result_key": "InvalidationList.Items"
|
||||
},
|
||||
"ListStreamingDistributions": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "StreamingDistributionList.NextMarker",
|
||||
"limit_key": "MaxItems",
|
||||
"more_results": "StreamingDistributionList.IsTruncated",
|
||||
"result_key": "StreamingDistributionList.Items"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"DistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Distribution.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"InvalidationCompleted": {
|
||||
"delay": 20,
|
||||
"operation": "GetInvalidation",
|
||||
"maxAttempts": 60,
|
||||
"description": "Wait until an invalidation has completed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "Invalidation.Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
"StreamingDistributionDeployed": {
|
||||
"delay": 60,
|
||||
"operation": "GetStreamingDistribution",
|
||||
"maxAttempts": 25,
|
||||
"description": "Wait until a streaming distribution is deployed.",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Deployed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "StreamingDistribution.Status"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user