Package software.amazon.awscdk.core
Interface CfnCodeDeployBlueGreenApplication
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeDeployBlueGreenApplication.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:54.823Z")
@Stability(Stable)
public interface CfnCodeDeployBlueGreenApplication
extends software.amazon.jsii.JsiiSerializable
The application actually being deployed.
Type of the
property.
invalid @link
CfnCodeDeployBlueGreenHookProps.applications
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.core.*; CfnCodeDeployBlueGreenApplication cfnCodeDeployBlueGreenApplication = CfnCodeDeployBlueGreenApplication.builder() .ecsAttributes(CfnCodeDeployBlueGreenEcsAttributes.builder() .taskDefinitions(List.of("taskDefinitions")) .taskSets(List.of("taskSets")) .trafficRouting(CfnTrafficRouting.builder() .prodTrafficRoute(CfnTrafficRoute.builder() .logicalId("logicalId") .type("type") .build()) .targetGroups(List.of("targetGroups")) .testTrafficRoute(CfnTrafficRoute.builder() .logicalId("logicalId") .type("type") .build()) .build()) .build()) .target(CfnCodeDeployBlueGreenApplicationTarget.builder() .logicalId("logicalId") .type("type") .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCodeDeployBlueGreenApplication
static final class
An implementation forCfnCodeDeployBlueGreenApplication
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The detailed attributes of the deployed target.The target that is being deployed.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEcsAttributes
The detailed attributes of the deployed target. -
getTarget
The target that is being deployed. -
builder
-