Interface DescribeIndexFieldsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudSearchResponse.Builder,CopyableBuilder<DescribeIndexFieldsResponse.Builder,DescribeIndexFieldsResponse>,SdkBuilder<DescribeIndexFieldsResponse.Builder,DescribeIndexFieldsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeIndexFieldsResponse
public static interface DescribeIndexFieldsResponse.Builder extends CloudSearchResponse.Builder, SdkPojo, CopyableBuilder<DescribeIndexFieldsResponse.Builder,DescribeIndexFieldsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeIndexFieldsResponse.BuilderindexFields(Collection<IndexFieldStatus> indexFields)The index fields configured for the domain.DescribeIndexFieldsResponse.BuilderindexFields(Consumer<IndexFieldStatus.Builder>... indexFields)The index fields configured for the domain.DescribeIndexFieldsResponse.BuilderindexFields(IndexFieldStatus... indexFields)The index fields configured for the domain.-
Methods inherited from interface software.amazon.awssdk.services.cloudsearch.model.CloudSearchResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
indexFields
DescribeIndexFieldsResponse.Builder indexFields(Collection<IndexFieldStatus> indexFields)
The index fields configured for the domain.
- Parameters:
indexFields- The index fields configured for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexFields
DescribeIndexFieldsResponse.Builder indexFields(IndexFieldStatus... indexFields)
The index fields configured for the domain.
- Parameters:
indexFields- The index fields configured for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexFields
DescribeIndexFieldsResponse.Builder indexFields(Consumer<IndexFieldStatus.Builder>... indexFields)
The index fields configured for the domain.
This is a convenience method that creates an instance of theIndexFieldStatus.Builderavoiding the need to create one manually viaIndexFieldStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#indexFields(List.) - Parameters:
indexFields- a consumer that will call methods onIndexFieldStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#indexFields(java.util.Collection)
-
-