Interface ListObjectivesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,ControlCatalogRequest.Builder,CopyableBuilder<ListObjectivesRequest.Builder,ListObjectivesRequest>,SdkBuilder<ListObjectivesRequest.Builder,ListObjectivesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListObjectivesRequest
public static interface ListObjectivesRequest.Builder extends ControlCatalogRequest.Builder, SdkPojo, CopyableBuilder<ListObjectivesRequest.Builder,ListObjectivesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ListObjectivesRequest.BuildermaxResults(Integer maxResults)The maximum number of results on a page or for an API request call.ListObjectivesRequest.BuildernextToken(String nextToken)The pagination token that's used to fetch the next set of results.default ListObjectivesRequest.BuilderobjectiveFilter(Consumer<ObjectiveFilter.Builder> objectiveFilter)An optional filter that narrows the results to a specific domain.ListObjectivesRequest.BuilderobjectiveFilter(ObjectiveFilter objectiveFilter)An optional filter that narrows the results to a specific domain.ListObjectivesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListObjectivesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.controlcatalog.model.ControlCatalogRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
maxResults
ListObjectivesRequest.Builder maxResults(Integer maxResults)
The maximum number of results on a page or for an API request call.
- Parameters:
maxResults- The maximum number of results on a page or for an API request call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListObjectivesRequest.Builder nextToken(String nextToken)
The pagination token that's used to fetch the next set of results.
- Parameters:
nextToken- The pagination token that's used to fetch the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectiveFilter
ListObjectivesRequest.Builder objectiveFilter(ObjectiveFilter objectiveFilter)
An optional filter that narrows the results to a specific domain.
This filter allows you to specify one domain ARN at a time. Passing multiple ARNs in the
ObjectiveFilterisn’t currently supported.- Parameters:
objectiveFilter- An optional filter that narrows the results to a specific domain.This filter allows you to specify one domain ARN at a time. Passing multiple ARNs in the
ObjectiveFilterisn’t currently supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectiveFilter
default ListObjectivesRequest.Builder objectiveFilter(Consumer<ObjectiveFilter.Builder> objectiveFilter)
An optional filter that narrows the results to a specific domain.
This filter allows you to specify one domain ARN at a time. Passing multiple ARNs in the
This is a convenience method that creates an instance of theObjectiveFilterisn’t currently supported.ObjectiveFilter.Builderavoiding the need to create one manually viaObjectiveFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toobjectiveFilter(ObjectiveFilter).- Parameters:
objectiveFilter- a consumer that will call methods onObjectiveFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
objectiveFilter(ObjectiveFilter)
-
overrideConfiguration
ListObjectivesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListObjectivesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-