@Stability(value=Stable)
public static interface CfnApplication.InputProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
InputProperty inputProperty = InputProperty.builder()
.inputSchema(InputSchemaProperty.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())
.namePrefix("namePrefix")
// the properties below are optional
.inputParallelism(InputParallelismProperty.builder()
.count(123)
.build())
.inputProcessingConfiguration(InputProcessingConfigurationProperty.builder()
.inputLambdaProcessor(InputLambdaProcessorProperty.builder()
.resourceArn("resourceArn")
.roleArn("roleArn")
.build())
.build())
.kinesisFirehoseInput(KinesisFirehoseInputProperty.builder()
.resourceArn("resourceArn")
.roleArn("roleArn")
.build())
.kinesisStreamsInput(KinesisStreamsInputProperty.builder()
.resourceArn("resourceArn")
.roleArn("roleArn")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplication.InputProperty.Builder
A builder for
CfnApplication.InputProperty |
static class |
CfnApplication.InputProperty.Jsii$Proxy
An implementation for
CfnApplication.InputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplication.InputProperty.Builder |
builder() |
default Object |
getInputParallelism()
`CfnApplication.InputProperty.InputParallelism`.
|
default Object |
getInputProcessingConfiguration()
`CfnApplication.InputProperty.InputProcessingConfiguration`.
|
Object |
getInputSchema()
`CfnApplication.InputProperty.InputSchema`.
|
default Object |
getKinesisFirehoseInput()
`CfnApplication.InputProperty.KinesisFirehoseInput`.
|
default Object |
getKinesisStreamsInput()
`CfnApplication.InputProperty.KinesisStreamsInput`.
|
String |
getNamePrefix()
`CfnApplication.InputProperty.NamePrefix`.
|
@Stability(value=Stable) @Nullable default Object getInputParallelism()
@Stability(value=Stable) @Nullable default Object getInputProcessingConfiguration()
@Stability(value=Stable) @NotNull Object getInputSchema()
@Stability(value=Stable) @Nullable default Object getKinesisFirehoseInput()
@Stability(value=Stable) @Nullable default Object getKinesisStreamsInput()
@Stability(value=Stable) @NotNull String getNamePrefix()
@Stability(value=Stable) static CfnApplication.InputProperty.Builder builder()
Copyright © 2021. All rights reserved.