Interface CfnApplicationReferenceDataSource.MappingParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationReferenceDataSource.MappingParametersProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationReferenceDataSource
@Stability(Stable)
public static interface CfnApplicationReferenceDataSource.MappingParametersProperty
extends software.amazon.jsii.JsiiSerializable
When you configure a SQL-based Kinesis Data Analytics application's input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.
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.kinesisanalyticsv2.*; MappingParametersProperty mappingParametersProperty = MappingParametersProperty.builder() .csvMappingParameters(CSVMappingParametersProperty.builder() .recordColumnDelimiter("recordColumnDelimiter") .recordRowDelimiter("recordRowDelimiter") .build()) .jsonMappingParameters(JSONMappingParametersProperty.builder() .recordRowPath("recordRowPath") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnApplicationReferenceDataSource.MappingParametersProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCsvMappingParameters
Provides additional mapping information when the record format uses delimiters (for example, CSV).- See Also:
-
getJsonMappingParameters
Provides additional mapping information when JSON is the record format on the streaming source.- See Also:
-
builder
@Stability(Stable) static CfnApplicationReferenceDataSource.MappingParametersProperty.Builder builder()
-