Module SageMaker.App

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html

type resource_spec = {
  1. sage_maker_image_arn : string option;
  2. instance_type : string option;
  3. sage_maker_image_version_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-app-resourcespec.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. domain_id : string;
  2. resource_spec : resource_spec option;
  3. app_type : string;
  4. tags : tag list option;
  5. user_profile_name : string;
  6. app_name : string;
}

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

val make_properties : domain_id:string -> ?resource_spec:resource_spec -> app_type:string -> ?tags:tag list -> user_profile_name:string -> app_name:string -> unit -> properties
val make_resource_spec : ?sage_maker_image_arn:string -> ?instance_type:string -> ?sage_maker_image_version_arn:string -> unit -> resource_spec
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_resource_spec : resource_spec -> [> `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. app_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string