Class: Aws::CodeDeploy::Types::OnPremisesTagSet
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::OnPremisesTagSet
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass OnPremisesTagSet data as a hash:
{
on_premises_tag_set_list: [
[
{
key: "Key",
value: "Value",
type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
},
],
],
}
Information about groups of on-premises instance tags.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#on_premises_tag_set_list ⇒ Array<Array<Types::TagFilter>>
A list that contains other lists of on-premises instance tag groups.
Instance Attribute Details
#on_premises_tag_set_list ⇒ Array<Array<Types::TagFilter>>
A list that contains other lists of on-premises instance tag groups. For an instance to be included in the deployment group, it must be identified by all of the tag groups in the list.
4753 4754 4755 4756 4757 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4753 class OnPremisesTagSet < Struct.new( :on_premises_tag_set_list) SENSITIVE = [] include Aws::Structure end |