Class: Aws::SSM::Types::OpsFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::OpsFilter
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
A filter for viewing OpsData summaries.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The name of the filter.
-
#type ⇒ String
The type of filter.
-
#values ⇒ Array<String>
The filter value.
Instance Attribute Details
#key ⇒ String
The name of the filter.
13778 13779 13780 13781 13782 13783 13784 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13778 class OpsFilter < Struct.new( :key, :values, :type) SENSITIVE = [] include Aws::Structure end |