Interface ListConfigurationHistoryResponse.Builder
-
- All Superinterfaces:
ApplicationInsightsResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListConfigurationHistoryResponse.Builder,ListConfigurationHistoryResponse>,SdkBuilder<ListConfigurationHistoryResponse.Builder,ListConfigurationHistoryResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListConfigurationHistoryResponse
public static interface ListConfigurationHistoryResponse.Builder extends ApplicationInsightsResponse.Builder, SdkPojo, CopyableBuilder<ListConfigurationHistoryResponse.Builder,ListConfigurationHistoryResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListConfigurationHistoryResponse.BuildereventList(Collection<ConfigurationEvent> eventList)The list of configuration events and their corresponding details.ListConfigurationHistoryResponse.BuildereventList(Consumer<ConfigurationEvent.Builder>... eventList)The list of configuration events and their corresponding details.ListConfigurationHistoryResponse.BuildereventList(ConfigurationEvent... eventList)The list of configuration events and their corresponding details.ListConfigurationHistoryResponse.BuildernextToken(String nextToken)TheNextTokenvalue to include in a futureListConfigurationHistoryrequest.-
Methods inherited from interface software.amazon.awssdk.services.applicationinsights.model.ApplicationInsightsResponse.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
-
eventList
ListConfigurationHistoryResponse.Builder eventList(Collection<ConfigurationEvent> eventList)
The list of configuration events and their corresponding details.
- Parameters:
eventList- The list of configuration events and their corresponding details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventList
ListConfigurationHistoryResponse.Builder eventList(ConfigurationEvent... eventList)
The list of configuration events and their corresponding details.
- Parameters:
eventList- The list of configuration events and their corresponding details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventList
ListConfigurationHistoryResponse.Builder eventList(Consumer<ConfigurationEvent.Builder>... eventList)
The list of configuration events and their corresponding details.
This is a convenience method that creates an instance of theConfigurationEvent.Builderavoiding the need to create one manually viaConfigurationEvent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#eventList(List.) - Parameters:
eventList- a consumer that will call methods onConfigurationEvent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#eventList(java.util.Collection)
-
nextToken
ListConfigurationHistoryResponse.Builder nextToken(String nextToken)
The
NextTokenvalue to include in a futureListConfigurationHistoryrequest. When the results of aListConfigurationHistoryrequest exceedMaxResults, this value can be used to retrieve the next page of results. This value isnullwhen there are no more results to return.- Parameters:
nextToken- TheNextTokenvalue to include in a futureListConfigurationHistoryrequest. When the results of aListConfigurationHistoryrequest exceedMaxResults, this value can be used to retrieve the next page of results. This value isnullwhen there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-