Module Values.NetworkConfigurationSource

This structure specifies the network configuration for an Amazon ECS task.

Sourcetype nonrec t = {
  1. awsvpcConfiguration : AwsVpcConfiguration.t option;
    (*

    Use this structure to specify the VPC subnets and security groups for the task, and whether a public IP address is to be used. This structure is relevant only for ECS tasks that use the awsvpc network mode.

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