Module DataZone.Domain

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and single_sign_on = {
  1. type_ : string option;
  2. user_assignment : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-domain-singlesignon.html

type properties = {
  1. domain_execution_role : string;
  2. kms_key_identifier : string option;
  3. description : string option;
  4. tags : tag list option;
  5. name : string;
  6. single_sign_on : single_sign_on option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html;

val make_properties : domain_execution_role:string -> ?kms_key_identifier:string -> ?description:string -> ?tags:tag list -> name:string -> ?single_sign_on:single_sign_on -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_single_sign_on : ?type_:string -> ?user_assignment:string -> unit -> single_sign_on
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_single_sign_on : single_sign_on -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. status : string;
  3. last_updated_at : string;
  4. portal_url : string;
  5. created_at : string;
  6. id : string;
  7. managed_account_id : string;
  8. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string