Interface CfnDeploymentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeploymentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:00.672Z")
@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") .specifications(Map.of( "specificationsKey", "specifications")) .workloadName("workloadName") // the properties below are optional .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeploymentProps
static final class
An implementation forCfnDeploymentProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDeploymentProps.Builder
builder()
The name of the deployment pattern.getName()
The name of the deployment.The 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:
-
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
GetWorkloadDeploymentPattern
operation.- See Also:
-
getWorkloadName
The name of the workload.- See Also:
-
getTags
Information about the tags attached to a deployment.- See Also:
-
builder
- Returns:
- a
CfnDeploymentProps.Builder
ofCfnDeploymentProps
-