[][src]Struct rusoto_globalaccelerator::Accelerator

pub struct Accelerator {
    pub accelerator_arn: Option<String>,
    pub created_time: Option<f64>,
    pub dns_name: Option<String>,
    pub enabled: Option<bool>,
    pub ip_address_type: Option<String>,
    pub ip_sets: Option<Vec<IpSet>>,
    pub last_modified_time: Option<f64>,
    pub name: Option<String>,
    pub status: Option<String>,
}

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.

Fields

accelerator_arn: Option<String>

The Amazon Resource Name (ARN) of the accelerator.

created_time: Option<f64>

The date and time that the accelerator was created.

dns_name: Option<String>

The Domain Name System (DNS) name that Global Accelerator creates that points to your accelerator's static IP addresses.

The naming convention for the DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.

For more information about the default DNS name, see Support for DNS Addressing in Global Accelerator in the AWS Global Accelerator Developer Guide.

enabled: Option<bool>

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.

ip_address_type: Option<String>

The value for the address type must be IPv4.

ip_sets: Option<Vec<IpSet>>

The static IP addresses that Global Accelerator associates with the accelerator.

last_modified_time: Option<f64>

The date and time that the accelerator was last modified.

name: Option<String>

The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.

status: Option<String>

Describes the deployment status of the accelerator.

Trait Implementations

impl Clone for Accelerator[src]

impl Debug for Accelerator[src]

impl Default for Accelerator[src]

impl<'de> Deserialize<'de> for Accelerator[src]

impl PartialEq<Accelerator> for Accelerator[src]

impl StructuralPartialEq for Accelerator[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.