Interface CfnAssociationPropsMixin.AWSConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssociationPropsMixin.AWSConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAssociationPropsMixin

@Stability(Stable) public static interface CfnAssociationPropsMixin.AWSConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for AWS monitor account integration.

Specifies the account ID, assumable role ARN, and resources to be monitored in the primary monitoring account.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.*;
 Object resourceMetadata;
 AWSConfigurationProperty aWSConfigurationProperty = AWSConfigurationProperty.builder()
         .accountId("accountId")
         .accountType("accountType")
         .assumableRoleArn("assumableRoleArn")
         .resources(List.of(AWSResourceProperty.builder()
                 .resourceArn("resourceArn")
                 .resourceMetadata(resourceMetadata)
                 .resourceType("resourceType")
                 .build()))
         .tags(List.of(KeyValuePairProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: