CfnLoggingConfigurationProps

class aws_cdk.aws_ivschat.CfnLoggingConfigurationProps(*, destination_configuration, name=None, tags=None)

Bases: object

Properties for defining a CfnLoggingConfiguration.

Parameters:
  • destination_configuration (Union[IResolvable, DestinationConfigurationProperty, Dict[str, Any]]) – The DestinationConfiguration is a complex type that contains information about where chat content will be logged.

  • name (Optional[str]) – Logging-configuration name. The value does not need to be unique.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivschat-loggingconfiguration.html

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 import aws_ivschat as ivschat

cfn_logging_configuration_props = ivschat.CfnLoggingConfigurationProps(
    destination_configuration=ivschat.CfnLoggingConfiguration.DestinationConfigurationProperty(
        cloud_watch_logs=ivschat.CfnLoggingConfiguration.CloudWatchLogsDestinationConfigurationProperty(
            log_group_name="logGroupName"
        ),
        firehose=ivschat.CfnLoggingConfiguration.FirehoseDestinationConfigurationProperty(
            delivery_stream_name="deliveryStreamName"
        ),
        s3=ivschat.CfnLoggingConfiguration.S3DestinationConfigurationProperty(
            bucket_name="bucketName"
        )
    ),

    # the properties below are optional
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

destination_configuration

The DestinationConfiguration is a complex type that contains information about where chat content will be logged.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivschat-loggingconfiguration.html#cfn-ivschat-loggingconfiguration-destinationconfiguration

name

Logging-configuration name.

The value does not need to be unique.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivschat-loggingconfiguration.html#cfn-ivschat-loggingconfiguration-name

tags

An array of key-value pairs to apply to this resource.

For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivschat-loggingconfiguration.html#cfn-ivschat-loggingconfiguration-tags