Module Values.DomainConflictSource

Contains information about the domain conflict. Use this information to determine the affected domain, the related resource, and the affected Amazon Web Services account.

Sourcetype nonrec t = {
  1. domain : String_.t option;
    (*

    The domain used to find existing conflicts for domain configurations.

    *)
  2. resourceType : DistributionResourceType.t option;
    (*

    The CloudFront resource type that has a domain conflict.

    *)
  3. resourceId : String_.t option;
    (*

    The ID of the resource that has a domain conflict.

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

    The ID of the Amazon Web Services account for the domain conflict.

    *)
}
Sourceval make : ?domain:??? -> ?resourceType:??? -> ?resourceId:??? -> ?accountId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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