[][src]Struct rusoto_globalaccelerator::CreateAcceleratorRequest

pub struct CreateAcceleratorRequest {
    pub enabled: Option<bool>,
    pub idempotency_token: String,
    pub ip_address_type: Option<String>,
    pub ip_addresses: Option<Vec<String>>,
    pub name: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

enabled: Option<bool>

Indicates whether an accelerator is enabled. The value is true or false. The default value is true.

If the value is set to true, an accelerator cannot be deleted. If set to false, the accelerator can be deleted.

idempotency_token: String

A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of an accelerator.

ip_address_type: Option<String>

The value for the address type must be IPv4.

ip_addresses: Option<Vec<String>>

Optionally, if you've added your own IP address pool to Global Accelerator (BYOIP), you can choose IP addresses from your own pool to use for the accelerator's static IP addresses when you create an accelerator. You can specify one or two addresses, separated by a comma. Do not include the /32 suffix.

Only one IP address from each of your IP address ranges can be used for each accelerator. If you specify only one IP address from your IP address range, Global Accelerator assigns a second static IP address for the accelerator from the AWS IP address pool.

Note that you can't update IP addresses for an existing accelerator. To change them, you must create a new accelerator with the new addresses.

For more information, see Bring Your Own IP Addresses (BYOIP) in the AWS Global Accelerator Developer Guide.

name: String

The name of an accelerator. The name can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.

tags: Option<Vec<Tag>>

Create tags for an accelerator.

For more information, see Tagging in AWS Global Accelerator in the AWS Global Accelerator Developer Guide.

Trait Implementations

impl Clone for CreateAcceleratorRequest[src]

impl Debug for CreateAcceleratorRequest[src]

impl Default for CreateAcceleratorRequest[src]

impl PartialEq<CreateAcceleratorRequest> for CreateAcceleratorRequest[src]

impl Serialize for CreateAcceleratorRequest[src]

impl StructuralPartialEq for CreateAcceleratorRequest[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> From<T> 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.