Creates a new Stage resource that references a pre-existing Deployment for the API.
Request SyntaxPOST /restapis/restapi_id
/stages HTTP/1.1
Content-type: application/json
{
"cacheClusterEnabled": boolean
,
"cacheClusterSize": "string
",
"canarySettings": {
"deploymentId": "string
",
"percentTraffic": number
,
"stageVariableOverrides": {
"string
" : "string
"
},
"useStageCache": boolean
},
"deploymentId": "string
",
"description": "string
",
"documentationVersion": "string
",
"stageName": "string
",
"tags": {
"string
" : "string
"
},
"tracingEnabled": boolean
,
"variables": {
"string
" : "string
"
}
}
URI Request Parameters
The request uses the following URI parameters.
The string identifier of the associated RestApi.
Required: Yes
The request accepts the following data in JSON format.
Whether cache clustering is enabled for the stage.
Type: Boolean
Required: No
The stage's cache capacity in GB. For more information about choosing a cache size, see Enabling API caching to enhance responsiveness.
Type: String
Valid Values: 0.5 | 1.6 | 6.1 | 13.5 | 28.4 | 58.2 | 118 | 237
Required: No
The canary deployment settings of this stage.
Type: CanarySettings object
Required: No
The identifier of the Deployment resource for the Stage resource.
Type: String
Required: Yes
The description of the Stage resource.
Type: String
Required: No
The version of the associated API documentation.
Type: String
Required: No
The name for the Stage resource. Stage names can only contain alphanumeric characters, hyphens, and underscores. Maximum length is 128 characters.
Type: String
Required: Yes
The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:
. The tag value can be up to 256 characters.
Type: String to string map
Required: No
Specifies whether active tracing with X-ray is enabled for the Stage.
Type: Boolean
Required: No
A map that defines the stage variables for the new Stage resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9-._~:/?#&=,]+
.
Type: String to string map
Required: No
HTTP/1.1 201
Content-type: application/json
{
"accessLogSettings": {
"destinationArn": "string",
"format": "string"
},
"cacheClusterEnabled": boolean,
"cacheClusterSize": "string",
"cacheClusterStatus": "string",
"canarySettings": {
"deploymentId": "string",
"percentTraffic": number,
"stageVariableOverrides": {
"string" : "string"
},
"useStageCache": boolean
},
"clientCertificateId": "string",
"createdDate": number,
"deploymentId": "string",
"description": "string",
"documentationVersion": "string",
"lastUpdatedDate": number,
"methodSettings": {
"string" : {
"cacheDataEncrypted": boolean,
"cacheTtlInSeconds": number,
"cachingEnabled": boolean,
"dataTraceEnabled": boolean,
"loggingLevel": "string",
"metricsEnabled": boolean,
"requireAuthorizationForCacheControl": boolean,
"throttlingBurstLimit": number,
"throttlingRateLimit": number,
"unauthorizedCacheControlHeaderStrategy": "string"
}
},
"stageName": "string",
"tags": {
"string" : "string"
},
"tracingEnabled": boolean,
"variables": {
"string" : "string"
},
"webAclArn": "string"
}
Response Elements
If the action is successful, the service sends back an HTTP 201 response.
The following data is returned in JSON format by the service.
Settings for logging access in this stage.
Type: AccessLogSettings object
Specifies whether a cache cluster is enabled for the stage. To activate a method-level cache, set CachingEnabled
to true
for a method.
Type: Boolean
The stage's cache capacity in GB. For more information about choosing a cache size, see Enabling API caching to enhance responsiveness.
Type: String
Valid Values: 0.5 | 1.6 | 6.1 | 13.5 | 28.4 | 58.2 | 118 | 237
The status of the cache cluster for the stage, if enabled.
Type: String
Valid Values: CREATE_IN_PROGRESS | AVAILABLE | DELETE_IN_PROGRESS | NOT_AVAILABLE | FLUSH_IN_PROGRESS
Settings for the canary deployment in this stage.
Type: CanarySettings object
The identifier of a client certificate for an API stage.
Type: String
The timestamp when the stage was created.
Type: Timestamp
The identifier of the Deployment that the stage points to.
Type: String
The stage's description.
Type: String
The version of the associated API documentation.
Type: String
The timestamp when the stage last updated.
Type: Timestamp
A map that defines the method settings for a Stage resource. Keys (designated as /{method_setting_key
below) are method paths defined as {resource_path}/{http_method}
for an individual method override, or /\*/\*
for overriding all methods in the stage.
Type: String to MethodSetting object map
The name of the stage is the first path segment in the Uniform Resource Identifier (URI) of a call to API Gateway. Stage names can only contain alphanumeric characters, hyphens, and underscores. Maximum length is 128 characters.
Type: String
The collection of tags. Each tag element is associated with a given resource.
Type: String to string map
Specifies whether active tracing with X-ray is enabled for the Stage.
Type: Boolean
A map that defines the stage variables for a Stage resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9-._~:/?#&=,]+
.
Type: String to string map
The ARN of the WebAcl associated with the Stage.
Type: String
For information about the errors that are common to all actions, see Common Errors.
The submitted request is not valid, for example, the input is incomplete or incorrect. See the accompanying error message for details.
HTTP Status Code: 400
The request configuration has conflicts. For details, see the accompanying error message.
HTTP Status Code: 409
The request exceeded the rate limit. Retry after the specified time period.
HTTP Status Code: 429
The requested resource is not found. Make sure that the request URI is correct.
HTTP Status Code: 404
The request has reached its throttling limit. Retry after the specified time period.
HTTP Status Code: 429
The request is denied because the caller has insufficient permissions.
HTTP Status Code: 401
This example illustrates one usage of CreateStage.
Sample RequestPOST /restapis/uycll6xg9a/stages HTTP/1.1
Content-Type: application/json
Host: apigateway.us-east-1.amazonaws.com
X-Amz-Date: 20170223T200249Z
Authorization: AWS4-HMAC-SHA256 Credential={access_key_ID}/20170223/us-east-1/apigateway/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature={sig4_hash}
{
"stageName" : "alpha",
"deploymentId" : "vakw79",
"description" : "alpha stage",
"cacheClusterEnabled" : "true",
"cacheClusterSize" : "0.5",
"variables" : {
"sv_1" : "value_1",
"sv_2" : "value_2"
}
}
Sample Response
{
"_links": {
"curies": {
"href": "https://docs.aws.amazon.com/apigateway/latest/developerguide/restapi-stage-{rel}.html",
"name": "stage",
"templated": true
},
"self": {
"href": "/restapis/uycll6xg9a/stages/alpha"
},
"stage:delete": {
"href": "/restapis/uycll6xg9a/stages/alpha"
},
"stage:flush-authorizer-cache": {
"href": "/restapis/uycll6xg9a/stages/alpha/cache/authorizers"
},
"stage:flush-cache": {
"href": "/restapis/uycll6xg9a/stages/alpha/cache/data"
},
"stage:update": {
"href": "/restapis/uycll6xg9a/stages/alpha"
}
},
"cacheClusterEnabled": true,
"cacheClusterSize": "0.5",
"cacheClusterStatus": "CREATE_IN_PROGRESS",
"createdDate": "2016-06-08T20:02:50Z",
"deploymentId": "vakw79",
"description": "alpha stage",
"lastUpdatedDate": "2016-06-08T20:02:50Z",
"methodSettings": {},
"stageName": "alpha",
"variables": {
"sv_2": "value_2",
"sv_1": "value_1"
}
}
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4