Module Values.GetFieldResponseSource

Object to store detailed field information.

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

    Unique identifier of the field.

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

    Name of the field.

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

    The Amazon Resource Name (ARN) of the field.

    *)
  4. description : FieldDescription.t option;
    (*

    Description of the field.

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

    Type of the field.

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

    Namespace of the field.

    *)
  7. tags : Tags.t option;
    (*

    A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.

    *)
  8. deleted : Deleted.t option;
    (*

    Denotes whether or not the resource has been deleted.

    *)
  9. createdTime : CreatedTime.t option;
    (*

    Timestamp at which the resource was created.

    *)
  10. lastModifiedTime : LastModifiedTime.t option;
    (*

    Timestamp at which the resource was created or last modified.

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

    Union of field attributes.

    *)
}
Sourceval make : ?fieldId:??? -> ?name:??? -> ?fieldArn:??? -> ?description:??? -> ?type_:??? -> ?namespace:??? -> ?tags:??? -> ?deleted:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> ?attributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Deleted.t | `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of FieldId.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t ]) list ]) list | `Timestamp of CreatedTime.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