Interface CfnWorkloadProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkloadProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:21.077Z") @Stability(Stable) public interface CfnWorkloadProps extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.wellarchitected.*;
 CfnWorkloadProps cfnWorkloadProps = CfnWorkloadProps.builder()
         .description("description")
         .environment("environment")
         .lenses(List.of("lenses"))
         .workloadName("workloadName")
         // the properties below are optional
         .accountIds(List.of("accountIds"))
         .architecturalDesign("architecturalDesign")
         .awsRegions(List.of("awsRegions"))
         .discoveryConfig(DiscoveryConfigProperty.builder()
                 .trustedAdvisorIntegrationStatus("trustedAdvisorIntegrationStatus")
                 .workloadResourceDefinition(List.of("workloadResourceDefinition"))
                 .build())
         .industry("industry")
         .industryType("industryType")
         .nonAwsRegions(List.of("nonAwsRegions"))
         .notes("notes")
         .reviewOwner("reviewOwner")
         .tags(List.of(TagsItemsProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: