Module Values_1.ParameterSource

An Amazon Web Services Systems Manager parameter in Parameter Store.

Sourcetype nonrec t = {
  1. name : Values_0.PSParameterName.t option;
    (*

    The name of the parameter.

    *)
  2. type_ : ParameterType.t option;
    (*

    The type of parameter. Valid values include the following: String, StringList, and SecureString. If type is StringList, the system returns a comma-separated string with no spaces between commas in the Value field.

    *)
  3. value : PSParameterValue.t option;
    (*

    The parameter value. If type is StringList, the system returns a comma-separated string with no spaces between commas in the Value field.

    *)
  4. version : PSParameterVersion.t option;
    (*

    The parameter version.

    *)
  5. selector : PSParameterSelector.t option;
    (*

    Either the version number or the label used to retrieve the parameter value. Specify selectors by using one of the following formats: parameter_name:version parameter_name:label

    *)
  6. sourceResult : Values_0.String_.t option;
    (*

    Applies to parameters that reference information in other Amazon Web Services services. SourceResult is the raw result or response from the source.

    *)
  7. lastModifiedDate : Values_0.DateTime.t option;
    (*

    Date the parameter was last changed or updated and the parameter version was created.

    *)
  8. aRN : Values_0.String_.t option;
    (*

    The Amazon Resource Name (ARN) of the parameter.

    *)
  9. dataType : ParameterDataType.t option;
    (*

    The data type of the parameter, such as text or aws:ec2:image. The default is text.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?value:??? -> ?version:??? -> ?selector:??? -> ?sourceResult:??? -> ?lastModifiedDate:??? -> ?aRN:??? -> ?dataType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of PSParameterVersion.t | `String of Values_0.PSParameterName.t | `Timestamp of Values_0.DateTime.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