Module Values.FieldSummarySource

Object for the summarized details of the field.

Sourcetype nonrec t = {
  1. fieldId : FieldId.t option;
    (*

    The unique identifier of a field.

    *)
  2. fieldArn : FieldArn.t option;
    (*

    The Amazon Resource Name (ARN) of the field.

    *)
  3. name : FieldName.t option;
    (*

    Name of the field.

    *)
  4. type_ : FieldType.t option;
    (*

    The type of a field.

    *)
  5. namespace : FieldNamespace.t option;
    (*

    The namespace of a field.

    *)
  6. attributes : FieldAttributes.t option;
    (*

    Union of field attributes.

    *)
}
Sourceval make : ?fieldId:??? -> ?fieldArn:??? -> ?name:??? -> ?type_:??? -> ?namespace:??? -> ?attributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FieldId.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t ]) list ]) list ]) 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