Interface GetParametersByPathResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetParametersByPathResponse.Builder,GetParametersByPathResponse>,SdkBuilder<GetParametersByPathResponse.Builder,GetParametersByPathResponse>,SdkPojo,SdkResponse.Builder,SsmResponse.Builder
- Enclosing class:
- GetParametersByPathResponse
@Mutable @NotThreadSafe public static interface GetParametersByPathResponse.Builder extends SsmResponse.Builder, SdkPojo, CopyableBuilder<GetParametersByPathResponse.Builder,GetParametersByPathResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetParametersByPathResponse.BuildernextToken(String nextToken)The token for the next set of items to return.GetParametersByPathResponse.Builderparameters(Collection<Parameter> parameters)A list of parameters found in the specified hierarchy.GetParametersByPathResponse.Builderparameters(Consumer<Parameter.Builder>... parameters)A list of parameters found in the specified hierarchy.GetParametersByPathResponse.Builderparameters(Parameter... parameters)A list of parameters found in the specified hierarchy.-
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
-
parameters
GetParametersByPathResponse.Builder parameters(Collection<Parameter> parameters)
A list of parameters found in the specified hierarchy.
- Parameters:
parameters- A list of parameters found in the specified hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
GetParametersByPathResponse.Builder parameters(Parameter... parameters)
A list of parameters found in the specified hierarchy.
- Parameters:
parameters- A list of parameters found in the specified hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
GetParametersByPathResponse.Builder parameters(Consumer<Parameter.Builder>... parameters)
A list of parameters found in the specified hierarchy.
This is a convenience method that creates an instance of theParameter.Builderavoiding the need to create one manually viaParameter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#parameters(List.) - Parameters:
parameters- a consumer that will call methods onParameter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#parameters(java.util.Collection)
-
nextToken
GetParametersByPathResponse.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.
-
-