interface CfnDeliveryDestinationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.Mixins.CfnDeliveryDestinationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs/mixins#CfnDeliveryDestinationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.logs.mixins.CfnDeliveryDestinationMixinProps |
Python | aws_cdk.mixins_preview.aws_logs.mixins.CfnDeliveryDestinationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_logs » mixins » CfnDeliveryDestinationMixinProps |
Properties for CfnDeliveryDestinationPropsMixin.
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';
declare const deliveryDestinationPolicy: any;
const cfnDeliveryDestinationMixinProps: logs_mixins.CfnDeliveryDestinationMixinProps = {
deliveryDestinationPolicy: {
deliveryDestinationName: 'deliveryDestinationName',
deliveryDestinationPolicy: deliveryDestinationPolicy,
},
deliveryDestinationType: 'deliveryDestinationType',
destinationResourceArn: 'destinationResourceArn',
name: 'name',
outputFormat: 'outputFormat',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | IResolvable | Destination | An IAM policy that grants permissions to CloudWatch Logs to deliver logs cross-account to a specified destination in this account. |
| delivery | string | Displays whether this delivery destination is CloudWatch Logs, Amazon S3, Firehose, or X-Ray. |
| destination | string | The ARN of the AWS destination that this delivery destination represents. |
| name? | string | The name of this delivery destination. |
| output | string | The format of the logs that are sent to this delivery destination. |
| tags? | Cfn[] | An array of key-value pairs to apply to the delivery destination. |
deliveryDestinationPolicy?
Type:
IResolvable | Destination
(optional)
An IAM policy that grants permissions to CloudWatch Logs to deliver logs cross-account to a specified destination in this account.
For examples of this policy, see Examples in the CloudWatch Logs API Reference.
deliveryDestinationType?
Type:
string
(optional)
Displays whether this delivery destination is CloudWatch Logs, Amazon S3, Firehose, or X-Ray.
destinationResourceArn?
Type:
string
(optional)
The ARN of the AWS destination that this delivery destination represents.
That AWS destination can be a log group in CloudWatch Logs , an Amazon S3 bucket, or a Firehose stream.
name?
Type:
string
(optional)
The name of this delivery destination.
outputFormat?
Type:
string
(optional)
The format of the logs that are sent to this delivery destination.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to the delivery destination.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript