Class: Aws::CloudWatch::Types::PutDashboardOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::PutDashboardOutput
- Defined in:
- gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dashboard_validation_messages ⇒ Array<Types::DashboardValidationMessage>
If the input for
PutDashboardwas correct and the dashboard was successfully created or modified, this result is empty.
Instance Attribute Details
#dashboard_validation_messages ⇒ Array<Types::DashboardValidationMessage>
If the input for PutDashboard was correct and the dashboard was
successfully created or modified, this result is empty.
If this result includes only warning messages, then the input was valid enough for the dashboard to be created or modified, but some elements of the dashboard might not render.
If this result includes error messages, the input was not valid and the operation failed.
3737 3738 3739 3740 3741 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 3737 class PutDashboardOutput < Struct.new( :dashboard_validation_messages) SENSITIVE = [] include Aws::Structure end |