Class Deployment.Builder
java.lang.Object
software.amazon.awscdk.services.apigateway.Deployment.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<Deployment>
- Enclosing class:
Deployment
@Stability(Stable)
public static final class Deployment.Builder
extends Object
implements software.amazon.jsii.Builder<Deployment>
A fluent builder for
Deployment
.-
Method Summary
Modifier and TypeMethodDescriptionThe Rest API to deploy.build()
static Deployment.Builder
description
(String description) A description of the purpose of the API Gateway deployment.retainDeployments
(Boolean retainDeployments) When an API Gateway model is updated, a new deployment will automatically be created.
-
Method Details
-
create
@Stability(Stable) public static Deployment.Builder create(software.constructs.Construct scope, String id) - Parameters:
scope
- This parameter is required.id
- This parameter is required.- Returns:
- a new instance of
Deployment.Builder
.
-
api
The Rest API to deploy.- Parameters:
api
- The Rest API to deploy. This parameter is required.- Returns:
this
-
description
A description of the purpose of the API Gateway deployment.Default: - No description.
- Parameters:
description
- A description of the purpose of the API Gateway deployment. This parameter is required.- Returns:
this
-
retainDeployments
When an API Gateway model is updated, a new deployment will automatically be created.If this is true, the old API Gateway Deployment resource will not be deleted. This will allow manually reverting back to a previous deployment in case for example
Default: false
- Parameters:
retainDeployments
- When an API Gateway model is updated, a new deployment will automatically be created. This parameter is required.- Returns:
this
-
build
- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<Deployment>
- Returns:
- a newly built instance of
Deployment
.
-