Module Values.CreateSourceNetworkRequestSource

Create a new Source Network resource for a provided VPC ID.

Sourcetype nonrec t = {
  1. vpcID : VpcID.t;
    (*

    Which VPC ID to protect.

    *)
  2. originAccountID : AccountID.t;
    (*

    Account containing the VPC to protect.

    *)
  3. originRegion : AwsRegion.t;
    (*

    Region containing the VPC to protect.

    *)
  4. tags : TagsMap.t option;
    (*

    A set of tags to be associated with the Source Network resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> vpcID:VpcID.t -> originAccountID:AccountID.t -> originRegion:AwsRegion.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of VpcID.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t