interface CfnSinkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Oam.Mixins.CfnSinkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsoam/mixins#CfnSinkMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.oam.mixins.CfnSinkMixinProps |
Python | aws_cdk.mixins_preview.aws_oam.mixins.CfnSinkMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_oam » mixins » CfnSinkMixinProps |
Properties for CfnSinkPropsMixin.
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 as oam_mixins } from '@aws-cdk/mixins-preview/aws-oam';
declare const policy: any;
const cfnSinkMixinProps: oam_mixins.CfnSinkMixinProps = {
name: 'name',
policy: policy,
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | A name for the sink. |
| policy? | any | The IAM policy that grants permissions to source accounts to link to this sink. |
| tags? | { [string]: string } | An array of key-value pairs to apply to the sink. |
name?
Type:
string
(optional)
A name for the sink.
policy?
Type:
any
(optional)
The IAM policy that grants permissions to source accounts to link to this sink.
The policy can grant permission in the following ways:
- Include organization IDs or organization paths to permit all accounts in an organization
- Include account IDs to permit the specified accounts
tags?
Type:
{ [string]: string }
(optional)
An array of key-value pairs to apply to the sink.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript