Interface ListFeaturesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListFeaturesResponse.Builder,ListFeaturesResponse>,EvidentlyResponse.Builder,SdkBuilder<ListFeaturesResponse.Builder,ListFeaturesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListFeaturesResponse
public static interface ListFeaturesResponse.Builder extends EvidentlyResponse.Builder, SdkPojo, CopyableBuilder<ListFeaturesResponse.Builder,ListFeaturesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFeaturesResponse.Builderfeatures(Collection<FeatureSummary> features)An array of structures that contain the configuration details of the features in the specified project.ListFeaturesResponse.Builderfeatures(Consumer<FeatureSummary.Builder>... features)An array of structures that contain the configuration details of the features in the specified project.ListFeaturesResponse.Builderfeatures(FeatureSummary... features)An array of structures that contain the configuration details of the features in the specified project.ListFeaturesResponse.BuildernextToken(String nextToken)The token to use in a subsequentListFeaturesoperation to return the next set of results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.evidently.model.EvidentlyResponse.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
-
features
ListFeaturesResponse.Builder features(Collection<FeatureSummary> features)
An array of structures that contain the configuration details of the features in the specified project.
- Parameters:
features- An array of structures that contain the configuration details of the features in the specified project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
features
ListFeaturesResponse.Builder features(FeatureSummary... features)
An array of structures that contain the configuration details of the features in the specified project.
- Parameters:
features- An array of structures that contain the configuration details of the features in the specified project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
features
ListFeaturesResponse.Builder features(Consumer<FeatureSummary.Builder>... features)
An array of structures that contain the configuration details of the features in the specified project.
This is a convenience method that creates an instance of theFeatureSummary.Builderavoiding the need to create one manually viaFeatureSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#features(List.) - Parameters:
features- a consumer that will call methods onFeatureSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#features(java.util.Collection)
-
nextToken
ListFeaturesResponse.Builder nextToken(String nextToken)
The token to use in a subsequent
ListFeaturesoperation to return the next set of results.- Parameters:
nextToken- The token to use in a subsequentListFeaturesoperation to return the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-