Class CfnApplicationPropsMixin
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.kinesisanalytics.CfnApplicationPropsMixin
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable,software.constructs.IMixin
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:21.794Z")
@Stability(Stable)
public class CfnApplicationPropsMixin
extends Mixin
implements software.constructs.IMixin
The
AWS::KinesisAnalytics::Application resource creates an Amazon Kinesis Data Analytics application.
For more information, see the Amazon Kinesis Data Analytics Developer Guide .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.kinesisanalytics.*;
import software.amazon.awscdk.*;
IMergeStrategy mergeStrategy;
CfnApplicationPropsMixin cfnApplicationPropsMixin = CfnApplicationPropsMixin.Builder.create(CfnApplicationMixinProps.builder()
.applicationCode("applicationCode")
.applicationDescription("applicationDescription")
.applicationName("applicationName")
.inputs(List.of(InputProperty.builder()
.inputParallelism(InputParallelismProperty.builder()
.count(123)
.build())
.inputProcessingConfiguration(InputProcessingConfigurationProperty.builder()
.inputLambdaProcessor(InputLambdaProcessorProperty.builder()
.resourceArn("resourceArn")
.roleArn("roleArn")
.build())
.build())
.inputSchema(InputSchemaProperty.builder()
.recordColumns(List.of(RecordColumnProperty.builder()
.mapping("mapping")
.name("name")
.sqlType("sqlType")
.build()))
.recordEncoding("recordEncoding")
.recordFormat(RecordFormatProperty.builder()
.mappingParameters(MappingParametersProperty.builder()
.csvMappingParameters(CSVMappingParametersProperty.builder()
.recordColumnDelimiter("recordColumnDelimiter")
.recordRowDelimiter("recordRowDelimiter")
.build())
.jsonMappingParameters(JSONMappingParametersProperty.builder()
.recordRowPath("recordRowPath")
.build())
.build())
.recordFormatType("recordFormatType")
.build())
.build())
.kinesisFirehoseInput(KinesisFirehoseInputProperty.builder()
.resourceArn("resourceArn")
.roleArn("roleArn")
.build())
.kinesisStreamsInput(KinesisStreamsInputProperty.builder()
.resourceArn("resourceArn")
.roleArn("roleArn")
.build())
.namePrefix("namePrefix")
.build()))
.build())
.strategy(mergeStrategy)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnApplicationPropsMixin.static interfaceProvides additional mapping information when the record format uses delimiters, such as CSV.static interfaceAn object that contains the Amazon Resource Name (ARN) of the AWS Lambda function that is used to preprocess records in the stream, and the ARN of the IAM role that is used to access the AWS Lambda function.static interfaceDescribes the number of in-application streams to create for a given streaming source.static interfaceProvides a description of a processor that is used to preprocess the records in the stream before being processed by your application code.static interfaceWhen you configure the application input, you specify the streaming source, the in-application stream name that is created, and the mapping between the two.static interfaceDescribes the format of the data in the streaming source, and how each data element maps to corresponding columns in the in-application stream that is being created.static interfaceProvides additional mapping information when JSON is the record format on the streaming source.static interfaceIdentifies an Amazon Kinesis Firehose delivery stream as the streaming source.static interfaceIdentifies an Amazon Kinesis stream as the streaming source.static interfaceWhen configuring application 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.static interfaceDescribes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.static interfaceDescribes the record format and relevant mapping information that should be applied to schematize the records on the stream.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IMixin
software.constructs.IMixin.Jsii$Default, software.constructs.IMixin.Jsii$Proxy -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreate a mixin to apply properties toAWS::KinesisAnalytics::Application.CfnApplicationPropsMixin(CfnApplicationMixinProps props, CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::KinesisAnalytics::Application.protectedCfnApplicationPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnApplicationPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyTo(software.constructs.IConstruct construct) Apply the mixin properties to the construct.protected CfnApplicationMixinPropsgetProps()protected IMergeStrategysupports(software.constructs.IConstruct construct) Check if this mixin supports the given construct.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_PROPERTY_KEYS
-
-
Constructor Details
-
CfnApplicationPropsMixin
protected CfnApplicationPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
CfnApplicationPropsMixin
protected CfnApplicationPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnApplicationPropsMixin
@Stability(Stable) public CfnApplicationPropsMixin(@NotNull CfnApplicationMixinProps props, @Nullable CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::KinesisAnalytics::Application.- Parameters:
props- L1 properties to apply. This parameter is required.options- Mixin options.
-
CfnApplicationPropsMixin
Create a mixin to apply properties toAWS::KinesisAnalytics::Application.- Parameters:
props- L1 properties to apply. This parameter is required.
-
-
Method Details
-
applyTo
@Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct) Apply the mixin properties to the construct. -
supports
@Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct) Check if this mixin supports the given construct. -
getProps
-
getStrategy
-