Module Wisdom.Assistant

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html

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

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

and server_side_encryption_configuration = {
  1. kms_key_id : string option;
}

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

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

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

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