Module NetworkManager.VpcAttachment

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

type vpc_options = {
  1. ipv6_support : bool option;
  2. appliance_mode_support : bool option;
}

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

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

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

and proposed_segment_change = {
  1. segment_name : string option;
  2. tags : tag list option;
  3. attachment_policy_rule_number : int option;
}

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

type properties = {
  1. proposed_segment_change : proposed_segment_change option;
  2. subnet_arns : string list;
  3. options : vpc_options option;
  4. core_network_id : string;
  5. vpc_arn : string;
  6. tags : tag list option;
}

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

val make_properties : ?proposed_segment_change:proposed_segment_change -> subnet_arns:string list -> ?options:vpc_options -> core_network_id:string -> vpc_arn:string -> ?tags:tag list -> unit -> properties
val make_vpc_options : ?ipv6_support:bool -> ?appliance_mode_support:bool -> unit -> vpc_options
val make_tag : value:string -> key:string -> unit -> tag
val make_proposed_segment_change : ?segment_name:string -> ?tags:tag list -> ?attachment_policy_rule_number:int -> unit -> proposed_segment_change
val yojson_of_vpc_options : vpc_options -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> Yojson.Safe.t
val yojson_of_proposed_segment_change : proposed_segment_change -> [> `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. resource_arn : string;
  3. attachment_type : string;
  4. segment_name : string;
  5. state : string;
  6. created_at : string;
  7. owner_account_id : string;
  8. updated_at : string;
  9. attachment_id : string;
  10. core_network_arn : string;
  11. edge_location : string;
  12. attachment_policy_rule_number : int;
}
val create_attributes : string -> attributes
val cloudformation_type : string