class Amazonite::Lambda::UpdateAliasRequest

Included Modules

Defined in:

lambda/update_alias_request.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(function_name : String, name : String, function_version : String | Nil = nil, description : String | Nil = nil, routing_config : AliasRoutingConfiguration | Nil = nil, revision_id : String | Nil = nil) #

[View source]
def self.new(pull : JSON::PullParser) #

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

A description of the alias.


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

A description of the alias.


[View source]
def function_name : String #

The name or ARN of the Lambda function.

Name formats

  • Function name - MyFunction.

  • Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

  • Partial ARN - 123456789012:function:MyFunction.

The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.


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

The name or ARN of the Lambda function.

Name formats

  • Function name - MyFunction.

  • Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

  • Partial ARN - 123456789012:function:MyFunction.

The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.


[View source]
def function_version : String | Nil #

The function version that the alias invokes.


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

The function version that the alias invokes.


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

See Object#hash(hasher)


def name : String #

The name of the alias.


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

The name of the alias.


[View source]
def revision_id : String | Nil #

Only update the alias if the revision ID matches the ID that's specified. Use this option to avoid modifying an alias that has changed since you last read it.


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

Only update the alias if the revision ID matches the ID that's specified. Use this option to avoid modifying an alias that has changed since you last read it.


[View source]
def routing_config : AliasRoutingConfiguration | Nil #

The routing configuration of the alias.


[View source]
def routing_config=(routing_config : AliasRoutingConfiguration | Nil) #

The routing configuration of the alias.


[View source]
def validate! : Nil #

[View source]