@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:04.868Z") @Stability(value=Stable) public interface CfnStageProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigatewayv2.*;
Object routeSettings;
Object stageVariables;
Object tags;
CfnStageProps cfnStageProps = CfnStageProps.builder()
.apiId("apiId")
.stageName("stageName")
// the properties below are optional
.accessLogSettings(AccessLogSettingsProperty.builder()
.destinationArn("destinationArn")
.format("format")
.build())
.accessPolicyId("accessPolicyId")
.autoDeploy(false)
.clientCertificateId("clientCertificateId")
.defaultRouteSettings(RouteSettingsProperty.builder()
.dataTraceEnabled(false)
.detailedMetricsEnabled(false)
.loggingLevel("loggingLevel")
.throttlingBurstLimit(123)
.throttlingRateLimit(123)
.build())
.deploymentId("deploymentId")
.description("description")
.routeSettings(routeSettings)
.stageVariables(stageVariables)
.tags(tags)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStageProps.Builder
A builder for
CfnStageProps |
static class |
CfnStageProps.Jsii$Proxy
An implementation for
CfnStageProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnStageProps.Builder |
builder() |
default Object |
getAccessLogSettings()
`AWS::ApiGatewayV2::Stage.AccessLogSettings`.
|
default String |
getAccessPolicyId()
`AWS::ApiGatewayV2::Stage.AccessPolicyId`.
|
String |
getApiId()
`AWS::ApiGatewayV2::Stage.ApiId`.
|
default Object |
getAutoDeploy()
`AWS::ApiGatewayV2::Stage.AutoDeploy`.
|
default String |
getClientCertificateId()
`AWS::ApiGatewayV2::Stage.ClientCertificateId`.
|
default Object |
getDefaultRouteSettings()
`AWS::ApiGatewayV2::Stage.DefaultRouteSettings`.
|
default String |
getDeploymentId()
`AWS::ApiGatewayV2::Stage.DeploymentId`.
|
default String |
getDescription()
`AWS::ApiGatewayV2::Stage.Description`.
|
default Object |
getRouteSettings()
`AWS::ApiGatewayV2::Stage.RouteSettings`.
|
String |
getStageName()
`AWS::ApiGatewayV2::Stage.StageName`.
|
default Object |
getStageVariables()
`AWS::ApiGatewayV2::Stage.StageVariables`.
|
default Object |
getTags()
`AWS::ApiGatewayV2::Stage.Tags`.
|
@Stability(value=Stable) @Nullable default Object getAccessLogSettings()
@Stability(value=Stable) @Nullable default String getAccessPolicyId()
@Stability(value=Stable) @NotNull String getApiId()
@Stability(value=Stable) @Nullable default Object getAutoDeploy()
@Stability(value=Stable) @Nullable default String getClientCertificateId()
@Stability(value=Stable) @Nullable default Object getDefaultRouteSettings()
@Stability(value=Stable) @Nullable default String getDeploymentId()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getRouteSettings()
@Stability(value=Stable) @NotNull String getStageName()
@Stability(value=Stable) @Nullable default Object getStageVariables()
@Stability(value=Stable) @Nullable default Object getTags()
@Stability(value=Stable) static CfnStageProps.Builder builder()
CfnStageProps.Builder of CfnStagePropsCopyright © 2021. All rights reserved.