interface CfnWorkloadProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WellArchitected.CfnWorkloadProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswellarchitected#CfnWorkloadProps |
Java | software.amazon.awscdk.services.wellarchitected.CfnWorkloadProps |
Python | aws_cdk.aws_wellarchitected.CfnWorkloadProps |
TypeScript | aws-cdk-lib » aws_wellarchitected » CfnWorkloadProps |
Properties for defining a CfnWorkload.
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-lib';
const cfnWorkloadProps: wellarchitected.CfnWorkloadProps = {
description: 'description',
environment: 'environment',
lenses: ['lenses'],
workloadName: 'workloadName',
// the properties below are optional
accountIds: ['accountIds'],
architecturalDesign: 'architecturalDesign',
awsRegions: ['awsRegions'],
discoveryConfig: {
trustedAdvisorIntegrationStatus: 'trustedAdvisorIntegrationStatus',
workloadResourceDefinition: ['workloadResourceDefinition'],
},
industry: 'industry',
industryType: 'industryType',
nonAwsRegions: ['nonAwsRegions'],
notes: 'notes',
reviewOwner: 'reviewOwner',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description for the workload. |
| environment | string | The environment for the workload. |
| lenses | string[] | The list of lenses associated with the workload. |
| workload | string | The name of the workload. |
| 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. |
| discovery | IResolvable | Discovery | Discovery configuration associated to the workload. |
| industry? | string | The industry for the workload. |
| industry | string | The industry type for 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. |
description
Type:
string
The description for the workload.
environment
Type:
string
The environment for the workload.
lenses
Type:
string[]
The list of lenses associated with the workload.
workloadName
Type:
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.
discoveryConfig?
Type:
IResolvable | Discovery
(optional)
Discovery configuration associated to the workload.
industry?
Type:
string
(optional)
The industry for the workload.
industryType?
Type:
string
(optional)
The industry type for 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.

.NET
Go
Java
Python
TypeScript