class Stage (construct)
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.APIGateway.Stage |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapigateway#Stage |
Java | software.amazon.awscdk.services.apigateway.Stage |
Python | aws_cdk.aws_apigateway.Stage |
TypeScript (source) | aws-cdk-lib » aws_apigateway » Stage |
Implements
IConstruct
, IDependable
, IResource
, IStage
Example
// production stage
const prodLogGroup = new logs.LogGroup(this, "PrdLogs");
const api = new apigateway.RestApi(this, 'books', {
deployOptions: {
accessLogDestination: new apigateway.LogGroupLogDestination(prodLogGroup),
accessLogFormat: apigateway.AccessLogFormat.jsonWithStandardFields(),
},
});
const deployment = new apigateway.Deployment(this, 'Deployment', {api});
// development stage
const devLogGroup = new logs.LogGroup(this, "DevLogs");
new apigateway.Stage(this, 'dev', {
deployment,
accessLogDestination: new apigateway.LogGroupLogDestination(devLogGroup),
accessLogFormat: apigateway.AccessLogFormat.jsonWithStandardFields({
caller: false,
httpMethod: true,
ip: true,
protocol: true,
requestTime: true,
resourcePath: true,
responseLength: true,
status: true,
user: true,
}),
});
Initializer
new Stage(scope: Construct, id: string, props: StageProps)
Parameters
- scope
Construct
- id
string
- props
Stage
Props
Construct Props
Name | Type | Description |
---|---|---|
deployment | Deployment | The deployment that this stage points to [disable-awslint:ref-via-interface]. |
access | IAccess | The CloudWatch Logs log group or Firehose delivery stream where to write access logs. |
access | Access | A single line format of access logs of data, as specified by selected $content variables. |
cache | boolean | Indicates whether cache clustering is enabled for the stage. |
cache | string | The stage's cache cluster size. |
cache | boolean | Indicates whether the cached responses are encrypted. |
cache | Duration | Specifies the time to live (TTL), in seconds, for cached responses. |
caching | boolean | Specifies whether responses should be cached and returned for requests. |
client | string | The identifier of the client certificate that API Gateway uses to call your integration endpoints in the stage. |
data | boolean | Specifies whether data trace logging is enabled for this method. |
description? | string | A description of the purpose of the stage. |
documentation | string | The version identifier of the API documentation snapshot. |
logging | Method | Specifies the logging level for this method, which effects the log entries pushed to Amazon CloudWatch Logs. |
method | { [string]: Method } | Method deployment options for specific resources/methods. |
metrics | boolean | Specifies whether Amazon CloudWatch metrics are enabled for this method. |
stage | string | The name of the stage, which API Gateway uses as the first path segment in the invoked Uniform Resource Identifier (URI). |
throttling | number | Specifies the throttling burst limit. |
throttling | number | Specifies the throttling rate limit. |
tracing | boolean | Specifies whether Amazon X-Ray tracing is enabled for this method. |
variables? | { [string]: string } | A map that defines the stage variables. |
deployment
Type:
Deployment
The deployment that this stage points to [disable-awslint:ref-via-interface].
accessLogDestination?
Type:
IAccess
(optional, default: No destination)
The CloudWatch Logs log group or Firehose delivery stream where to write access logs.
accessLogFormat?
Type:
Access
(optional, default: Common Log Format)
A single line format of access logs of data, as specified by selected $content variables.
The format must include either AccessLogFormat.contextRequestId()
or AccessLogFormat.contextExtendedRequestId()
.
cacheClusterEnabled?
Type:
boolean
(optional, default: Disabled for the stage.)
Indicates whether cache clustering is enabled for the stage.
cacheClusterSize?
Type:
string
(optional, default: 0.5)
The stage's cache cluster size.
cacheDataEncrypted?
Type:
boolean
(optional, default: false)
Indicates whether the cached responses are encrypted.
cacheTtl?
Type:
Duration
(optional, default: Duration.minutes(5))
Specifies the time to live (TTL), in seconds, for cached responses.
The higher the TTL, the longer the response will be cached.
cachingEnabled?
Type:
boolean
(optional, default: Caching is Disabled.)
Specifies whether responses should be cached and returned for requests.
A cache cluster must be enabled on the stage for responses to be cached.
clientCertificateId?
Type:
string
(optional, default: None.)
The identifier of the client certificate that API Gateway uses to call your integration endpoints in the stage.
dataTraceEnabled?
Type:
boolean
(optional, default: false)
Specifies whether data trace logging is enabled for this method.
When enabled, API gateway will log the full API requests and responses. This can be useful to troubleshoot APIs, but can result in logging sensitive data. We recommend that you don't enable this feature for production APIs.
description?
Type:
string
(optional, default: No description.)
A description of the purpose of the stage.
documentationVersion?
Type:
string
(optional, default: No documentation version.)
The version identifier of the API documentation snapshot.
loggingLevel?
Type:
Method
(optional, default: Off)
Specifies the logging level for this method, which effects the log entries pushed to Amazon CloudWatch Logs.
methodOptions?
Type:
{ [string]:
Method
}
(optional, default: Common options will be used.)
Method deployment options for specific resources/methods.
These will
override common options defined in StageOptions#methodOptions
.
metricsEnabled?
Type:
boolean
(optional, default: false)
Specifies whether Amazon CloudWatch metrics are enabled for this method.
stageName?
Type:
string
(optional, default: "prod")
The name of the stage, which API Gateway uses as the first path segment in the invoked Uniform Resource Identifier (URI).
throttlingBurstLimit?
Type:
number
(optional, default: No additional restriction.)
Specifies the throttling burst limit.
The total rate of all requests in your AWS account is limited to 5,000 requests.
throttlingRateLimit?
Type:
number
(optional, default: No additional restriction.)
Specifies the throttling rate limit.
The total rate of all requests in your AWS account is limited to 10,000 requests per second (rps).
tracingEnabled?
Type:
boolean
(optional, default: false)
Specifies whether Amazon X-Ray tracing is enabled for this method.
variables?
Type:
{ [string]: string }
(optional, default: No stage variables.)
A map that defines the stage variables.
Variable names must consist of alphanumeric characters, and the values must match the following regular expression: [A-Za-z0-9-._~:/?#&=,]+.
Properties
Name | Type | Description |
---|---|---|
env | Resource | The environment this resource belongs to. |
node | Node | The tree node. |
rest | IRest | RestApi to which this stage is associated. |
stack | Stack | The stack in which this resource is defined. |
stage | string | Returns the resource ARN for this stage:. |
stage | string | Name of this stage. |
env
Type:
Resource
The environment this resource belongs to.
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
node
Type:
Node
The tree node.
restApi
Type:
IRest
RestApi to which this stage is associated.
stack
Type:
Stack
The stack in which this resource is defined.
stageArn
Type:
string
Returns the resource ARN for this stage:.
arn:aws:apigateway:{region}::/restapis/{restApiId}/stages/{stageName}
Note that this is separate from the execute-api ARN for methods and resources within this stage.
stageName
Type:
string
Name of this stage.
Methods
Name | Description |
---|---|
add | Add an ApiKey to this stage. |
apply | Apply the given removal policy to this resource. |
metric(metricName, props?) | Returns the given named metric for this stage. |
metric | Metric for the number of requests served from the API cache in a given period. |
metric | Metric for the number of requests served from the backend in a given period, when API caching is enabled. |
metric | Metric for the number of client-side errors captured in a given period. |
metric | Metric for the total number API requests in a given period. |
metric | Metric for the time between when API Gateway relays a request to the backend and when it receives a response from the backend. |
metric | The time between when API Gateway receives a request from a client and when it returns a response to the client. |
metric | Metric for the number of server-side errors captured in a given period. |
to | Returns a string representation of this construct. |
url | Returns the invoke URL for a certain path. |
static from | Import a Stage by its attributes. |
ApiKey(id, options?)
addpublic addApiKey(id: string, options?: ApiKeyOptions): IApiKey
Parameters
- id
string
- options
Api
Key Options
Returns
Add an ApiKey to this stage.
RemovalPolicy(policy)
applypublic applyRemovalPolicy(policy: RemovalPolicy): void
Parameters
- policy
Removal
Policy
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY
), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN
).
metric(metricName, props?)
public metric(metricName: string, props?: MetricOptions): Metric
Parameters
- metricName
string
- props
Metric
Options
Returns
Returns the given named metric for this stage.
CacheHitCount(props?)
metricpublic metricCacheHitCount(props?: MetricOptions): Metric
Parameters
- props
Metric
Options
Returns
Metric for the number of requests served from the API cache in a given period.
CacheMissCount(props?)
metricpublic metricCacheMissCount(props?: MetricOptions): Metric
Parameters
- props
Metric
Options
Returns
Metric for the number of requests served from the backend in a given period, when API caching is enabled.
ClientError(props?)
metricpublic metricClientError(props?: MetricOptions): Metric
Parameters
- props
Metric
Options
Returns
Metric for the number of client-side errors captured in a given period.
Count(props?)
metricpublic metricCount(props?: MetricOptions): Metric
Parameters
- props
Metric
Options
Returns
Metric for the total number API requests in a given period.
IntegrationLatency(props?)
metricpublic metricIntegrationLatency(props?: MetricOptions): Metric
Parameters
- props
Metric
Options
Returns
Metric for the time between when API Gateway relays a request to the backend and when it receives a response from the backend.
Latency(props?)
metricpublic metricLatency(props?: MetricOptions): Metric
Parameters
- props
Metric
Options
Returns
The time between when API Gateway receives a request from a client and when it returns a response to the client.
The latency includes the integration latency and other API Gateway overhead.
ServerError(props?)
metricpublic metricServerError(props?: MetricOptions): Metric
Parameters
- props
Metric
Options
Returns
Metric for the number of server-side errors captured in a given period.
String()
topublic toString(): string
Returns
string
Returns a string representation of this construct.
ForPath(path?)
urlpublic urlForPath(path?: string): string
Parameters
- path
string
— The resource path.
Returns
string
Returns the invoke URL for a certain path.
StageAttributes(scope, id, attrs)
static frompublic static fromStageAttributes(scope: Construct, id: string, attrs: StageAttributes): IStage
Parameters
- scope
Construct
- id
string
- attrs
Stage
Attributes
Returns
Import a Stage by its attributes.