interface CfnRouteServerPeerEventLogsS3Props
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnRouteServerPeerEventLogsS3Props |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnRouteServerPeerEventLogsS3Props |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnRouteServerPeerEventLogsS3Props |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnRouteServerPeerEventLogsS3Props |
TypeScript | @aws-cdk/mixins-preview ยป aws_ec2 ยป mixins ยป CfnRouteServerPeerEventLogsS3Props |
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';
import { aws_kms as interfaces_kms } from 'aws-cdk-lib/interfaces';
declare const keyRef: interfaces_kms.IKeyRef;
const cfnRouteServerPeerEventLogsS3Props: ec2_mixins.CfnRouteServerPeerEventLogsS3Props = {
encryptionKey: keyRef,
outputFormat: ec2_mixins.CfnRouteServerPeerEventLogsOutputFormat.S3.JSON,
recordFields: [ec2_mixins.CfnRouteServerPeerEventLogsRecordFields.STATUS],
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IKey | Encrpytion key for your delivery bucket. |
| output | S3 | Format for log output, options are json,plain,w3c,parquet. |
| record | Cfn[] | Record fields that can be provided to a log delivery. |
encryptionKey?
Type:
IKey
(optional)
Encrpytion key for your delivery bucket.
outputFormat?
Type:
S3
(optional)
Format for log output, options are json,plain,w3c,parquet.
recordFields?
Type:
Cfn[]
(optional)
Record fields that can be provided to a log delivery.

.NET
Go
Java
Python
TypeScript