Module VoiceID.Domain

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

type server_side_encryption_configuration = {
  1. kms_key_id : string;
}

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

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

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

type properties = {
  1. description : string option;
  2. server_side_encryption_configuration : server_side_encryption_configuration;
  3. tags : tag list option;
  4. name : string;
}

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

val make_properties : ?description:string -> server_side_encryption_configuration:server_side_encryption_configuration -> ?tags:tag list -> name:string -> unit -> properties
val make_server_side_encryption_configuration : kms_key_id:string -> unit -> server_side_encryption_configuration
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_server_side_encryption_configuration : server_side_encryption_configuration -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `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. domain_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string