Interface DescribeStreamRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<DescribeStreamRequest.Builder,DescribeStreamRequest>
,DynamoDbStreamsRequest.Builder
,SdkBuilder<DescribeStreamRequest.Builder,DescribeStreamRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- DescribeStreamRequest
public static interface DescribeStreamRequest.Builder extends DynamoDbStreamsRequest.Builder, SdkPojo, CopyableBuilder<DescribeStreamRequest.Builder,DescribeStreamRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeStreamRequest.Builder
exclusiveStartShardId(String exclusiveStartShardId)
The shard ID of the first item that this operation will evaluate.DescribeStreamRequest.Builder
limit(Integer limit)
The maximum number of shard objects to return.DescribeStreamRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
DescribeStreamRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
DescribeStreamRequest.Builder
streamArn(String streamArn)
The Amazon Resource Name (ARN) for the stream.-
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.dynamodb.model.DynamoDbStreamsRequest.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
-
streamArn
DescribeStreamRequest.Builder streamArn(String streamArn)
The Amazon Resource Name (ARN) for the stream.
- Parameters:
streamArn
- The Amazon Resource Name (ARN) for the stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
limit
DescribeStreamRequest.Builder limit(Integer limit)
The maximum number of shard objects to return. The upper limit is 100.
- Parameters:
limit
- The maximum number of shard objects to return. The upper limit is 100.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exclusiveStartShardId
DescribeStreamRequest.Builder exclusiveStartShardId(String exclusiveStartShardId)
The shard ID of the first item that this operation will evaluate. Use the value that was returned for
LastEvaluatedShardId
in the previous operation.- Parameters:
exclusiveStartShardId
- The shard ID of the first item that this operation will evaluate. Use the value that was returned forLastEvaluatedShardId
in the previous operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
DescribeStreamRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
DescribeStreamRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-