Module Values.EC2AssociateRouteTableActionSource

The action of associating an EC2 resource, such as a subnet or internet gateway, with a route table.

Sourcetype nonrec t = {
  1. description : LengthBoundedString.t option;
    (*

    A description of the EC2 route table that is associated with the remediation action.

    *)
  2. routeTableId : ActionTarget.t option;
    (*

    The ID of the EC2 route table that is associated with the remediation action.

    *)
  3. subnetId : ActionTarget.t option;
    (*

    The ID of the subnet for the EC2 route table that is associated with the remediation action.

    *)
  4. gatewayId : ActionTarget.t option;
    (*

    The ID of the gateway to be used with the EC2 route table that is associated with the remediation action.

    *)
}
Sourceval make : ?description:??? -> ?routeTableId:??? -> ?subnetId:??? -> ?gatewayId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LengthBoundedString.t | `Structure of (string * [> `String of ResourceId.t ]) list ]) 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