class Amazonite::EventBridge::ConnectionHeaderParameter

Overview

Additional parameter included in the header. You can include up to 100 additional header parameters per request. An event payload cannot exceed 64 KB.

Included Modules

Defined in:

eventbridge/connection_header_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 a secret.


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

Specifies whether the value is a secret.


[View source]
def key : String | Nil #

The key for the parameter.


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

The key for the parameter.


[View source]
def validate! : Nil #

[View source]
def value : String | Nil #

The value associated with the key.


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

The value associated with the key.


[View source]