/* * 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 ec2-2016-11-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.EC2.Model { /// <summary> /// Container for the parameters to the TerminateClientVpnConnections operation. /// Terminates active Client VPN endpoint connections. This action can be used to terminate /// a specific client connection, or up to five connections established by a specific /// user. /// </summary> public partial class TerminateClientVpnConnectionsRequest : AmazonEC2Request { private string _clientVpnEndpointId; private string _connectionId; private string _username; /// <summary> /// Gets and sets the property ClientVpnEndpointId. /// <para> /// The ID of the Client VPN endpoint to which the client is connected. /// </para> /// </summary> [AWSProperty(Required=true)] public string ClientVpnEndpointId { get { return this._clientVpnEndpointId; } set { this._clientVpnEndpointId = value; } } // Check to see if ClientVpnEndpointId property is set internal bool IsSetClientVpnEndpointId() { return this._clientVpnEndpointId != null; } /// <summary> /// Gets and sets the property ConnectionId. /// <para> /// The ID of the client connection to be terminated. /// </para> /// </summary> public string ConnectionId { get { return this._connectionId; } set { this._connectionId = value; } } // Check to see if ConnectionId property is set internal bool IsSetConnectionId() { return this._connectionId != null; } /// <summary> /// Gets and sets the property Username. /// <para> /// The name of the user who initiated the connection. Use this option to terminate all /// active connections for the specified user. This option can only be used if the user /// has established up to five connections. /// </para> /// </summary> public string Username { get { return this._username; } set { this._username = value; } } // Check to see if Username property is set internal bool IsSetUsername() { return this._username != null; } } }