Module Values.AliasSource

Contains information about an alias.

Sourcetype nonrec t = {
  1. aliasName : AliasName.t option;
    (*

    A friendly name that you can use to refer to a key. The value must begin with alias/. Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in CloudTrail logs and other output.

    *)
  2. keyArn : KeyArn.t option;
    (*

    The KeyARN of the key associated with the alias.

    *)
}
Sourceval make : ?aliasName:??? -> ?keyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AliasName.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