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
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.
4633 4634 4635 4636 4637 4638 4639 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4633 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.
4633 4634 4635 4636 4637 4638 4639 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4633 class TagFilter < Struct.new( :key, :value, :type) SENSITIVE = [] include Aws::Structure end |