Interface CfnDeploymentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeploymentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:42.811Z")
@Stability(Stable)
public interface CfnDeploymentProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDeployment.
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.launchwizard.*;
CfnDeploymentProps cfnDeploymentProps = CfnDeploymentProps.builder()
.deploymentPatternName("deploymentPatternName")
.name("name")
.workloadName("workloadName")
// the properties below are optional
.specifications(Map.of(
"specificationsKey", "specifications"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeploymentPropsstatic final classAn implementation forCfnDeploymentProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDeploymentProps.Builderbuilder()The name of the deployment pattern.getName()The name of the deployment.default ObjectThe settings specified for the deployment.getTags()Information about the tags attached to a deployment.The name of the workload.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeploymentPatternName
The name of the deployment pattern.- See Also:
-
getName
The name of the deployment.- See Also:
-
getWorkloadName
The name of the workload.- See Also:
-
getSpecifications
The settings specified for the deployment.These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see SAP deployment specifications . To retrieve the specifications required to create a deployment for other workloads, use the
GetWorkloadDeploymentPatternoperation.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getTags
Information about the tags attached to a deployment.- See Also:
-
builder
- Returns:
- a
CfnDeploymentProps.BuilderofCfnDeploymentProps
-