Interface DashboardSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DashboardSummary.Builder,DashboardSummary>,SdkBuilder<DashboardSummary.Builder,DashboardSummary>,SdkPojo
- Enclosing class:
- DashboardSummary
public static interface DashboardSummary.Builder extends SdkPojo, CopyableBuilder<DashboardSummary.Builder,DashboardSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DashboardSummary.BuildercreationDate(Instant creationDate)The date the dashboard was created, in Unix epoch time.DashboardSummary.Builderdescription(String description)The dashboard's description.DashboardSummary.Builderid(String id)The ID of the dashboard.DashboardSummary.BuilderlastUpdateDate(Instant lastUpdateDate)The date the dashboard was last updated, in Unix epoch time.DashboardSummary.Buildername(String name)The name of the dashboard-
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
-
id
DashboardSummary.Builder id(String id)
The ID of the dashboard.
- Parameters:
id- The ID of the dashboard.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
DashboardSummary.Builder name(String name)
The name of the dashboard
- Parameters:
name- The name of the dashboard- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
DashboardSummary.Builder description(String description)
The dashboard's description.
- Parameters:
description- The dashboard's description.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDate
DashboardSummary.Builder creationDate(Instant creationDate)
The date the dashboard was created, in Unix epoch time.
- Parameters:
creationDate- The date the dashboard was created, in Unix epoch time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdateDate
DashboardSummary.Builder lastUpdateDate(Instant lastUpdateDate)
The date the dashboard was last updated, in Unix epoch time.
- Parameters:
lastUpdateDate- The date the dashboard was last updated, in Unix epoch time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-