Module Values_0.AttachmentReferenceSource

Information about a reference when the referenceType is ATTACHMENT. Otherwise, null.

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

    Identifier of the attachment reference.

    *)
  2. value : ReferenceValue.t option;
    (*

    The location path of the attachment reference.

    *)
  3. status : ReferenceStatus.t option;
    (*

    Status of the attachment reference type.

    *)
  4. arn : ReferenceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the attachment reference.

    *)
}
Sourceval make : ?name:??? -> ?value:??? -> ?status:??? -> ?arn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ReferenceKey.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