class Amazonite::EventBridge::ConnectionQueryStringParameter

Overview

Any additional query string parameter for the connection. You can include up to 100 additional query string parameters per request. Each additional parameter counts towards the event payload size, which cannot exceed 64 KB.

Included Modules

Defined in:

eventbridge/connection_query_string_parameter.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(key : String | Nil = nil, value : String | Nil = nil, is_value_secret : Bool | 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 hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def is_value_secret : Bool | Nil #

Specifies whether the value is secret.


[View source]
def is_value_secret=(is_value_secret : Bool | Nil) #

Specifies whether the value is secret.


[View source]
def key : String | Nil #

The key for a query string parameter.


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

The key for a query string parameter.


[View source]
def validate! : Nil #

[View source]
def value : String | Nil #

The value associated with the key for the query string parameter.


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

The value associated with the key for the query string parameter.


[View source]