Interface ListServiceActionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListServiceActionsResponse.Builder,ListServiceActionsResponse>,SdkBuilder<ListServiceActionsResponse.Builder,ListServiceActionsResponse>,SdkPojo,SdkResponse.Builder,ServiceCatalogResponse.Builder
- Enclosing class:
- ListServiceActionsResponse
public static interface ListServiceActionsResponse.Builder extends ServiceCatalogResponse.Builder, SdkPojo, CopyableBuilder<ListServiceActionsResponse.Builder,ListServiceActionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListServiceActionsResponse.BuildernextPageToken(String nextPageToken)The page token to use to retrieve the next set of results.ListServiceActionsResponse.BuilderserviceActionSummaries(Collection<ServiceActionSummary> serviceActionSummaries)An object containing information about the service actions associated with the provisioning artifact.ListServiceActionsResponse.BuilderserviceActionSummaries(Consumer<ServiceActionSummary.Builder>... serviceActionSummaries)An object containing information about the service actions associated with the provisioning artifact.ListServiceActionsResponse.BuilderserviceActionSummaries(ServiceActionSummary... serviceActionSummaries)An object containing information about the service actions associated with the provisioning artifact.-
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
-
Methods inherited from interface software.amazon.awssdk.services.servicecatalog.model.ServiceCatalogResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
serviceActionSummaries
ListServiceActionsResponse.Builder serviceActionSummaries(Collection<ServiceActionSummary> serviceActionSummaries)
An object containing information about the service actions associated with the provisioning artifact.
- Parameters:
serviceActionSummaries- An object containing information about the service actions associated with the provisioning artifact.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceActionSummaries
ListServiceActionsResponse.Builder serviceActionSummaries(ServiceActionSummary... serviceActionSummaries)
An object containing information about the service actions associated with the provisioning artifact.
- Parameters:
serviceActionSummaries- An object containing information about the service actions associated with the provisioning artifact.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceActionSummaries
ListServiceActionsResponse.Builder serviceActionSummaries(Consumer<ServiceActionSummary.Builder>... serviceActionSummaries)
An object containing information about the service actions associated with the provisioning artifact.
This is a convenience method that creates an instance of theServiceActionSummary.Builderavoiding the need to create one manually viaServiceActionSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#serviceActionSummaries(List.) - Parameters:
serviceActionSummaries- a consumer that will call methods onServiceActionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#serviceActionSummaries(java.util.Collection)
-
nextPageToken
ListServiceActionsResponse.Builder nextPageToken(String nextPageToken)
The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
- Parameters:
nextPageToken- The page token to use to retrieve the next set of results. If there are no additional results, this value is null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-