interface CfnRouteServerPeerEventLogsFirehoseProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnRouteServerPeerEventLogsFirehoseProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnRouteServerPeerEventLogsFirehoseProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnRouteServerPeerEventLogsFirehoseProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnRouteServerPeerEventLogsFirehoseProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_ec2 ยป mixins ยป CfnRouteServerPeerEventLogsFirehoseProps |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnRouteServerPeerEventLogsFirehoseProps: ec2_mixins.CfnRouteServerPeerEventLogsFirehoseProps = {
outputFormat: ec2_mixins.CfnRouteServerPeerEventLogsOutputFormat.Firehose.JSON,
recordFields: [ec2_mixins.CfnRouteServerPeerEventLogsRecordFields.STATUS],
};
Properties
| Name | Type | Description |
|---|---|---|
| output | Firehose | Format for log output, options are json,plain,raw. |
| record | Cfn[] | Record fields that can be provided to a log delivery. |
outputFormat?
Type:
Firehose
(optional)
Format for log output, options are json,plain,raw.
recordFields?
Type:
Cfn[]
(optional)
Record fields that can be provided to a log delivery.

.NET
Go
Java
Python
TypeScript