interface FirehoseDeliveryDestinationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.FirehoseDeliveryDestinationProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs#FirehoseDeliveryDestinationProps |
Java | software.amazon.awscdk.mixins.preview.services.logs.FirehoseDeliveryDestinationProps |
Python | aws_cdk.mixins_preview.aws_logs.FirehoseDeliveryDestinationProps |
TypeScript (source) | @aws-cdk/mixins-preview ยป aws_logs ยป FirehoseDeliveryDestinationProps |
Properties for Firehose delivery destination.
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/mixins-preview';
import { aws_kinesisfirehose as interfaces_kinesisfirehose } from 'aws-cdk-lib/interfaces';
declare const deliveryStreamRef: interfaces_kinesisfirehose.IDeliveryStreamRef;
const firehoseDeliveryDestinationProps: logs.FirehoseDeliveryDestinationProps = {
deliveryStream: deliveryStreamRef,
// the properties below are optional
outputFormat: 'outputFormat',
sourceAccountId: 'sourceAccountId',
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | IDelivery | Delivery stream to delivery logs to. |
| output | string | Format of the logs that are sent to this delivery destination. |
| source | string | Optional acount id for account the delivery source is in for cross account Vended Logs. |
deliveryStream
Type:
IDelivery
Delivery stream to delivery logs to.
outputFormat?
Type:
string
(optional)
Format of the logs that are sent to this delivery destination.
sourceAccountId?
Type:
string
(optional)
Optional acount id for account the delivery source is in for cross account Vended Logs.

.NET
Go
Java
Python
TypeScript (