Class: Aws::CodeDeploy::Types::AddTagsToOnPremisesInstancesInput

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

Overview

Represents the input of, and adds tags to, an on-premises instance operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#instance_namesArray<String>

The names of the on-premises instances to which to add tags.

Returns:

  • (Array<String>)


29
30
31
32
33
34
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 29

class AddTagsToOnPremisesInstancesInput < Struct.new(
  :tags,
  :instance_names)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

The tag key-value pairs to add to the on-premises instances.

Keys and values are both required. Keys cannot be null or empty strings. Value-only tags are not allowed.

Returns:



29
30
31
32
33
34
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 29

class AddTagsToOnPremisesInstancesInput < Struct.new(
  :tags,
  :instance_names)
  SENSITIVE = []
  include Aws::Structure
end