Module Values.CreateTargetDomainInputSource

Input for creating a new target domain.

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

    The domain name to register as a target domain.

    *)
  2. verificationMethod : DomainVerificationMethod.t;
    (*

    The method to use for verifying domain ownership. Valid values are DNS_TXT, HTTP_ROUTE, and PRIVATE_VPC.

    *)
  3. tags : TagMap.t option;
    (*

    The tags to associate with the target domain.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> targetDomainName:String_.t -> verificationMethod:DomainVerificationMethod.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `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