Module Values.DomainSummarySource

A summary of a Amazon DataZone domain.

Sourcetype nonrec t = {
  1. id : DomainId.t option;
    (*

    The ID of the Amazon DataZone domain.

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

    A name of an Amazon DataZone domain.

    *)
  3. description : DomainDescription.t option;
    (*

    A description of an Amazon DataZone domain.

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

    The ARN of the Amazon DataZone domain.

    *)
  5. managedAccountId : String_.t option;
    (*

    The identifier of the Amazon Web Services account that manages the domain.

    *)
  6. status : DomainStatus.t option;
    (*

    The status of the Amazon DataZone domain.

    *)
  7. portalUrl : String_.t option;
    (*

    The data portal URL for the Amazon DataZone domain.

    *)
  8. createdAt : CreatedAt.t option;
    (*

    A timestamp of when a Amazon DataZone domain was created.

    *)
  9. lastUpdatedAt : UpdatedAt.t option;
    (*

    A timestamp of when a Amazon DataZone domain was last updated.

    *)
  10. domainVersion : DomainVersion.t option;
    (*

    The domain version.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?description:??? -> ?arn:??? -> ?managedAccountId:??? -> ?status:??? -> ?portalUrl:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?domainVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.t | `Timestamp of CreatedAt.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