interface AthenaDatasetDefinitionProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnProcessingJob.AthenaDatasetDefinitionProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProcessingJob_AthenaDatasetDefinitionProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnProcessingJob.AthenaDatasetDefinitionProperty |
![]() | aws_cdk.aws_sagemaker.CfnProcessingJob.AthenaDatasetDefinitionProperty |
![]() | aws-cdk-lib » aws_sagemaker » CfnProcessingJob » AthenaDatasetDefinitionProperty |
Configuration for Athena Dataset Definition input.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const athenaDatasetDefinitionProperty: sagemaker.CfnProcessingJob.AthenaDatasetDefinitionProperty = {
catalog: 'catalog',
database: 'database',
outputFormat: 'outputFormat',
outputS3Uri: 'outputS3Uri',
queryString: 'queryString',
// the properties below are optional
kmsKeyId: 'kmsKeyId',
outputCompression: 'outputCompression',
workGroup: 'workGroup',
};
Properties
Name | Type | Description |
---|---|---|
catalog | string | The name of the data catalog used in Athena query execution. |
database | string | The name of the database used in the Athena query execution. |
output | string | The data storage format for Athena query results. |
output | string | The location in Amazon S3 where Athena query results are stored. |
query | string | The SQL query statements, to be executed. |
kms | string | The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt data generated from an Athena query execution. |
output | string | The compression used for Athena query results. |
work | string | The name of the workgroup in which the Athena query is being started. |
catalog
Type:
string
The name of the data catalog used in Athena query execution.
database
Type:
string
The name of the database used in the Athena query execution.
outputFormat
Type:
string
The data storage format for Athena query results.
outputS3Uri
Type:
string
The location in Amazon S3 where Athena query results are stored.
queryString
Type:
string
The SQL query statements, to be executed.
kmsKeyId?
Type:
string
(optional)
The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt data generated from an Athena query execution.
outputCompression?
Type:
string
(optional)
The compression used for Athena query results.
workGroup?
Type:
string
(optional)
The name of the workgroup in which the Athena query is being started.