interface CfnDestinationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.Mixins.CfnDestinationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs/mixins#CfnDestinationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.logs.mixins.CfnDestinationMixinProps |
Python | aws_cdk.mixins_preview.aws_logs.mixins.CfnDestinationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_logs » mixins » CfnDestinationMixinProps |
Properties for CfnDestinationPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as logs_mixins } from '@aws-cdk/mixins-preview/aws-logs';
const cfnDestinationMixinProps: logs_mixins.CfnDestinationMixinProps = {
destinationName: 'destinationName',
destinationPolicy: 'destinationPolicy',
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
targetArn: 'targetArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The name of the destination. |
| destination | string | An IAM policy document that governs which AWS accounts can create subscription filters against this destination. |
| role | string | The ARN of an IAM role that permits CloudWatch Logs to send data to the specified AWS resource. |
| tags? | Cfn[] | The tags that have been assigned to this delivery destination. |
| target | string | The Amazon Resource Name (ARN) of the physical target where the log events are delivered (for example, a Kinesis stream). |
destinationName?
Type:
string
(optional)
The name of the destination.
destinationPolicy?
Type:
string
(optional)
An IAM policy document that governs which AWS accounts can create subscription filters against this destination.
roleArn?
Type:
string
(optional)
The ARN of an IAM role that permits CloudWatch Logs to send data to the specified AWS resource.
tags?
Type:
Cfn[]
(optional)
The tags that have been assigned to this delivery destination.
targetArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the physical target where the log events are delivered (for example, a Kinesis stream).

.NET
Go
Java
Python
TypeScript