interface CfnDeliveryDestinationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Logs.CfnDeliveryDestinationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#CfnDeliveryDestinationProps |
Java | software.amazon.awscdk.services.logs.CfnDeliveryDestinationProps |
Python | aws_cdk.aws_logs.CfnDeliveryDestinationProps |
TypeScript | aws-cdk-lib » aws_logs » CfnDeliveryDestinationProps |
Properties for defining a CfnDeliveryDestination
.
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-lib';
declare const deliveryDestinationPolicy: any;
const cfnDeliveryDestinationProps: logs.CfnDeliveryDestinationProps = {
name: 'name',
// the properties below are optional
deliveryDestinationPolicy: deliveryDestinationPolicy,
destinationResourceArn: 'destinationResourceArn',
outputFormat: 'outputFormat',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of this delivery destination. |
delivery | any | A structure that contains information about one delivery destination policy. |
destination | string | The ARN of the AWS destination that this delivery destination represents. |
output | string | The format of the logs that are sent to this delivery destination. |
tags? | Cfn [] | The tags that have been assigned to this delivery destination. |
name
Type:
string
The name of this delivery destination.
deliveryDestinationPolicy?
Type:
any
(optional)
A structure that contains information about one delivery destination policy.
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 delivery stream in Firehose.
outputFormat?
Type:
string
(optional)
The format of the logs that are sent to this delivery destination.
tags?
Type:
Cfn
[]
(optional)
The tags that have been assigned to this delivery destination.