interface LinkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Oam.Mixins.CfnLinkPropsMixin.LinkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsoam/mixins#CfnLinkPropsMixin_LinkConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.oam.mixins.CfnLinkPropsMixin.LinkConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_oam.mixins.CfnLinkPropsMixin.LinkConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_oam » mixins » CfnLinkPropsMixin » LinkConfigurationProperty |
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 { mixins as oam_mixins } from '@aws-cdk/mixins-preview/aws-oam';
const linkConfigurationProperty: oam_mixins.CfnLinkPropsMixin.LinkConfigurationProperty = {
logGroupConfiguration: {
filter: 'filter',
},
metricConfiguration: {
filter: 'filter',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| log | IResolvable | Link | Use this structure to filter which log groups are to share log events from this source account to the monitoring account. |
| metric | IResolvable | Link | Use this structure to filter which metric namespaces are to be shared from the source account to the monitoring account. |
logGroupConfiguration?
Type:
IResolvable | Link
(optional)
Use this structure to filter which log groups are to share log events from this source account to the monitoring account.
metricConfiguration?
Type:
IResolvable | Link
(optional)
Use this structure to filter which metric namespaces are to be shared from the source account to the monitoring account.

.NET
Go
Java
Python
TypeScript