Module Values.AliasConfigurationSource

Provides configuration information about a Lambda function alias.

Sourcetype nonrec t = {
  1. aliasArn : FunctionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the alias.

    *)
  2. name : Alias.t option;
    (*

    The name of the alias.

    *)
  3. functionVersion : Version.t option;
    (*

    The function version that the alias invokes.

    *)
  4. description : Description.t option;
    (*

    A description of the alias.

    *)
  5. routingConfig : AliasRoutingConfiguration.t option;
    (*

    The routing configuration of the alias.

    *)
  6. revisionId : String_.t option;
    (*

    A unique identifier that changes when you update the alias.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidParameterValueException of InvalidParameterValueException.t
  2. | `ResourceConflictException of ResourceConflictException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ServiceException of ServiceException.t
  5. | `TooManyRequestsException of TooManyRequestsException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?aliasArn:??? -> ?name:??? -> ?functionVersion:??? -> ?description:??? -> ?routingConfig:??? -> ?revisionId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidParameterValueException of InvalidParameterValueException.t | `ResourceConflictException of ResourceConflictException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceException of ServiceException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidParameterValueException of InvalidParameterValueException.t | `ResourceConflictException of ResourceConflictException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceException of ServiceException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FunctionArn.t | `Structure of (string * [> `Map of ([> `String of AdditionalVersion.t ] * [> `Double of Weight.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t