Module EC2.VerifiedAccessEndpoint

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

type load_balancer_options = {
  1. load_balancer_arn : string option;
  2. port : int option;
  3. protocol : string option;
  4. subnet_ids : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-loadbalanceroptions.html

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

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

and 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-verifiedaccessendpoint-ssespecification.html

and network_interface_options = {
  1. port : int option;
  2. network_interface_id : string option;
  3. protocol : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-networkinterfaceoptions.html

type properties = {
  1. attachment_type : string;
  2. description : string option;
  3. domain_certificate_arn : string;
  4. verified_access_group_id : string;
  5. security_group_ids : string list option;
  6. load_balancer_options : load_balancer_options option;
  7. application_domain : string;
  8. policy_enabled : bool option;
  9. endpoint_domain_prefix : string;
  10. endpoint_type : string;
  11. policy_document : string option;
  12. sse_specification : sse_specification option;
  13. tags : tag list option;
  14. network_interface_options : network_interface_options option;
}

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

val make_properties : attachment_type:string -> ?description:string -> domain_certificate_arn:string -> verified_access_group_id:string -> ?security_group_ids:string list -> ?load_balancer_options:load_balancer_options -> application_domain:string -> ?policy_enabled:bool -> endpoint_domain_prefix:string -> endpoint_type:string -> ?policy_document:string -> ?sse_specification:sse_specification -> ?tags:tag list -> ?network_interface_options:network_interface_options -> unit -> properties
val make_load_balancer_options : ?load_balancer_arn:string -> ?port:int -> ?protocol:string -> ?subnet_ids:string list -> unit -> load_balancer_options
val make_tag : value:string -> key:string -> unit -> tag
val make_sse_specification : ?customer_managed_key_enabled:bool -> ?kms_key_arn:string -> unit -> sse_specification
val make_network_interface_options : ?port:int -> ?network_interface_id:string -> ?protocol:string -> unit -> network_interface_options
val yojson_of_load_balancer_options : load_balancer_options -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_sse_specification : sse_specification -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_network_interface_options : network_interface_options -> [> `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. status : string;
  3. endpoint_domain : string;
  4. creation_time : string;
  5. last_updated_time : string;
  6. device_validation_domain : string;
  7. verified_access_instance_id : string;
  8. verified_access_endpoint_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string