CfnExportProps

class aws_cdk.aws_bcmdataexports.CfnExportProps(*, export, tags=None)

Bases: object

Properties for defining a CfnExport.

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 import aws_bcmdataexports as bcmdataexports

cfn_export_props = bcmdataexports.CfnExportProps(
    export=bcmdataexports.CfnExport.ExportProperty(
        data_query=bcmdataexports.CfnExport.DataQueryProperty(
            query_statement="queryStatement",

            # the properties below are optional
            table_configurations={
                "table_configurations_key": {
                    "table_configurations_key": "tableConfigurations"
                }
            }
        ),
        destination_configurations=bcmdataexports.CfnExport.DestinationConfigurationsProperty(
            s3_destination=bcmdataexports.CfnExport.S3DestinationProperty(
                s3_bucket="s3Bucket",
                s3_output_configurations=bcmdataexports.CfnExport.S3OutputConfigurationsProperty(
                    compression="compression",
                    format="format",
                    output_type="outputType",
                    overwrite="overwrite"
                ),
                s3_prefix="s3Prefix",
                s3_region="s3Region"
            )
        ),
        name="name",
        refresh_cadence=bcmdataexports.CfnExport.RefreshCadenceProperty(
            frequency="frequency"
        ),

        # the properties below are optional
        description="description",
        export_arn="exportArn"
    ),

    # the properties below are optional
    tags=[bcmdataexports.CfnExport.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