Module Values.CreateDomainInputSource

Creates an Amazon DataZone domain.

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

    The name of the Amazon DataZone domain.

    *)
  2. description : String_.t option;
    (*

    The description of the Amazon DataZone domain.

    *)
  3. singleSignOn : SingleSignOn.t option;
    (*

    The single-sign on configuration of the Amazon DataZone domain.

    *)
  4. domainExecutionRole : RoleArn.t option;
    (*

    The domain execution role that is created when an Amazon DataZone domain is created. The domain execution role is created in the Amazon Web Services account that houses the Amazon DataZone domain.

    *)
  5. kmsKeyIdentifier : KmsKeyArn.t option;
    (*

    The identifier of the Amazon Web Services Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.

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

    The tags specified for the Amazon DataZone domain.

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

    The version of the domain that is created.

    *)
  8. serviceRole : RoleArn.t option;
    (*

    The service role of the domain that is created.

    *)
  9. clientToken : String_.t option;
    (*

    A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?singleSignOn:??? -> ?domainExecutionRole:??? -> ?kmsKeyIdentifier:??? -> ?tags:??? -> ?domainVersion:??? -> ?serviceRole:??? -> ?clientToken:??? -> name:String_.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 | `Structure of (string * [> `Enum of string | `String of SingleSignOnIdcInstanceArnString.t ]) list ]) 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