Interface KinesisAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KinesisAction.Builder,KinesisAction>,SdkBuilder<KinesisAction.Builder,KinesisAction>,SdkPojo
- Enclosing class:
- KinesisAction
public static interface KinesisAction.Builder extends SdkPojo, CopyableBuilder<KinesisAction.Builder,KinesisAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KinesisAction.BuilderpartitionKey(String partitionKey)The partition key.KinesisAction.BuilderroleArn(String roleArn)The ARN of the IAM role that grants access to the Amazon Kinesis stream.KinesisAction.BuilderstreamName(String streamName)The name of the Amazon Kinesis stream.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
roleArn
KinesisAction.Builder roleArn(String roleArn)
The ARN of the IAM role that grants access to the Amazon Kinesis stream.
- Parameters:
roleArn- The ARN of the IAM role that grants access to the Amazon Kinesis stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
streamName
KinesisAction.Builder streamName(String streamName)
The name of the Amazon Kinesis stream.
- Parameters:
streamName- The name of the Amazon Kinesis stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionKey
KinesisAction.Builder partitionKey(String partitionKey)
The partition key.
- Parameters:
partitionKey- The partition key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-