Package software.amazon.awscdk
Interface CfnCodeDeployBlueGreenApplication
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeDeployBlueGreenApplication.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-14T03:24:51.043Z")
@Stability(Stable)
public interface CfnCodeDeployBlueGreenApplication
extends software.amazon.jsii.JsiiSerializable
The application actually being deployed.
Type of the CfnCodeDeployBlueGreenHookProps.applications
property.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; 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
Nested ClassesModifier 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
-