interface S3DestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatasetPropsMixin.S3DestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatasetPropsMixin_S3DestinationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatasetPropsMixin.S3DestinationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatasetPropsMixin.S3DestinationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatasetPropsMixin » S3DestinationConfigurationProperty |
Configuration information for delivery of dataset contents to Amazon Simple Storage Service (Amazon S3).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const s3DestinationConfigurationProperty: iotanalytics_mixins.CfnDatasetPropsMixin.S3DestinationConfigurationProperty = {
bucket: 'bucket',
glueConfiguration: {
databaseName: 'databaseName',
tableName: 'tableName',
},
key: 'key',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the S3 bucket to which dataset contents are delivered. |
| glue | IResolvable | Glue | Configuration information for coordination with AWS Glue , a fully managed extract, transform and load (ETL) service. |
| key? | string | The key of the dataset contents object in an S3 bucket. |
| role | string | The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 and AWS Glue resources. |
bucket?
Type:
string
(optional)
The name of the S3 bucket to which dataset contents are delivered.
glueConfiguration?
Type:
IResolvable | Glue
(optional)
Configuration information for coordination with AWS Glue , a fully managed extract, transform and load (ETL) service.
key?
Type:
string
(optional)
The key of the dataset contents object in an S3 bucket.
Each object has a key that is a unique identifier. Each object has exactly one key.
You can create a unique key with the following options:
- Use
!{iotanalytics:scheduleTime}to insert the time of a scheduled SQL query run. - Use
!{iotanalytics:versionId}to insert a unique hash that identifies a dataset content. - Use
!{iotanalytics:creationTime}to insert the creation time of a dataset content.
The following example creates a unique key for a CSV file: dataset/mydataset/!{iotanalytics:scheduleTime}/!{iotanalytics:versionId}.csv
If you don't use
!{iotanalytics:versionId}to specify the key, you might get duplicate keys. For example, you might have two dataset contents with the samescheduleTimebut differentversionIds. This means that one dataset content overwrites the other.
roleArn?
Type:
string
(optional)
The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 and AWS Glue resources.

.NET
Go
Java
Python
TypeScript