CfnVPNConnectionEventLogsS3Props

class aws_cdk.mixins_preview.aws_ec2.mixins.CfnVPNConnectionEventLogsS3Props(*, encryption_key=None, output_format=None, record_fields=None)

Bases: object

Parameters:
  • encryption_key (Optional[IKeyRef]) – (experimental) Encrpytion key for your delivery bucket.

  • output_format (Optional[S3]) – (experimental) Format for log output, options are json,plain,w3c,parquet.

  • record_fields (Optional[Sequence[CfnVPNConnectionEventLogsRecordFields]]) – (experimental) Record fields that can be provided to a log delivery.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_ec2 import mixins as ec2_mixins
from aws_cdk.interfaces import aws_kms as interfaces_kms

# key_ref: interfaces_kms.IKeyRef

cfn_vPNConnection_event_logs_s3_props = ec2_mixins.CfnVPNConnectionEventLogsS3Props(
    encryption_key=key_ref,
    output_format=ec2_mixins.CfnVPNConnectionEventLogsOutputFormat.S3.JSON,
    record_fields=[ec2_mixins.CfnVPNConnectionEventLogsRecordFields.TIMESTAMP]
)

Attributes

encryption_key

(experimental) Encrpytion key for your delivery bucket.

Stability:

experimental

output_format

(experimental) Format for log output, options are json,plain,w3c,parquet.

Stability:

experimental

record_fields

(experimental) Record fields that can be provided to a log delivery.

Stability:

experimental