Module Values.CreateDomainRequestSource

Creates a domain resource for the specified domain (example.com). The create domain operation supports tag-based access control via request tags. For more information, see the Amazon Lightsail Developer Guide.

Sourcetype nonrec t = {
  1. domainName : DomainName.t;
    (*

    The domain name to manage (example.com).

    *)
  2. tags : TagList.t option;
    (*

    The tag keys and optional values to add to the resource during create. Use the TagResource action to tag a resource after it's created.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> domainName:DomainName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of DomainName.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