Module Values_1.DescribeParametersRequestSource

Lists the parameters in your Amazon Web Services account or the parameters shared with you when you enable the Shared option. Request results are returned on a best-effort basis. If you specify MaxResults in the request, the response includes information up to the limit specified. The number of items returned, however, can be between zero and the value of MaxResults. If the service reaches an internal limit while processing the results, it stops the operation and returns the matching values up to that point and a NextToken. You can specify the NextToken in a subsequent call to get the next set of results. 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. If you change the KMS key alias for the KMS key used to encrypt a parameter, then you must also update the key alias the parameter uses to reference KMS. Otherwise, DescribeParameters retrieves whatever the original key alias was referencing.

Sourcetype nonrec t = {
  1. filters : ParametersFilterList.t option;
    (*

    This data type is deprecated. Instead, use ParameterFilters.

    *)
  2. parameterFilters : ParameterStringFilterList.t option;
    (*

    Filters to limit the request results.

    *)
  3. maxResults : Values_0.MaxResults.t option;
    (*

    The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

    *)
  4. nextToken : Values_0.NextToken.t option;
    (*

    The token for the next set of items to return. (You received this token from a previous call.)

    *)
  5. shared : Values_0.Boolean.t option;
    (*

    Lists parameters that are shared with you. By default when using this option, the command returns parameters that have been shared using a standard Resource Access Manager Resource Share. In order for a parameter that was shared using the PutResourcePolicy command to be returned, the associated RAM Resource Share Created From Policy must have been promoted to a standard Resource Share using the RAM PromoteResourceShareCreatedFromPolicy API operation. For more information about sharing parameters, see Working with shared parameters in the Amazon Web Services Systems Manager User Guide.

    *)
}
Sourceval make : ?filters:??? -> ?parameterFilters:??? -> ?maxResults:??? -> ?nextToken:??? -> ?shared:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Integer of Values_0.MaxResults.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of ParametersFilterValue.t ] list | `String of ParameterStringFilterKey.t ]) list ] list | `String of Values_0.NextToken.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