GetStage
Gets information about a Stage resource.
Request Syntax
GET /restapis/restapi_id
/stages/stage_name
HTTP/1.1
URI Request Parameters
The request uses the following URI parameters.
- restapi_id
-
The string identifier of the associated RestApi.
Required: Yes
- stage_name
-
The name of the Stage resource to get information about.
Required: Yes
Request Body
The request does not have a request body.
Response Syntax
HTTP/1.1 200
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 200 response.
The following data is returned in JSON format by the service.
- accessLogSettings
-
Settings for logging access in this stage.
Type: AccessLogSettings object
- cacheClusterEnabled
-
Specifies whether a cache cluster is enabled for the stage. To activate a method-level cache, set
CachingEnabled
totrue
for a method.Type: Boolean
- cacheClusterSize
-
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
- cacheClusterStatus
-
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
- canarySettings
-
Settings for the canary deployment in this stage.
Type: CanarySettings object
- clientCertificateId
-
The identifier of a client certificate for an API stage.
Type: String
- createdDate
-
The timestamp when the stage was created.
Type: Timestamp
- deploymentId
-
The identifier of the Deployment that the stage points to.
Type: String
- description
-
The stage's description.
Type: String
- documentationVersion
-
The version of the associated API documentation.
Type: String
- lastUpdatedDate
-
The timestamp when the stage last updated.
Type: Timestamp
- methodSettings
-
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
- stageName
-
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
- tracingEnabled
-
Specifies whether active tracing with X-ray is enabled for the Stage.
Type: Boolean
- variables
-
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
- webAclArn
-
The ARN of the WebAcl associated with the Stage.
Type: String
Errors
For information about the errors that are common to all actions, see Common Errors.
- BadRequestException
-
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
- ConflictException
-
The request configuration has conflicts. For details, see the accompanying error message.
HTTP Status Code: 409
- LimitExceededException
-
The request exceeded the rate limit. Retry after the specified time period.
HTTP Status Code: 429
- NotFoundException
-
The requested resource is not found. Make sure that the request URI is correct.
HTTP Status Code: 404
- TooManyRequestsException
-
The request has reached its throttling limit. Retry after the specified time period.
HTTP Status Code: 429
- UnauthorizedException
-
The request is denied because the caller has insufficient permissions.
HTTP Status Code: 401
Examples
Get a named stage of an API
This example illustrates one usage of GetStage.
Sample Request
GET /restapis/uycll6xg9a/stages/prod HTTP/1.1
Content-Type: application/json
Host: apigateway.us-east-1.amazonaws.com
X-Amz-Date: 20170223T194603Z
Authorization: AWS4-HMAC-SHA256 Credential={access_key_ID}/20170223/us-east-1/apigateway/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature={sig4_hash}
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/prod"
},
"stage:delete": {
"href": "/restapis/uycll6xg9a/stages/prod"
},
"stage:flush-authorizer-cache": {
"href": "/restapis/uycll6xg9a/stages/prod/cache/authorizers"
},
"stage:update": {
"href": "/restapis/uycll6xg9a/stages/prod"
}
},
"cacheClusterEnabled": false,
"cacheClusterStatus": "NOT_AVAILABLE",
"createdDate": "2016-04-15T17:53:35Z",
"deploymentId": "vakw79",
"lastUpdatedDate": "2016-04-15T18:30:10Z",
"methodSettings": {},
"stageName": "prod",
"variables": {
"version": "v-prod",
"url": "petstore-demo-endpoint.execute-api.com/petstore/pets",
"function": "HelloEveryone"
}
}
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: