Interface GetVariablesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetVariablesResponse.Builder,GetVariablesResponse>,FraudDetectorResponse.Builder,SdkBuilder<GetVariablesResponse.Builder,GetVariablesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetVariablesResponse
public static interface GetVariablesResponse.Builder extends FraudDetectorResponse.Builder, SdkPojo, CopyableBuilder<GetVariablesResponse.Builder,GetVariablesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetVariablesResponse.BuildernextToken(String nextToken)The next page token to be used in subsequent requests.GetVariablesResponse.Buildervariables(Collection<Variable> variables)The names of the variables returned.GetVariablesResponse.Buildervariables(Consumer<Variable.Builder>... variables)The names of the variables returned.GetVariablesResponse.Buildervariables(Variable... variables)The names of the variables returned.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.frauddetector.model.FraudDetectorResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
variables
GetVariablesResponse.Builder variables(Collection<Variable> variables)
The names of the variables returned.
- Parameters:
variables- The names of the variables returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
variables
GetVariablesResponse.Builder variables(Variable... variables)
The names of the variables returned.
- Parameters:
variables- The names of the variables returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
variables
GetVariablesResponse.Builder variables(Consumer<Variable.Builder>... variables)
The names of the variables returned.
This is a convenience method that creates an instance of theVariable.Builderavoiding the need to create one manually viaVariable.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#variables(List.) - Parameters:
variables- a consumer that will call methods onVariable.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#variables(java.util.Collection)
-
nextToken
GetVariablesResponse.Builder nextToken(String nextToken)
The next page token to be used in subsequent requests.
- Parameters:
nextToken- The next page token to be used in subsequent requests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-