Class: Aws::CloudWatch::Types::PutDashboardInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::PutDashboardInput
- Defined in:
- gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dashboard_body ⇒ String
The detailed information about the dashboard in JSON format, including the widgets to include and their location on the dashboard.
-
#dashboard_name ⇒ String
The name of the dashboard.
Instance Attribute Details
#dashboard_body ⇒ String
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.
4054 4055 4056 4057 4058 4059 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 4054 class PutDashboardInput < Struct.new( :dashboard_name, :dashboard_body) SENSITIVE = [] include Aws::Structure end |
#dashboard_name ⇒ String
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.
4054 4055 4056 4057 4058 4059 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 4054 class PutDashboardInput < Struct.new( :dashboard_name, :dashboard_body) SENSITIVE = [] include Aws::Structure end |