CfnS3TableIntegrationPropsMixin

class aws_cdk.mixins_preview.aws_observabilityadmin.mixins.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:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview import mixins
from aws_cdk.mixins_preview.aws_observabilityadmin import mixins as observabilityadmin_mixins

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

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:

IConstruct

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)

(experimental) 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.

Stability:

experimental

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.mixins_preview.aws_observabilityadmin import mixins as observabilityadmin_mixins

encryption_config_property = observabilityadmin_mixins.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.mixins_preview.aws_observabilityadmin import mixins as observabilityadmin_mixins

log_source_property = observabilityadmin_mixins.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