Class: Aws::CodeDeploy::Types::EC2TagFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::EC2TagFilter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass EC2TagFilter data as a hash:
{
key: "Key",
value: "Value",
type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
}
Information about an EC2 tag filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The tag filter key.
-
#type ⇒ String
The tag filter type:.
-
#value ⇒ String
The tag filter value.
Instance Attribute Details
#key ⇒ String
The tag filter key.
2396 2397 2398 2399 2400 2401 2402 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2396 class EC2TagFilter < Struct.new( :key, :value, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The tag filter type:
-
KEY_ONLY: Key only. -
VALUE_ONLY: Value only. -
KEY_AND_VALUE: Key and value.
2396 2397 2398 2399 2400 2401 2402 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2396 class EC2TagFilter < Struct.new( :key, :value, :type) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The tag filter value.
2396 2397 2398 2399 2400 2401 2402 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2396 class EC2TagFilter < Struct.new( :key, :value, :type) SENSITIVE = [] include Aws::Structure end |