Module Values.PutProvisionedConcurrencyConfigResponseSource

Adds a provisioned concurrency configuration to a function's alias or version.

Sourcetype nonrec t = {
  1. requestedProvisionedConcurrentExecutions : PositiveInteger.t option;
    (*

    The amount of provisioned concurrency requested.

    *)
  2. availableProvisionedConcurrentExecutions : NonNegativeInteger.t option;
    (*

    The amount of provisioned concurrency available.

    *)
  3. allocatedProvisionedConcurrentExecutions : NonNegativeInteger.t option;
    (*

    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.

    *)
  4. status : ProvisionedConcurrencyStatusEnum.t option;
    (*

    The status of the allocation process.

    *)
  5. statusReason : String_.t option;
    (*

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

    *)
  6. lastModified : Timestamp.t option;
    (*

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

    *)
}
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 : ?requestedProvisionedConcurrentExecutions:??? -> ?availableProvisionedConcurrentExecutions:??? -> ?allocatedProvisionedConcurrentExecutions:??? -> ?status:??? -> ?statusReason:??? -> ?lastModified:??? -> 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 * [> `Enum of string | `Integer of PositiveInteger.t | `String of String_.t ]) 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