interface CfnDeploymentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LaunchWizard.Mixins.CfnDeploymentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslaunchwizard/mixins#CfnDeploymentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.launchwizard.mixins.CfnDeploymentMixinProps |
Python | aws_cdk.mixins_preview.aws_launchwizard.mixins.CfnDeploymentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_launchwizard » mixins » CfnDeploymentMixinProps |
Properties for CfnDeploymentPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as launchwizard_mixins } from '@aws-cdk/mixins-preview/aws-launchwizard';
const cfnDeploymentMixinProps: launchwizard_mixins.CfnDeploymentMixinProps = {
deploymentPatternName: 'deploymentPatternName',
name: 'name',
specifications: {
specificationsKey: 'specifications',
},
tags: [{
key: 'key',
value: 'value',
}],
workloadName: 'workloadName',
};
Properties
| Name | Type | Description |
|---|---|---|
| deployment | string | The name of the deployment pattern. |
| name? | string | The name of the deployment. |
| specifications? | { [string]: string } | IResolvable | The settings specified for the deployment. |
| tags? | Cfn[] | Information about the tags attached to a deployment. |
| workload | string | The name of the workload. |
deploymentPatternName?
Type:
string
(optional)
The name of the deployment pattern.
name?
Type:
string
(optional)
The name of the deployment.
specifications?
Type:
{ [string]: string } | IResolvable
(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.
workloadName?
Type:
string
(optional)
The name of the workload.

.NET
Go
Java
Python
TypeScript