Module Values.CustomDataIdentifierSummarySource

Provides information about a custom data identifier.

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    The Amazon Resource Name (ARN) of the custom data identifier.

    *)
  2. createdAt : string option;
    (*

    The date and time, in UTC and extended ISO 8601 format, when the custom data identifier was created.

    *)
  3. description : string option;
    (*

    The custom description of the custom data identifier.

    *)
  4. id : string option;
    (*

    The unique identifier for the custom data identifier.

    *)
  5. name : string option;
    (*

    The custom name of the custom data identifier.

    *)
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?description:??? -> ?id:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Timestamp of string ]) 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