Interface PutDashboardRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CloudWatchRequest.Builder,CopyableBuilder<PutDashboardRequest.Builder,PutDashboardRequest>,SdkBuilder<PutDashboardRequest.Builder,PutDashboardRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PutDashboardRequest
@Mutable @NotThreadSafe public static interface PutDashboardRequest.Builder extends CloudWatchRequest.Builder, SdkPojo, CopyableBuilder<PutDashboardRequest.Builder,PutDashboardRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutDashboardRequest.BuilderdashboardBody(String dashboardBody)The detailed information about the dashboard in JSON format, including the widgets to include and their location on the dashboard.PutDashboardRequest.BuilderdashboardName(String dashboardName)The name of the dashboard.PutDashboardRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutDashboardRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cloudwatch.model.CloudWatchRequest.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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
dashboardName
PutDashboardRequest.Builder dashboardName(String dashboardName)
The name of the dashboard. If a dashboard with this name already exists, this call modifies that dashboard, replacing its current contents. Otherwise, a new dashboard is created. The maximum length is 255, and valid characters are A-Z, a-z, 0-9, "-", and "_". This parameter is required.
- Parameters:
dashboardName- The name of the dashboard. If a dashboard with this name already exists, this call modifies that dashboard, replacing its current contents. Otherwise, a new dashboard is created. The maximum length is 255, and valid characters are A-Z, a-z, 0-9, "-", and "_". This parameter is required.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dashboardBody
PutDashboardRequest.Builder dashboardBody(String dashboardBody)
The detailed information about the dashboard in JSON format, including the widgets to include and their location on the dashboard. This parameter is required.
For more information about the syntax, see Dashboard Body Structure and Syntax.
- Parameters:
dashboardBody- The detailed information about the dashboard in JSON format, including the widgets to include and their location on the dashboard. This parameter is required.For more information about the syntax, see Dashboard Body Structure and Syntax.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
PutDashboardRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutDashboardRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-