Class: Aws::CodeDeploy::Types::TagFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::TagFilter
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass TagFilter data as a hash:
{
key: "Key",
value: "Value",
type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
}
Information about an on-premises instance tag filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The on-premises instance tag filter key.
-
#type ⇒ String
The on-premises instance tag filter type:.
-
#value ⇒ String
The on-premises instance tag filter value.
Instance Attribute Details
#key ⇒ String
The on-premises instance tag filter key.
5336 5337 5338 5339 5340 5341 5342 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 5336 class TagFilter < Struct.new( :key, :value, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The on-premises instance tag filter type:
KEY_ONLY: Key only.
VALUE_ONLY: Value only.
KEY_AND_VALUE: Key and value.
5336 5337 5338 5339 5340 5341 5342 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 5336 class TagFilter < Struct.new( :key, :value, :type) SENSITIVE = [] include Aws::Structure end |