class Amazonite::ApiGateway::ClientCertificate

Overview

Represents a client certificate used to configure client-side SSL authentication while sending requests to the integration endpoint.

Included Modules

Defined in:

api_gateway/client_certificate.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(client_certificate_id : String | Nil = nil, description : String | Nil = nil, pem_encoded_certificate : String | Nil = nil, created_date : Time | Nil = nil, expiration_date : Time | Nil = nil, tags : Hash(String, String) | Nil = nil) #

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

The identifier of the client certificate.


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

The identifier of the client certificate.


[View source]
def created_date : Time | Nil #

The timestamp when the client certificate was created.


[View source]
def created_date=(created_date : Time | Nil) #

The timestamp when the client certificate was created.


[View source]
def description : String | Nil #

The description of the client certificate.


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

The description of the client certificate.


[View source]
def expiration_date : Time | Nil #

The timestamp when the client certificate will expire.


[View source]
def expiration_date=(expiration_date : Time | Nil) #

The timestamp when the client certificate will expire.


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

See Object#hash(hasher)


def pem_encoded_certificate : String | Nil #

The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .


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

The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .


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

The collection of tags. Each tag element is associated with a given resource.


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

The collection of tags. Each tag element is associated with a given resource.


[View source]
def validate! : Nil #

[View source]