Interface ListTestConfigurationsResponse.Builder
-
- All Superinterfaces:
AppTestResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListTestConfigurationsResponse.Builder,ListTestConfigurationsResponse>,SdkBuilder<ListTestConfigurationsResponse.Builder,ListTestConfigurationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTestConfigurationsResponse
public static interface ListTestConfigurationsResponse.Builder extends AppTestResponse.Builder, SdkPojo, CopyableBuilder<ListTestConfigurationsResponse.Builder,ListTestConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTestConfigurationsResponse.BuildernextToken(String nextToken)The next token in the test configurations.ListTestConfigurationsResponse.BuildertestConfigurations(Collection<TestConfigurationSummary> testConfigurations)The test configurations.ListTestConfigurationsResponse.BuildertestConfigurations(Consumer<TestConfigurationSummary.Builder>... testConfigurations)The test configurations.ListTestConfigurationsResponse.BuildertestConfigurations(TestConfigurationSummary... testConfigurations)The test configurations.-
Methods inherited from interface software.amazon.awssdk.services.apptest.model.AppTestResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
-
-
-
Method Detail
-
testConfigurations
ListTestConfigurationsResponse.Builder testConfigurations(Collection<TestConfigurationSummary> testConfigurations)
The test configurations.
- Parameters:
testConfigurations- The test configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testConfigurations
ListTestConfigurationsResponse.Builder testConfigurations(TestConfigurationSummary... testConfigurations)
The test configurations.
- Parameters:
testConfigurations- The test configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testConfigurations
ListTestConfigurationsResponse.Builder testConfigurations(Consumer<TestConfigurationSummary.Builder>... testConfigurations)
The test configurations.
This is a convenience method that creates an instance of theTestConfigurationSummary.Builderavoiding the need to create one manually viaTestConfigurationSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#testConfigurations(List.) - Parameters:
testConfigurations- a consumer that will call methods onTestConfigurationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#testConfigurations(java.util.Collection)
-
nextToken
ListTestConfigurationsResponse.Builder nextToken(String nextToken)
The next token in the test configurations.
- Parameters:
nextToken- The next token in the test configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-