class CfnSinkPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Oam.Mixins.CfnSinkPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsoam/mixins#CfnSinkPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.oam.mixins.CfnSinkPropsMixin |
Python | aws_cdk.mixins_preview.aws_oam.mixins.CfnSinkPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_oam » mixins » CfnSinkPropsMixin |
Implements
IMixin
Extends
Mixin
Creates or updates a sink in the current account, so that it can be used as a monitoring account in CloudWatch cross-account observability.
A sink is a resource that represents an attachment point in a monitoring account, which source accounts can link to to be able to send observability data.
After you create a sink, you must create a sink policy that allows source accounts to attach to it. For more information, see PutSinkPolicy .
An account can have one sink.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-oam-sink.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as oam_mixins } from '@aws-cdk/mixins-preview/aws-oam';
declare const policy: any;
const cfnSinkPropsMixin = new oam_mixins.CfnSinkPropsMixin({
name: 'name',
policy: policy,
tags: {
tagsKey: 'tags',
},
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnSinkPropsMixin(props: CfnSinkMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Sink Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::Oam::Sink.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript