Class: Aws::RDS::Types::DescribeEventCategoriesMessage

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

Overview

Note:

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

{
  source_type: "String",
  filters: [
    {
      name: "String", # required
      values: ["String"], # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::Filter>

This parameter is not currently supported.

Returns:



7951
7952
7953
7954
7955
# File 'lib/aws-sdk-rds/types.rb', line 7951

class DescribeEventCategoriesMessage < Struct.new(
  :source_type,
  :filters)
  include Aws::Structure
end

#source_typeString

The type of source that is generating the events.

Valid values: db-instance | db-parameter-group | db-security-group | db-snapshot

Returns:

  • (String)


7951
7952
7953
7954
7955
# File 'lib/aws-sdk-rds/types.rb', line 7951

class DescribeEventCategoriesMessage < Struct.new(
  :source_type,
  :filters)
  include Aws::Structure
end