class Amazonite::Lambda::ProvisionedConcurrencyConfigListItem

Overview

Details about the provisioned concurrency configuration for a function alias or version.

Included Modules

Defined in:

lambda/provisioned_concurrency_config_list_item.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(function_arn : String | Nil = nil, requested_provisioned_concurrent_executions : Int32 | Nil = nil, available_provisioned_concurrent_executions : Int32 | Nil = nil, allocated_provisioned_concurrent_executions : Int32 | Nil = nil, status : ProvisionedConcurrencyStatusEnum | Nil = nil, status_reason : String | Nil = nil, last_modified : 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 allocated_provisioned_concurrent_executions : Int32 | Nil #

The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions.


[View source]
def allocated_provisioned_concurrent_executions=(allocated_provisioned_concurrent_executions : Int32 | Nil) #

The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions.


[View source]
def available_provisioned_concurrent_executions : Int32 | Nil #

The amount of provisioned concurrency available.


[View source]
def available_provisioned_concurrent_executions=(available_provisioned_concurrent_executions : Int32 | Nil) #

The amount of provisioned concurrency available.


[View source]
def function_arn : String | Nil #

The Amazon Resource Name (ARN) of the alias or version.


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

The Amazon Resource Name (ARN) of the alias or version.


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

See Object#hash(hasher)


def last_modified : String | Nil #

The date and time that a user last updated the configuration, in ISO 8601 format.


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

The date and time that a user last updated the configuration, in ISO 8601 format.


[View source]
def requested_provisioned_concurrent_executions : Int32 | Nil #

The amount of provisioned concurrency requested.


[View source]
def requested_provisioned_concurrent_executions=(requested_provisioned_concurrent_executions : Int32 | Nil) #

The amount of provisioned concurrency requested.


[View source]
def status : ProvisionedConcurrencyStatusEnum | Nil #

The status of the allocation process.


[View source]
def status=(status : ProvisionedConcurrencyStatusEnum | Nil) #

The status of the allocation process.


[View source]
def status_reason : String | Nil #

For failed allocations, the reason that provisioned concurrency could not be allocated.


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

For failed allocations, the reason that provisioned concurrency could not be allocated.


[View source]
def validate! : Nil #

[View source]