Module EC2.NetworkInsightsAccessScope

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

type resource_statement_request = {
  1. resource_types : string list option;
  2. resources : string list option;
}

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

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

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

and packet_header_statement_request = {
  1. protocols : string list option;
  2. destination_ports : string list option;
  3. destination_addresses : string list option;
  4. destination_prefix_lists : string list option;
  5. source_addresses : string list option;
  6. source_ports : string list option;
  7. source_prefix_lists : string list option;
}

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

and path_statement_request = {
  1. resource_statement : resource_statement_request option;
  2. packet_header_statement : packet_header_statement_request option;
}

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

and through_resources_statement_request = {
  1. resource_statement : resource_statement_request option;
}

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

and access_scope_path_request = {
  1. destination : path_statement_request option;
  2. through_resources : through_resources_statement_request list option;
  3. source : path_statement_request option;
}

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

type properties = {
  1. exclude_paths : access_scope_path_request list option;
  2. match_paths : access_scope_path_request list option;
  3. tags : tag list option;
}

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

val make_properties : ?exclude_paths:access_scope_path_request list -> ?match_paths:access_scope_path_request list -> ?tags:tag list -> unit -> properties
val make_resource_statement_request : ?resource_types:string list -> ?resources:string list -> unit -> resource_statement_request
val make_tag : value:string -> key:string -> unit -> tag
val make_packet_header_statement_request : ?protocols:string list -> ?destination_ports:string list -> ?destination_addresses:string list -> ?destination_prefix_lists:string list -> ?source_addresses:string list -> ?source_ports:string list -> ?source_prefix_lists:string list -> unit -> packet_header_statement_request
val make_path_statement_request : ?resource_statement:resource_statement_request -> ?packet_header_statement:packet_header_statement_request -> unit -> path_statement_request
val make_through_resources_statement_request : ?resource_statement:resource_statement_request -> unit -> through_resources_statement_request
val make_access_scope_path_request : ?destination:path_statement_request -> ?through_resources:through_resources_statement_request list -> ?source:path_statement_request -> unit -> access_scope_path_request
val yojson_of_resource_statement_request : resource_statement_request -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_packet_header_statement_request : packet_header_statement_request -> Yojson.Safe.t
val yojson_of_path_statement_request : path_statement_request -> Yojson.Safe.t
val yojson_of_through_resources_statement_request : through_resources_statement_request -> Yojson.Safe.t
val yojson_of_access_scope_path_request : access_scope_path_request -> [> `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. updated_date : string;
  3. created_date : string;
  4. network_insights_access_scope_arn : string;
  5. network_insights_access_scope_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string