Module Panorama.ApplicationInstance

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html

type manifest_overrides_payload = {
  1. payload_data : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-panorama-applicationinstance-manifestoverridespayload.html

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

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

and manifest_payload = {
  1. payload_data : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-panorama-applicationinstance-manifestpayload.html

type properties = {
  1. default_runtime_context_device : string;
  2. description : string option;
  3. application_instance_id_to_replace : string option;
  4. manifest_overrides_payload : manifest_overrides_payload option;
  5. runtime_role_arn : string option;
  6. manifest_payload : manifest_payload;
  7. tags : tag list option;
  8. name : string option;
}

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

val make_properties : default_runtime_context_device:string -> ?description:string -> ?application_instance_id_to_replace:string -> ?manifest_overrides_payload:manifest_overrides_payload -> ?runtime_role_arn:string -> manifest_payload:manifest_payload -> ?tags:tag list -> ?name:string -> unit -> properties
val make_manifest_overrides_payload : ?payload_data:string -> unit -> manifest_overrides_payload
val make_tag : value:string -> key:string -> unit -> tag
val make_manifest_payload : ?payload_data:string -> unit -> manifest_payload
val yojson_of_manifest_overrides_payload : manifest_overrides_payload -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_manifest_payload : manifest_payload -> [> `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. default_runtime_context_device_name : string;
  3. status : string;
  4. application_instance_id : string;
  5. created_time : int;
  6. status_description : string;
  7. health_status : string;
  8. last_updated_time : int;
  9. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string