@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.299Z") @Stability(value=Stable) public interface CfnDeploymentProps 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.appconfig.*;
CfnDeploymentProps cfnDeploymentProps = CfnDeploymentProps.builder()
.applicationId("applicationId")
.configurationProfileId("configurationProfileId")
.configurationVersion("configurationVersion")
.deploymentStrategyId("deploymentStrategyId")
.environmentId("environmentId")
// the properties below are optional
.description("description")
.tags(List.of(TagsProperty.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeploymentProps.Builder
A builder for
CfnDeploymentProps |
static class |
CfnDeploymentProps.Jsii$Proxy
An implementation for
CfnDeploymentProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeploymentProps.Builder |
builder() |
String |
getApplicationId()
The application ID.
|
String |
getConfigurationProfileId()
The configuration profile ID.
|
String |
getConfigurationVersion()
The configuration version to deploy.
|
String |
getDeploymentStrategyId()
The deployment strategy ID.
|
default String |
getDescription()
A description of the deployment.
|
String |
getEnvironmentId()
The environment ID.
|
default List<CfnDeployment.TagsProperty> |
getTags()
Metadata to assign to the deployment.
|
@Stability(value=Stable) @NotNull String getApplicationId()
@Stability(value=Stable) @NotNull String getConfigurationProfileId()
@Stability(value=Stable) @NotNull String getConfigurationVersion()
@Stability(value=Stable) @NotNull String getDeploymentStrategyId()
@Stability(value=Stable) @NotNull String getEnvironmentId()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnDeployment.TagsProperty> getTags()
Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
@Stability(value=Stable) static CfnDeploymentProps.Builder builder()
CfnDeploymentProps.Builder of CfnDeploymentPropsCopyright © 2022. All rights reserved.