@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:06.992Z") @Stability(value=Stable) public interface CfnApplicationProps 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.*;
CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
.inputs(List.of(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()))
// the properties below are optional
.applicationCode("applicationCode")
.applicationDescription("applicationDescription")
.applicationName("applicationName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationProps.Builder
A builder for
CfnApplicationProps |
static class |
CfnApplicationProps.Jsii$Proxy
An implementation for
CfnApplicationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationProps.Builder |
builder() |
default String |
getApplicationCode()
`AWS::KinesisAnalytics::Application.ApplicationCode`.
|
default String |
getApplicationDescription()
`AWS::KinesisAnalytics::Application.ApplicationDescription`.
|
default String |
getApplicationName()
`AWS::KinesisAnalytics::Application.ApplicationName`.
|
Object |
getInputs()
`AWS::KinesisAnalytics::Application.Inputs`.
|
@Stability(value=Stable) @Nullable default String getApplicationCode()
@Stability(value=Stable) @Nullable default String getApplicationDescription()
@Stability(value=Stable) @Nullable default String getApplicationName()
@Stability(value=Stable) @NotNull Object getInputs()
@Stability(value=Stable) static CfnApplicationProps.Builder builder()
CfnApplicationProps.Builder of CfnApplicationPropsCopyright © 2021. All rights reserved.