Interface DescribeActivationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeActivationsResponse.Builder,DescribeActivationsResponse>,SdkBuilder<DescribeActivationsResponse.Builder,DescribeActivationsResponse>,SdkPojo,SdkResponse.Builder,SsmResponse.Builder
- Enclosing class:
- DescribeActivationsResponse
@Mutable @NotThreadSafe public static interface DescribeActivationsResponse.Builder extends SsmResponse.Builder, SdkPojo, CopyableBuilder<DescribeActivationsResponse.Builder,DescribeActivationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeActivationsResponse.BuilderactivationList(Collection<Activation> activationList)A list of activations for your Amazon Web Services account.DescribeActivationsResponse.BuilderactivationList(Consumer<Activation.Builder>... activationList)A list of activations for your Amazon Web Services account.DescribeActivationsResponse.BuilderactivationList(Activation... activationList)A list of activations for your Amazon Web Services account.DescribeActivationsResponse.BuildernextToken(String nextToken)The token for the next set of items to return.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.ssm.model.SsmResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
activationList
DescribeActivationsResponse.Builder activationList(Collection<Activation> activationList)
A list of activations for your Amazon Web Services account.
- Parameters:
activationList- A list of activations for your Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activationList
DescribeActivationsResponse.Builder activationList(Activation... activationList)
A list of activations for your Amazon Web Services account.
- Parameters:
activationList- A list of activations for your Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activationList
DescribeActivationsResponse.Builder activationList(Consumer<Activation.Builder>... activationList)
A list of activations for your Amazon Web Services account.
This is a convenience method that creates an instance of theActivation.Builderavoiding the need to create one manually viaActivation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#activationList(List.) - Parameters:
activationList- a consumer that will call methods onActivation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#activationList(java.util.Collection)
-
nextToken
DescribeActivationsResponse.Builder nextToken(String nextToken)
The token for the next set of items to return. Use this token to get the next set of results.
- Parameters:
nextToken- The token for the next set of items to return. Use this token to get the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-