Class: Aws::BCMDashboards::Types::UpdateDashboardRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMDashboards::Types::UpdateDashboardRequest
- Defined in:
- gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the dashboard to update.
-
#description ⇒ String
The new description for the dashboard.
-
#name ⇒ String
The new name for the dashboard.
-
#widgets ⇒ Array<Types::Widget>
The updated array of widget configurations for the dashboard.
Instance Attribute Details
#arn ⇒ String
The ARN of the dashboard to update.
907 908 909 910 911 912 913 914 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 907 class UpdateDashboardRequest < Struct.new( :arn, :name, :description, :widgets) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The new description for the dashboard. If not specified, the existing description is retained.
907 908 909 910 911 912 913 914 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 907 class UpdateDashboardRequest < Struct.new( :arn, :name, :description, :widgets) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The new name for the dashboard. If not specified, the existing name is retained.
907 908 909 910 911 912 913 914 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 907 class UpdateDashboardRequest < Struct.new( :arn, :name, :description, :widgets) SENSITIVE = [] include Aws::Structure end |
#widgets ⇒ Array<Types::Widget>
The updated array of widget configurations for the dashboard. Replaces all existing widgets.
907 908 909 910 911 912 913 914 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 907 class UpdateDashboardRequest < Struct.new( :arn, :name, :description, :widgets) SENSITIVE = [] include Aws::Structure end |