Interface ListDashboardsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListDashboardsResponse.Builder,ListDashboardsResponse>,IoTSiteWiseResponse.Builder,SdkBuilder<ListDashboardsResponse.Builder,ListDashboardsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListDashboardsResponse
public static interface ListDashboardsResponse.Builder extends IoTSiteWiseResponse.Builder, SdkPojo, CopyableBuilder<ListDashboardsResponse.Builder,ListDashboardsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListDashboardsResponse.BuilderdashboardSummaries(Collection<DashboardSummary> dashboardSummaries)A list that summarizes each dashboard in the project.ListDashboardsResponse.BuilderdashboardSummaries(Consumer<DashboardSummary.Builder>... dashboardSummaries)A list that summarizes each dashboard in the project.ListDashboardsResponse.BuilderdashboardSummaries(DashboardSummary... dashboardSummaries)A list that summarizes each dashboard in the project.ListDashboardsResponse.BuildernextToken(String nextToken)The token for the next set of results, or null if there are no additional results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iotsitewise.model.IoTSiteWiseResponse.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
-
dashboardSummaries
ListDashboardsResponse.Builder dashboardSummaries(Collection<DashboardSummary> dashboardSummaries)
A list that summarizes each dashboard in the project.
- Parameters:
dashboardSummaries- A list that summarizes each dashboard in the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dashboardSummaries
ListDashboardsResponse.Builder dashboardSummaries(DashboardSummary... dashboardSummaries)
A list that summarizes each dashboard in the project.
- Parameters:
dashboardSummaries- A list that summarizes each dashboard in the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dashboardSummaries
ListDashboardsResponse.Builder dashboardSummaries(Consumer<DashboardSummary.Builder>... dashboardSummaries)
A list that summarizes each dashboard in the project.
This is a convenience method that creates an instance of theDashboardSummary.Builderavoiding the need to create one manually viaDashboardSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dashboardSummaries(List.) - Parameters:
dashboardSummaries- a consumer that will call methods onDashboardSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dashboardSummaries(java.util.Collection)
-
nextToken
ListDashboardsResponse.Builder nextToken(String nextToken)
The token for the next set of results, or null if there are no additional results.
- Parameters:
nextToken- The token for the next set of results, or null if there are no additional results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-