Module Values.AddApplicationVpcConfigurationRequestSource

Adds a Virtual Private Cloud (VPC) configuration to the application. Applications can use VPCs to store and access resources securely. Note the following about VPC configurations for Managed Service for Apache Flink applications: VPC configurations are not supported for SQL applications. When a VPC is added to a Managed Service for Apache Flink application, the application can no longer be accessed from the Internet directly. To enable Internet access to the application, add an Internet gateway to your VPC.

Sourcetype nonrec t = {
  1. applicationName : ApplicationName.t;
    (*

    The name of an existing application.

    *)
  2. currentApplicationVersionId : ApplicationVersionId.t option;
    (*

    The version of the application to which you want to add the VPC configuration. You must provide the CurrentApplicationVersionId or the ConditionalToken. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned. For better concurrency support, use the ConditionalToken parameter instead of CurrentApplicationVersionId.

    *)
  3. vpcConfiguration : VpcConfiguration.t;
    (*

    Description of the VPC to add to the application.

    *)
  4. conditionalToken : ConditionalToken.t option;
    (*

    A value you use to implement strong concurrency for application updates. You must provide the ApplicationVersionID or the ConditionalToken. You get the application's current ConditionalToken using DescribeApplication. For better concurrency support, use the ConditionalToken parameter instead of CurrentApplicationVersionId.

    *)
}
Sourceval context_ : string
Sourceval make : ?currentApplicationVersionId:??? -> ?conditionalToken:??? -> applicationName:ApplicationName.t -> vpcConfiguration:VpcConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ApplicationVersionId.t | `String of ApplicationName.t | `Structure of (string * [> `List of [> `String of SubnetId.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