Module Values.GetFunctionScalingConfigResponseSource

Retrieves the scaling configuration for a Lambda Managed Instances function.

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

    The Amazon Resource Name (ARN) of the function.

    *)
  2. appliedFunctionScalingConfig : FunctionScalingConfig.t option;
    (*

    The scaling configuration that is currently applied to the function. This represents the actual scaling settings in effect.

    *)
  3. requestedFunctionScalingConfig : FunctionScalingConfig.t option;
    (*

    The scaling configuration that was requested for the function.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidParameterValueException of InvalidParameterValueException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ServiceException of ServiceException.t
  4. | `TooManyRequestsException of TooManyRequestsException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?functionArn:??? -> ?appliedFunctionScalingConfig:??? -> ?requestedFunctionScalingConfig:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidParameterValueException of InvalidParameterValueException.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 | `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 * [> `Integer of FunctionScalingConfigExecutionEnvironments.t ]) 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