class Amazonite::ApiGateway::TagResourceRequest

Overview

Adds or updates a tag on a given resource.

Included Modules

Defined in:

api_gateway/tag_resource_request.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(resource_arn : String, tags : Hash(String, String)) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]
def self.new(*, __pull_for_json_serializable pull : JSON::PullParser) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def resource_arn : String #

The ARN of a resource that can be tagged.


[View source]
def resource_arn=(resource_arn : String) #

The ARN of a resource that can be tagged.


[View source]
def tags : Hash(String, String) #

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.


[View source]
def tags=(tags : Hash(String, String)) #

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.


[View source]
def validate! : Nil #

[View source]