Class: Aws::CloudWatch::Types::ListDashboardsInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudwatch/types.rb

Overview

Note:

When making an API call, you may pass ListDashboardsInput data as a hash:

{
  dashboard_name_prefix: "DashboardNamePrefix",
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#dashboard_name_prefixString

If you specify this parameter, only the dashboards with names starting with the specified string are listed. The maximum length is 255, and valid characters are A-Z, a-z, 0-9, “.”, “-”, and “_”.

Returns:

  • (String)


889
890
891
892
893
# File 'lib/aws-sdk-cloudwatch/types.rb', line 889

class ListDashboardsInput < Struct.new(
  :dashboard_name_prefix,
  :next_token)
  include Aws::Structure
end

#next_tokenString

The token returned by a previous call to indicate that there is more data available.

Returns:

  • (String)


889
890
891
892
893
# File 'lib/aws-sdk-cloudwatch/types.rb', line 889

class ListDashboardsInput < Struct.new(
  :dashboard_name_prefix,
  :next_token)
  include Aws::Structure
end