interface ExportProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_bcmdataexports.CfnExport.ExportProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbcmdataexports#CfnExport_ExportProperty |
![]() | software.amazon.awscdk.services.bcmdataexports.CfnExport.ExportProperty |
![]() | aws_cdk.aws_bcmdataexports.CfnExport.ExportProperty |
![]() | aws-cdk-lib » aws_bcmdataexports » CfnExport » ExportProperty |
The details that are available for an export.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bcmdataexports as bcmdataexports } from 'aws-cdk-lib';
const exportProperty: bcmdataexports.CfnExport.ExportProperty = {
dataQuery: {
queryStatement: 'queryStatement',
// the properties below are optional
tableConfigurations: {
tableConfigurationsKey: {
tableConfigurationsKey: 'tableConfigurations',
},
},
},
destinationConfigurations: {
s3Destination: {
s3Bucket: 's3Bucket',
s3OutputConfigurations: {
compression: 'compression',
format: 'format',
outputType: 'outputType',
overwrite: 'overwrite',
},
s3Prefix: 's3Prefix',
s3Region: 's3Region',
},
},
name: 'name',
refreshCadence: {
frequency: 'frequency',
},
// the properties below are optional
description: 'description',
exportArn: 'exportArn',
};
Properties
Name | Type | Description |
---|---|---|
data | IResolvable | Data | The data query for this specific data export. |
destination | IResolvable | Destination | The destination configuration for this specific data export. |
name | string | The name of this specific data export. |
refresh | IResolvable | Refresh | The cadence for AWS to update the export in your S3 bucket. |
description? | string | The description for this specific data export. |
export | string | The Amazon Resource Name (ARN) for this export. |
dataQuery
Type:
IResolvable
|
Data
The data query for this specific data export.
destinationConfigurations
Type:
IResolvable
|
Destination
The destination configuration for this specific data export.
name
Type:
string
The name of this specific data export.
refreshCadence
Type:
IResolvable
|
Refresh
The cadence for AWS to update the export in your S3 bucket.
description?
Type:
string
(optional)
The description for this specific data export.
exportArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for this export.