CfnExportMixinProps

class aws_cdk.mixins_preview.aws_bcmdataexports.mixins.CfnExportMixinProps(*, export=None, tags=None)

Bases: object

Properties for CfnExportPropsMixin.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bcmdataexports-export.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_bcmdataexports import mixins as bcmdataexports_mixins

cfn_export_mixin_props = bcmdataexports_mixins.CfnExportMixinProps(
    export=bcmdataexports_mixins.CfnExportPropsMixin.ExportProperty(
        data_query=bcmdataexports_mixins.CfnExportPropsMixin.DataQueryProperty(
            query_statement="queryStatement",
            table_configurations={
                "table_configurations_key": {
                    "table_configurations_key": "tableConfigurations"
                }
            }
        ),
        description="description",
        destination_configurations=bcmdataexports_mixins.CfnExportPropsMixin.DestinationConfigurationsProperty(
            s3_destination=bcmdataexports_mixins.CfnExportPropsMixin.S3DestinationProperty(
                s3_bucket="s3Bucket",
                s3_output_configurations=bcmdataexports_mixins.CfnExportPropsMixin.S3OutputConfigurationsProperty(
                    compression="compression",
                    format="format",
                    output_type="outputType",
                    overwrite="overwrite"
                ),
                s3_prefix="s3Prefix",
                s3_region="s3Region"
            )
        ),
        export_arn="exportArn",
        name="name",
        refresh_cadence=bcmdataexports_mixins.CfnExportPropsMixin.RefreshCadenceProperty(
            frequency="frequency"
        )
    ),
    tags=[bcmdataexports_mixins.CfnExportPropsMixin.ResourceTagProperty(
        key="key",
        value="value"
    )]
)

Attributes

export

The details that are available for an export.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bcmdataexports-export.html#cfn-bcmdataexports-export-export

tags

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

Type:

see