class Amazonite::CloudWatchLogs::CreateLookupTableRequest

Included Modules

Defined in:

cloudwatch_logs/create_lookup_table_request.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(lookup_table_name : String, description : String | Nil = nil, table_body : String | Nil = nil, query_id : String | Nil = nil, kms_key_id : String | Nil = nil, tags : Hash(String, String) | Nil = nil) #

[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 description : String | Nil #

A description of the lookup table. The description can be up to 1024 characters long.


[View source]
def description=(description : String | Nil) #

A description of the lookup table. The description can be up to 1024 characters long.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def kms_key_id : String | Nil #

The ARN of the KMS key to use to encrypt the lookup table data. If you don't specify a key, the data is encrypted with an Amazon Web Services-owned key.


[View source]
def kms_key_id=(kms_key_id : String | Nil) #

The ARN of the KMS key to use to encrypt the lookup table data. If you don't specify a key, the data is encrypted with an Amazon Web Services-owned key.


[View source]
def lookup_table_name : String #

The name of the lookup table. The name must be unique within your account and Region. The name can contain only alphanumeric characters and underscores, and can be up to 256 characters long.


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

The name of the lookup table. The name must be unique within your account and Region. The name can contain only alphanumeric characters and underscores, and can be up to 256 characters long.


[View source]
def query_id : String | Nil #

The ID of a completed or cancelled CloudWatch Logs query whose results populate the lookup table. A cancelled query populates the table with the partial results that were available when the query was stopped.

You must specify either tableBody or queryId, but not both.


[View source]
def query_id=(query_id : String | Nil) #

The ID of a completed or cancelled CloudWatch Logs query whose results populate the lookup table. A cancelled query populates the table with the partial results that were available when the query was stopped.

You must specify either tableBody or queryId, but not both.


[View source]
def table_body : String | Nil #

The CSV content of the lookup table. The first row must be a header row with column names. The content must use UTF-8 encoding and not exceed 10 MB.

You must specify either tableBody or queryId, but not both.


[View source]
def table_body=(table_body : String | Nil) #

The CSV content of the lookup table. The first row must be a header row with column names. The content must use UTF-8 encoding and not exceed 10 MB.

You must specify either tableBody or queryId, but not both.


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

A list of key-value pairs to associate with the lookup table. You can associate as many as 50 tags with a lookup table. Tags can help you organize and categorize your resources.


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

A list of key-value pairs to associate with the lookup table. You can associate as many as 50 tags with a lookup table. Tags can help you organize and categorize your resources.


[View source]
def validate! : Nil #

[View source]