Module Values.AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetailsSource

For tasks that use the awsvpc networking mode, the VPC subnet and security group configuration.

Sourcetype nonrec t = {
  1. assignPublicIp : NonEmptyString.t option;
    (*

    Whether the task's elastic network interface receives a public IP address. The default value is DISABLED. Valid values: ENABLED | DISABLED

    *)
  2. securityGroups : NonEmptyStringList.t option;
    (*

    The IDs of the security groups associated with the task or service. You can provide up to five security groups.

    *)
  3. subnets : NonEmptyStringList.t option;
    (*

    The IDs of the subnets associated with the task or service. You can provide up to 16 subnets.

    *)
}
Sourceval make : ?assignPublicIp:??? -> ?securityGroups:??? -> ?subnets:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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