AddApplicationVpcConfiguration
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.
Request Syntax
{
"ApplicationName": "string
",
"ConditionalToken": "string
",
"CurrentApplicationVersionId": number
,
"VpcConfiguration": {
"SecurityGroupIds": [ "string
" ],
"SubnetIds": [ "string
" ]
}
}
Request Parameters
The request accepts the following data in JSON format.
- ApplicationName
-
The name of an existing application.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 128.
Pattern:
[a-zA-Z0-9_.-]+
Required: Yes
- ConditionalToken
-
A value you use to implement strong concurrency for application updates. You must provide the
ApplicationVersionID
or theConditionalToken
. You get the application's currentConditionalToken
using DescribeApplication. For better concurrency support, use theConditionalToken
parameter instead ofCurrentApplicationVersionId
.Type: String
Length Constraints: Minimum length of 1. Maximum length of 512.
Pattern:
[a-zA-Z0-9-_+/=]+
Required: No
- CurrentApplicationVersionId
-
The version of the application to which you want to add the VPC configuration. You must provide the
CurrentApplicationVersionId
or theConditionalToken
. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, theConcurrentModificationException
is returned. For better concurrency support, use theConditionalToken
parameter instead ofCurrentApplicationVersionId
.Type: Long
Valid Range: Minimum value of 1. Maximum value of 999999999.
Required: No
- VpcConfiguration
-
Description of the VPC to add to the application.
Type: VpcConfiguration object
Required: Yes
Response Syntax
{
"ApplicationARN": "string",
"ApplicationVersionId": number,
"OperationId": "string",
"VpcConfigurationDescription": {
"SecurityGroupIds": [ "string" ],
"SubnetIds": [ "string" ],
"VpcConfigurationId": "string",
"VpcId": "string"
}
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- ApplicationARN
-
The ARN of the application.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 2048.
Pattern:
arn:.*
- ApplicationVersionId
-
Provides the current application version. Managed Service for Apache Flink updates the ApplicationVersionId each time you update the application.
Type: Long
Valid Range: Minimum value of 1. Maximum value of 999999999.
- OperationId
-
The operation ID that can be used to track the request.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 64.
- VpcConfigurationDescription
-
The parameters of the new VPC configuration.
Type: VpcConfigurationDescription object
Errors
- ConcurrentModificationException
-
Exception thrown as a result of concurrent modifications to an application. This error can be the result of attempting to modify an application without using the current application ID.
HTTP Status Code: 400
- InvalidApplicationConfigurationException
-
The user-provided application configuration is not valid.
HTTP Status Code: 400
- InvalidArgumentException
-
The specified input parameter value is not valid.
HTTP Status Code: 400
- ResourceInUseException
-
The application is not available for this operation.
HTTP Status Code: 400
- ResourceNotFoundException
-
Specified application can't be found.
HTTP Status Code: 400
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: