Module NetworkManager.CoreNetwork

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetwork.html

type core_network_segment = {
  1. edge_locations : string list option;
  2. shared_segments : string list option;
  3. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-corenetwork-corenetworksegment.html

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

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

and core_network_edge = {
  1. inside_cidr_blocks : string list option;
  2. asn : float option;
  3. edge_location : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-corenetwork-corenetworkedge.html

type properties = {
  1. global_network_id : string;
  2. description : string option;
  3. policy_document : Yojson.Safe.t option;
  4. tags : tag list option;
}

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

val make_properties : global_network_id:string -> ?description:string -> ?policy_document:Yojson.Safe.t -> ?tags:tag list -> unit -> properties
val make_core_network_segment : ?edge_locations:string list -> ?shared_segments:string list -> ?name:string -> unit -> core_network_segment
val make_tag : value:string -> key:string -> unit -> tag
val make_core_network_edge : ?inside_cidr_blocks:string list -> ?asn:float -> ?edge_location:string -> unit -> core_network_edge
val yojson_of_core_network_segment : core_network_segment -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_core_network_edge : core_network_edge -> [> `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. core_network_id : string;
  3. state : string;
  4. created_at : string;
  5. owner_account : string;
  6. core_network_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string