CfnS3TableIntegrationPropsMixin

class aws_cdk.cfn_property_mixins.aws_observabilityadmin.CfnS3TableIntegrationPropsMixin(props, *, strategy=None)

Bases: Mixin

Creates an integration between CloudWatch and S3 Tables for analytics.

This integration enables querying CloudWatch telemetry data using analytics engines like Amazon Athena, Amazon Redshift, and Apache Spark.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html

CloudformationResource:

AWS::ObservabilityAdmin::S3TableIntegration

Mixin:

true

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.cfn_property_mixins import aws_observabilityadmin as observabilityadmin
import aws_cdk as cdk

# merge_strategy: cdk.IMergeStrategy

cfn_s3_table_integration_props_mixin = observabilityadmin.CfnS3TableIntegrationPropsMixin(observabilityadmin.CfnS3TableIntegrationMixinProps(
    encryption=observabilityadmin.CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty(
        kms_key_arn="kmsKeyArn",
        sse_algorithm="sseAlgorithm"
    ),
    log_sources=[observabilityadmin.CfnS3TableIntegrationPropsMixin.LogSourceProperty(
        identifier="identifier",
        name="name",
        type="type"
    )],
    role_arn="roleArn",
    tags=[cdk.CfnTag(
        key="key",
        value="value"
    )]
),
    strategy=merge_strategy
)

Create a mixin to apply properties to AWS::ObservabilityAdmin::S3TableIntegration.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['encryption', 'logSources', 'roleArn', 'tags']

Static Methods

classmethod is_mixin(x)

Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

EncryptionConfigProperty

class CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty(*, kms_key_arn=None, sse_algorithm=None)

Bases: object

Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.

Parameters:
  • kms_key_arn (Optional[str]) – The Amazon Resource Name (ARN) of the KMS key used for encryption when using customer-managed keys.

  • sse_algorithm (Optional[str]) – The server-side encryption algorithm used for encrypting data in the S3 Table integration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.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.cfn_property_mixins import aws_observabilityadmin as observabilityadmin

encryption_config_property = observabilityadmin.CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty(
    kms_key_arn="kmsKeyArn",
    sse_algorithm="sseAlgorithm"
)

Attributes

kms_key_arn

The Amazon Resource Name (ARN) of the KMS key used for encryption when using customer-managed keys.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.html#cfn-observabilityadmin-s3tableintegration-encryptionconfig-kmskeyarn

sse_algorithm

The server-side encryption algorithm used for encrypting data in the S3 Table integration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.html#cfn-observabilityadmin-s3tableintegration-encryptionconfig-ssealgorithm

LogSourceProperty

class CfnS3TableIntegrationPropsMixin.LogSourceProperty(*, identifier=None, name=None, type=None)

Bases: object

A data source with an S3 Table integration for query access in the logs namespace.

Parameters:
  • identifier (Optional[str]) – The unique identifier for the association between the data source and S3 Table integration.

  • name (Optional[str]) – The name of the data source.

  • type (Optional[str]) – The type of the data source.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.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.cfn_property_mixins import aws_observabilityadmin as observabilityadmin

log_source_property = observabilityadmin.CfnS3TableIntegrationPropsMixin.LogSourceProperty(
    identifier="identifier",
    name="name",
    type="type"
)

Attributes

identifier

The unique identifier for the association between the data source and S3 Table integration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.html#cfn-observabilityadmin-s3tableintegration-logsource-identifier

name

The name of the data source.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.html#cfn-observabilityadmin-s3tableintegration-logsource-name

type

The type of the data source.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.html#cfn-observabilityadmin-s3tableintegration-logsource-type