Module Greengrass.CoreDefinition

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html

type core = {
  1. sync_shadow : bool option;
  2. thing_arn : string;
  3. id : string;
  4. certificate_arn : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-coredefinition-core.html

and core_definition_version = {
  1. cores : core list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-coredefinition-coredefinitionversion.html

type properties = {
  1. initial_version : core_definition_version option;
  2. tags : Yojson.Safe.t option;
  3. name : string;
}

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

val make_properties : ?initial_version:core_definition_version -> ?tags:Yojson.Safe.t -> name:string -> unit -> properties
val make_core : ?sync_shadow:bool -> thing_arn:string -> id:string -> certificate_arn:string -> unit -> core
val make_core_definition_version : cores:core list -> unit -> core_definition_version
val yojson_of_core : core -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_core_definition_version : core_definition_version -> [> `Assoc of (string * [> `List of [> `Assoc of (string * Yojson.Safe.t) list ] list ]) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. latest_version_arn : string;
  3. id : string;
  4. arn : string;
  5. name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string