/*
* 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 devicefarm-2015-06-23.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.DeviceFarm.Model
{
///
/// Container for the parameters to the UpdateVPCEConfiguration operation.
/// Updates information about an Amazon Virtual Private Cloud (VPC) endpoint configuration.
///
public partial class UpdateVPCEConfigurationRequest : AmazonDeviceFarmRequest
{
private string _arn;
private string _serviceDnsName;
private string _vpceConfigurationDescription;
private string _vpceConfigurationName;
private string _vpceServiceName;
///
/// Gets and sets the property Arn.
///
/// The Amazon Resource Name (ARN) of the VPC endpoint configuration you want to update.
///
///
[AWSProperty(Required=true, Min=32, Max=1011)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
///
/// Gets and sets the property ServiceDnsName.
///
/// The DNS (domain) name used to connect to your private service in your VPC. The DNS
/// name must not already be in use on the internet.
///
///
[AWSProperty(Min=0, Max=2048)]
public string ServiceDnsName
{
get { return this._serviceDnsName; }
set { this._serviceDnsName = value; }
}
// Check to see if ServiceDnsName property is set
internal bool IsSetServiceDnsName()
{
return this._serviceDnsName != null;
}
///
/// Gets and sets the property VpceConfigurationDescription.
///
/// An optional description that provides details about your VPC endpoint configuration.
///
///
[AWSProperty(Min=0, Max=2048)]
public string VpceConfigurationDescription
{
get { return this._vpceConfigurationDescription; }
set { this._vpceConfigurationDescription = value; }
}
// Check to see if VpceConfigurationDescription property is set
internal bool IsSetVpceConfigurationDescription()
{
return this._vpceConfigurationDescription != null;
}
///
/// Gets and sets the property VpceConfigurationName.
///
/// The friendly name you give to your VPC endpoint configuration to manage your configurations
/// more easily.
///
///
[AWSProperty(Min=0, Max=1024)]
public string VpceConfigurationName
{
get { return this._vpceConfigurationName; }
set { this._vpceConfigurationName = value; }
}
// Check to see if VpceConfigurationName property is set
internal bool IsSetVpceConfigurationName()
{
return this._vpceConfigurationName != null;
}
///
/// Gets and sets the property VpceServiceName.
///
/// The name of the VPC endpoint service running in your AWS account that you want Device
/// Farm to test.
///
///
[AWSProperty(Min=0, Max=2048)]
public string VpceServiceName
{
get { return this._vpceServiceName; }
set { this._vpceServiceName = value; }
}
// Check to see if VpceServiceName property is set
internal bool IsSetVpceServiceName()
{
return this._vpceServiceName != null;
}
}
}