/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the apprunner-2020-05-15.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.AppRunner.Model
{
///
/// Container for the parameters to the UpdateVpcIngressConnection operation.
/// Update an existing App Runner VPC Ingress Connection resource. The VPC Ingress Connection
/// must be in one of the following states to be updated:
///
/// -
///
/// AVAILABLE
///
///
-
///
/// FAILED_CREATION
///
///
-
///
/// FAILED_UPDATE
///
///
///
public partial class UpdateVpcIngressConnectionRequest : AmazonAppRunnerRequest
{
private IngressVpcConfiguration _ingressVpcConfiguration;
private string _vpcIngressConnectionArn;
///
/// Gets and sets the property IngressVpcConfiguration.
///
/// Specifications for the customer’s Amazon VPC and the related Amazon Web Services PrivateLink
/// VPC endpoint that are used to update the VPC Ingress Connection resource.
///
///
[AWSProperty(Required=true)]
public IngressVpcConfiguration IngressVpcConfiguration
{
get { return this._ingressVpcConfiguration; }
set { this._ingressVpcConfiguration = value; }
}
// Check to see if IngressVpcConfiguration property is set
internal bool IsSetIngressVpcConfiguration()
{
return this._ingressVpcConfiguration != null;
}
///
/// Gets and sets the property VpcIngressConnectionArn.
///
/// The Amazon Resource Name (Arn) for the App Runner VPC Ingress Connection resource
/// that you want to update.
///
///
[AWSProperty(Required=true, Min=1, Max=1011)]
public string VpcIngressConnectionArn
{
get { return this._vpcIngressConnectionArn; }
set { this._vpcIngressConnectionArn = value; }
}
// Check to see if VpcIngressConnectionArn property is set
internal bool IsSetVpcIngressConnectionArn()
{
return this._vpcIngressConnectionArn != null;
}
}
}