@Generated(value="jsii-pacmak/1.29.0 (build 41df200)", date="2021-06-02T09:54:56.897Z") @Stability(value=Experimental) public interface RestApiBaseProps extends software.amazon.jsii.JsiiSerializable
| Modifier and Type | Interface and Description |
|---|---|
static class |
RestApiBaseProps.Builder
A builder for
RestApiBaseProps |
static class |
RestApiBaseProps.Jsii$Proxy
An implementation for
RestApiBaseProps |
| Modifier and Type | Method and Description |
|---|---|
static RestApiBaseProps.Builder |
builder() |
default Boolean |
getCloudWatchRole()
(experimental) Automatically configure an AWS CloudWatch role for API Gateway.
|
default Boolean |
getDeploy()
(experimental) Indicates if a Deployment should be automatically created for this API, and recreated when the API model (resources, methods) changes.
|
default StageOptions |
getDeployOptions()
(experimental) Options for the API Gateway stage that will always point to the latest deployment when `deploy` is enabled.
|
default DomainNameOptions |
getDomainName()
(experimental) Configure a custom domain name and map it to this API.
|
default String |
getEndpointExportName()
(experimental) Export name for the CfnOutput containing the API endpoint.
|
default List<EndpointType> |
getEndpointTypes()
(experimental) A list of the endpoint types of the API.
|
default Boolean |
getFailOnWarnings()
(experimental) Indicates whether to roll back the resource if a warning occurs while API Gateway is creating the RestApi resource.
|
default Map<String,String> |
getParameters()
(experimental) Custom header parameters for the request.
|
default PolicyDocument |
getPolicy()
(experimental) A policy document that contains the permissions for this RestApi.
|
default String |
getRestApiName()
(experimental) A name for the API Gateway RestApi resource.
|
default Boolean |
getRetainDeployments()
(experimental) Retains old deployment resources when the API changes.
|
@Stability(value=Experimental) @Nullable default Boolean getCloudWatchRole()
Default: true
@Stability(value=Experimental) @Nullable default Boolean getDeploy()
Since API Gateway deployments are immutable, When this option is enabled (by default), an AWS::ApiGateway::Deployment resource will automatically created with a logical ID that hashes the API model (methods, resources and options). This means that when the model changes, the logical ID of this CloudFormation resource will change, and a new deployment will be created.
If this is set, latestDeployment will refer to the Deployment object
and deploymentStage will refer to a Stage that points to this
deployment. To customize the stage options, use the deployOptions
property.
A CloudFormation Output will also be defined with the root URL endpoint of this REST API.
Default: true
@Stability(value=Experimental) @Nullable default StageOptions getDeployOptions()
If deploy is disabled,
this value cannot be set.
Default: - Based on defaults of `StageOptions`.
@Stability(value=Experimental) @Nullable default DomainNameOptions getDomainName()
Default: - no domain name is defined, use `addDomainName` or directly define a `DomainName`.
@Stability(value=Experimental) @Nullable default String getEndpointExportName()
Default: - when no export name is given, output will be created without export
@Stability(value=Experimental) @Nullable default List<EndpointType> getEndpointTypes()
Use this property when creating an API.
Default: EndpointType.EDGE
@Stability(value=Experimental) @Nullable default Boolean getFailOnWarnings()
Default: false
@Stability(value=Experimental) @Nullable default Map<String,String> getParameters()
Default: - No parameters.
https://docs.aws.amazon.com/cli/latest/reference/apigateway/import-rest-api.html@Stability(value=Experimental) @Nullable default PolicyDocument getPolicy()
Default: - No policy.
@Stability(value=Experimental) @Nullable default String getRestApiName()
Default: - ID of the RestApi construct.
@Stability(value=Experimental) @Nullable default Boolean getRetainDeployments()
This allows manually reverting stages to point to old deployments via the AWS Console.
Default: false
@Stability(value=Experimental) static RestApiBaseProps.Builder builder()
RestApiBaseProps.Builder of RestApiBasePropsCopyright © 2021. All rights reserved.