interface CfnDestinationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Logs.CfnDestinationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslogs#CfnDestinationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.logs.CfnDestinationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_logs.CfnDestinationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_logs » 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 { aws_logs as logs } from '@aws-cdk/cfn-property-mixins';
const cfnDestinationMixinProps: logs.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 | IRole | 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 | IStream | IDelivery | IFunction | 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 | IRole
(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 | IStream | IDelivery | IFunction
(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