Interface AddApplicationOutputRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<AddApplicationOutputRequest.Builder,AddApplicationOutputRequest>,KinesisAnalyticsRequest.Builder,SdkBuilder<AddApplicationOutputRequest.Builder,AddApplicationOutputRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- AddApplicationOutputRequest
public static interface AddApplicationOutputRequest.Builder extends KinesisAnalyticsRequest.Builder, SdkPojo, CopyableBuilder<AddApplicationOutputRequest.Builder,AddApplicationOutputRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AddApplicationOutputRequest.BuilderapplicationName(String applicationName)Name of the application to which you want to add the output configuration.AddApplicationOutputRequest.BuildercurrentApplicationVersionId(Long currentApplicationVersionId)Version of the application to which you want to add the output configuration.default AddApplicationOutputRequest.Builderoutput(Consumer<Output.Builder> output)An array of objects, each describing one output configuration.AddApplicationOutputRequest.Builderoutput(Output output)An array of objects, each describing one output configuration.AddApplicationOutputRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)AddApplicationOutputRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.kinesisanalytics.model.KinesisAnalyticsRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
applicationName
AddApplicationOutputRequest.Builder applicationName(String applicationName)
Name of the application to which you want to add the output configuration.
- Parameters:
applicationName- Name of the application to which you want to add the output configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
currentApplicationVersionId
AddApplicationOutputRequest.Builder currentApplicationVersionId(Long currentApplicationVersionId)
Version of the application to which you want to add the output configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the
ConcurrentModificationExceptionis returned.- Parameters:
currentApplicationVersionId- Version of the application to which you want to add the output configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, theConcurrentModificationExceptionis returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
output
AddApplicationOutputRequest.Builder output(Output output)
An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, or an AWS Lambda function), and record the formation to use when writing to the destination.
- Parameters:
output- An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, or an AWS Lambda function), and record the formation to use when writing to the destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
output
default AddApplicationOutputRequest.Builder output(Consumer<Output.Builder> output)
An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, or an AWS Lambda function), and record the formation to use when writing to the destination.
This is a convenience method that creates an instance of theOutput.Builderavoiding the need to create one manually viaOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooutput(Output).- Parameters:
output- a consumer that will call methods onOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
output(Output)
-
overrideConfiguration
AddApplicationOutputRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
AddApplicationOutputRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-