interface CfnDeploymentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.LaunchWizard.CfnDeploymentProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslaunchwizard#CfnDeploymentProps |
Java | software.amazon.awscdk.services.launchwizard.CfnDeploymentProps |
Python | aws_cdk.aws_launchwizard.CfnDeploymentProps |
TypeScript | aws-cdk-lib » aws_launchwizard » CfnDeploymentProps |
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 { aws_launchwizard as launchwizard } from 'aws-cdk-lib';
const cfnDeploymentProps: launchwizard.CfnDeploymentProps = {
deploymentPatternName: 'deploymentPatternName',
name: 'name',
workloadName: 'workloadName',
// the properties below are optional
specifications: {
specificationsKey: 'specifications',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| deployment | string | The name of the deployment pattern. |
| name | string | The name of the deployment. |
| workload | string | The name of the workload. |
| specifications? | IResolvable | { [string]: string } | The settings specified for the deployment. |
| tags? | Cfn[] | Information about the tags attached to a deployment. |
deploymentPatternName
Type:
string
The name of the deployment pattern.
name
Type:
string
The name of the deployment.
workloadName
Type:
string
The name of the workload.
specifications?
Type:
IResolvable | { [string]: string }
(optional)
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.
tags?
Type:
Cfn[]
(optional)
Information about the tags attached to a deployment.

.NET
Go
Java
Python
TypeScript