Module Values_1.GetParametersResultSource

Get information about one or more parameters by specifying multiple parameter names. To get information about a single parameter, you can use the GetParameter operation instead. Parameter names can't contain spaces. The service removes any spaces specified for the beginning or end of a parameter name. If the specified name for a parameter contains spaces between characters, the request fails with a ValidationException error.

Sourcetype nonrec t = {
  1. parameters : ParameterList.t option;
    (*

    A list of details for a parameter.

    *)
  2. invalidParameters : Values_0.ParameterNameList.t option;
    (*

    A list of parameters that aren't formatted correctly or don't run during an execution.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerError of Values_0.InternalServerError.t
  2. | `InvalidKeyId of InvalidKeyId.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?parameters:??? -> ?invalidParameters:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerError of Values_0.InternalServerError.t | `InvalidKeyId of InvalidKeyId.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerError of Values_0.InternalServerError.t | `InvalidKeyId of InvalidKeyId.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string | `Structure of (string * [> `Enum of string | `Long of PSParameterVersion.t | `String of Values_0.PSParameterName.t | `Timestamp of Values_0.DateTime.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