Class: Aws::APIGateway::Types::TagResourceRequest

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

Overview

Note:

When making an API call, you may pass TagResourceRequest data as a hash:

{
  resource_arn: "String", # required
  tags: { # required
    "String" => "String",
  },
}

Adds or updates a tag on a given resource.

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

[Required] The ARN of a resource that can be tagged. The resource ARN must be URL-encoded.

Returns:

  • (String)


6547
6548
6549
6550
6551
# File 'lib/aws-sdk-apigateway/types.rb', line 6547

class TagResourceRequest < Struct.new(
  :resource_arn,
  :tags)
  include Aws::Structure
end

#tagsHash<String,String>

[Required] The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with ‘aws:`. The tag value can be up to 256 characters.

Returns:

  • (Hash<String,String>)


6547
6548
6549
6550
6551
# File 'lib/aws-sdk-apigateway/types.rb', line 6547

class TagResourceRequest < Struct.new(
  :resource_arn,
  :tags)
  include Aws::Structure
end