Module Values_1.ParameterMetadataSource

Metadata includes information like the Amazon Resource Name (ARN) of the last user to update the parameter and the date and time the parameter was last used.

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

    The parameter name.

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

    The Amazon Resource Name (ARN) of the parameter.

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

    The type of parameter. Valid parameter types include the following: String, StringList, and SecureString.

    *)
  4. keyId : ParameterKeyId.t option;
    (*

    The alias of the Key Management Service (KMS) key used to encrypt the parameter. Applies to SecureString parameters only.

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

    Date the parameter was last changed or updated.

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

    Amazon Resource Name (ARN) of the Amazon Web Services user who last changed the parameter.

    *)
  7. description : ParameterDescription.t option;
    (*

    Description of the parameter actions.

    *)
  8. allowedPattern : Values_0.AllowedPattern.t option;
    (*

    A parameter name can include only the following letters and symbols. a-zA-Z0-9_.-

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

    The parameter version.

    *)
  10. tier : ParameterTier.t option;
    (*

    The parameter tier.

    *)
  11. policies : ParameterPolicyList.t option;
    (*

    A list of policies associated with a parameter.

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

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

    *)
}
Sourceval make : ?name:??? -> ?aRN:??? -> ?type_:??? -> ?keyId:??? -> ?lastModifiedDate:??? -> ?lastModifiedUser:??? -> ?description:??? -> ?allowedPattern:??? -> ?version:??? -> ?tier:??? -> ?policies:??? -> ?dataType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of Values_0.String_.t ]) list ] list | `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