interface CfnWorkloadMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WellArchitected.CfnWorkloadMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswellarchitected#CfnWorkloadMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wellarchitected.CfnWorkloadMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wellarchitected.CfnWorkloadMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wellarchitected » CfnWorkloadMixinProps |
Properties for CfnWorkloadPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wellarchitected as wellarchitected } from '@aws-cdk/cfn-property-mixins';
const cfnWorkloadMixinProps: wellarchitected.CfnWorkloadMixinProps = {
accountIds: ['accountIds'],
architecturalDesign: 'architecturalDesign',
awsRegions: ['awsRegions'],
description: 'description',
discoveryConfig: {
trustedAdvisorIntegrationStatus: 'trustedAdvisorIntegrationStatus',
workloadResourceDefinition: ['workloadResourceDefinition'],
},
environment: 'environment',
industry: 'industry',
industryType: 'industryType',
lenses: ['lenses'],
nonAwsRegions: ['nonAwsRegions'],
notes: 'notes',
reviewOwner: 'reviewOwner',
tags: [{
key: 'key',
value: 'value',
}],
workloadName: 'workloadName',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | The list of Amazon Web Services account IDs associated with the workload. |
| architectural | string | The URL of the architectural design for the workload. |
| aws | string[] | The list of Amazon Web Services Regions associated with the workload. |
| description? | string | The description for the workload. |
| discovery | IResolvable | Discovery | Discovery configuration associated to the workload. |
| environment? | string | The environment for the workload. |
| industry? | string | The industry for the workload. |
| industry | string | The industry type for the workload. |
| lenses? | string[] | The list of lenses associated with the workload. |
| non | string[] | The list of non-Amazon Web Services Regions associated with the workload. |
| notes? | string | The notes associated with the workload. |
| review | string | The review owner of the workload. |
| tags? | Tags[] | The tags associated with the workload. |
| workload | string | The name of the workload. |
accountIds?
Type:
string[]
(optional)
The list of Amazon Web Services account IDs associated with the workload.
architecturalDesign?
Type:
string
(optional)
The URL of the architectural design for the workload.
awsRegions?
Type:
string[]
(optional)
The list of Amazon Web Services Regions associated with the workload.
description?
Type:
string
(optional)
The description for the workload.
discoveryConfig?
Type:
IResolvable | Discovery
(optional)
Discovery configuration associated to the workload.
environment?
Type:
string
(optional)
The environment for the workload.
industry?
Type:
string
(optional)
The industry for the workload.
industryType?
Type:
string
(optional)
The industry type for the workload.
lenses?
Type:
string[]
(optional)
The list of lenses associated with the workload.
nonAwsRegions?
Type:
string[]
(optional)
The list of non-Amazon Web Services Regions associated with the workload.
notes?
Type:
string
(optional)
The notes associated with the workload.
reviewOwner?
Type:
string
(optional)
The review owner of the workload.
tags?
Type:
Tags[]
(optional)
The tags associated with the workload.
workloadName?
Type:
string
(optional)
The name of the workload.

.NET
Go
Java
Python
TypeScript