@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.223Z") @Stability(value=Stable) public interface CfnApplicationReferenceDataSourceV2Props extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kinesisanalytics.*;
CfnApplicationReferenceDataSourceV2Props cfnApplicationReferenceDataSourceV2Props = CfnApplicationReferenceDataSourceV2Props.builder()
.applicationName("applicationName")
.referenceDataSource(ReferenceDataSourceProperty.builder()
.referenceSchema(ReferenceSchemaProperty.builder()
.recordColumns(List.of(RecordColumnProperty.builder()
.name("name")
.sqlType("sqlType")
// the properties below are optional
.mapping("mapping")
.build()))
.recordFormat(RecordFormatProperty.builder()
.recordFormatType("recordFormatType")
// the properties below are optional
.mappingParameters(MappingParametersProperty.builder()
.csvMappingParameters(CSVMappingParametersProperty.builder()
.recordColumnDelimiter("recordColumnDelimiter")
.recordRowDelimiter("recordRowDelimiter")
.build())
.jsonMappingParameters(JSONMappingParametersProperty.builder()
.recordRowPath("recordRowPath")
.build())
.build())
.build())
// the properties below are optional
.recordEncoding("recordEncoding")
.build())
// the properties below are optional
.s3ReferenceDataSource(S3ReferenceDataSourceProperty.builder()
.bucketArn("bucketArn")
.fileKey("fileKey")
.build())
.tableName("tableName")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationReferenceDataSourceV2Props.Builder
A builder for
CfnApplicationReferenceDataSourceV2Props |
static class |
CfnApplicationReferenceDataSourceV2Props.Jsii$Proxy
An implementation for
CfnApplicationReferenceDataSourceV2Props |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationReferenceDataSourceV2Props.Builder |
builder() |
String |
getApplicationName()
The name of the application.
|
Object |
getReferenceDataSource()
For a SQL-based Kinesis Data Analytics application, describes the reference data source by providing the source information (Amazon S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.
|
@Stability(value=Stable) @NotNull String getApplicationName()
@Stability(value=Stable) @NotNull Object getReferenceDataSource()
@Stability(value=Stable) static CfnApplicationReferenceDataSourceV2Props.Builder builder()
Copyright © 2022. All rights reserved.