interface CfnDeploymentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LaunchWizard.CfnDeploymentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslaunchwizard#CfnDeploymentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.launchwizard.CfnDeploymentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_launchwizard.CfnDeploymentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_launchwizard » 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 { aws_launchwizard as launchwizard } from '@aws-cdk/cfn-property-mixins';
const cfnDeploymentMixinProps: launchwizard.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? | IResolvable | { [string]: string } | 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:
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.
workloadName?
Type:
string
(optional)
The name of the workload.

.NET
Go
Java
Python
TypeScript