Module EC2.VerifiedAccessGroup

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccessgroup.html

type sse_specification = {
  1. customer_managed_key_enabled : bool option;
  2. kms_key_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessgroup-ssespecification.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. policy_document : string option;
  3. sse_specification : sse_specification option;
  4. verified_access_instance_id : string;
  5. tags : tag list option;
  6. policy_enabled : bool option;
}

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

val make_properties : ?description:string -> ?policy_document:string -> ?sse_specification:sse_specification -> verified_access_instance_id:string -> ?tags:tag list -> ?policy_enabled:bool -> unit -> properties
val make_sse_specification : ?customer_managed_key_enabled:bool -> ?kms_key_arn:string -> unit -> sse_specification
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_sse_specification : sse_specification -> [> `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. owner : string;
  3. creation_time : string;
  4. last_updated_time : string;
  5. verified_access_group_id : string;
  6. verified_access_group_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string