/* * 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 globalaccelerator-2018-08-08.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.GlobalAccelerator.Model { /// /// An accelerator is a complex type that includes one or more listeners that process /// inbound connections and then direct traffic to one or more endpoint groups, each of /// which includes endpoints, such as load balancers. /// public partial class Accelerator { private string _acceleratorArn; private DateTime? _createdTime; private string _dnsName; private string _dualStackDnsName; private bool? _enabled; private List _events = new List(); private IpAddressType _ipAddressType; private List _ipSets = new List(); private DateTime? _lastModifiedTime; private string _name; private AcceleratorStatus _status; /// /// Gets and sets the property AcceleratorArn. /// /// The Amazon Resource Name (ARN) of the accelerator. /// /// [AWSProperty(Max=255)] public string AcceleratorArn { get { return this._acceleratorArn; } set { this._acceleratorArn = value; } } // Check to see if AcceleratorArn property is set internal bool IsSetAcceleratorArn() { return this._acceleratorArn != null; } /// /// Gets and sets the property CreatedTime. /// /// The date and time that the accelerator was created. /// /// public DateTime CreatedTime { get { return this._createdTime.GetValueOrDefault(); } set { this._createdTime = value; } } // Check to see if CreatedTime property is set internal bool IsSetCreatedTime() { return this._createdTime.HasValue; } /// /// Gets and sets the property DnsName. /// /// The Domain Name System (DNS) name that Global Accelerator creates that points to an /// accelerator's static IPv4 addresses. /// /// /// /// The naming convention for the DNS name for an accelerator is the following: A lowercase /// letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. /// For example: a1234567890abcdef.awsglobalaccelerator.com. /// /// /// /// If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName, /// that points to both the A record and the AAAA record for all four static addresses /// for the accelerator: two IPv4 addresses and two IPv6 addresses. /// /// /// /// For more information about the default DNS name, see /// Support for DNS addressing in Global Accelerator in the Global Accelerator /// Developer Guide. /// /// [AWSProperty(Max=255)] public string DnsName { get { return this._dnsName; } set { this._dnsName = value; } } // Check to see if DnsName property is set internal bool IsSetDnsName() { return this._dnsName != null; } /// /// Gets and sets the property DualStackDnsName. /// /// The Domain Name System (DNS) name that Global Accelerator creates that points to a /// dual-stack accelerator's four static IP addresses: two IPv4 addresses and two IPv6 /// addresses. /// /// /// /// The naming convention for the dual-stack DNS name is the following: A lowercase letter /// a, followed by a 16-bit random hex string, followed by .dualstack.awsglobalaccelerator.com. /// For example: a1234567890abcdef.dualstack.awsglobalaccelerator.com. /// /// /// /// Note: Global Accelerator also assigns a default DNS name, DnsName, to /// your accelerator that points just to the static IPv4 addresses. /// /// /// /// For more information, see /// Support for DNS addressing in Global Accelerator in the Global Accelerator /// Developer Guide. /// /// [AWSProperty(Max=255)] public string DualStackDnsName { get { return this._dualStackDnsName; } set { this._dualStackDnsName = value; } } // Check to see if DualStackDnsName property is set internal bool IsSetDualStackDnsName() { return this._dualStackDnsName != null; } /// /// Gets and sets the property Enabled. /// /// Indicates whether the accelerator is enabled. The value is true or false. The default /// value is true. /// /// /// /// If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator /// can be deleted. /// /// public bool Enabled { get { return this._enabled.GetValueOrDefault(); } set { this._enabled = value; } } // Check to see if Enabled property is set internal bool IsSetEnabled() { return this._enabled.HasValue; } /// /// Gets and sets the property Events. /// /// A history of changes that you make to an accelerator in Global Accelerator. /// /// public List Events { get { return this._events; } set { this._events = value; } } // Check to see if Events property is set internal bool IsSetEvents() { return this._events != null && this._events.Count > 0; } /// /// Gets and sets the property IpAddressType. /// /// The IP address type that an accelerator supports. For a standard accelerator, the /// value can be IPV4 or DUAL_STACK. /// /// public IpAddressType IpAddressType { get { return this._ipAddressType; } set { this._ipAddressType = value; } } // Check to see if IpAddressType property is set internal bool IsSetIpAddressType() { return this._ipAddressType != null; } /// /// Gets and sets the property IpSets. /// /// The static IP addresses that Global Accelerator associates with the accelerator. /// /// public List IpSets { get { return this._ipSets; } set { this._ipSets = value; } } // Check to see if IpSets property is set internal bool IsSetIpSets() { return this._ipSets != null && this._ipSets.Count > 0; } /// /// Gets and sets the property LastModifiedTime. /// /// The date and time that the accelerator was last modified. /// /// public DateTime LastModifiedTime { get { return this._lastModifiedTime.GetValueOrDefault(); } set { this._lastModifiedTime = value; } } // Check to see if LastModifiedTime property is set internal bool IsSetLastModifiedTime() { return this._lastModifiedTime.HasValue; } /// /// Gets and sets the property Name. /// /// The name of the accelerator. The name must contain only alphanumeric characters or /// hyphens (-), and must not begin or end with a hyphen. /// /// [AWSProperty(Max=255)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// /// Gets and sets the property Status. /// /// Describes the deployment status of the accelerator. /// /// public AcceleratorStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } } }