Interface CfnLink.LinkConfigurationProperty

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

@Stability(Stable) public static interface CfnLink.LinkConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the 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.services.oam.*;
 LinkConfigurationProperty linkConfigurationProperty = LinkConfigurationProperty.builder()
         .logGroupConfiguration(LinkFilterProperty.builder()
                 .filter("filter")
                 .build())
         .metricConfiguration(LinkFilterProperty.builder()
                 .filter("filter")
                 .build())
         .build();
 

See Also: