Class: Aws::CodeDeploy::Types::TagFilter

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

Overview

Information about an on-premises instance tag filter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The on-premises instance tag filter key.

Returns:

  • (String)


4526
4527
4528
4529
4530
4531
4532
# File 'lib/aws-sdk-codedeploy/types.rb', line 4526

class TagFilter < Struct.new(
  :key,
  :value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The on-premises instance tag filter type:

  • KEY_ONLY: Key only.

  • VALUE_ONLY: Value only.

  • KEY_AND_VALUE: Key and value.

Returns:

  • (String)


4526
4527
4528
4529
4530
4531
4532
# File 'lib/aws-sdk-codedeploy/types.rb', line 4526

class TagFilter < Struct.new(
  :key,
  :value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The on-premises instance tag filter value.

Returns:

  • (String)


4526
4527
4528
4529
4530
4531
4532
# File 'lib/aws-sdk-codedeploy/types.rb', line 4526

class TagFilter < Struct.new(
  :key,
  :value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end