#[non_exhaustive]pub struct CustomRoutingAccelerator { /* private fields */ }Expand description
Attributes of a custom routing accelerator.
Implementations
sourceimpl CustomRoutingAccelerator
impl CustomRoutingAccelerator
sourcepub fn accelerator_arn(&self) -> Option<&str>
pub fn accelerator_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the custom routing accelerator.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
sourcepub fn ip_address_type(&self) -> Option<&IpAddressType>
pub fn ip_address_type(&self) -> Option<&IpAddressType>
The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
sourcepub fn enabled(&self) -> Option<bool>
pub fn enabled(&self) -> 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.
sourcepub fn ip_sets(&self) -> Option<&[IpSet]>
pub fn ip_sets(&self) -> Option<&[IpSet]>
The static IP addresses that Global Accelerator associates with the accelerator.
sourcepub fn dns_name(&self) -> Option<&str>
pub fn dns_name(&self) -> Option<&str>
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 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.
sourcepub fn status(&self) -> Option<&CustomRoutingAcceleratorStatus>
pub fn status(&self) -> Option<&CustomRoutingAcceleratorStatus>
Describes the deployment status of the accelerator.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The date and time that the accelerator was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The date and time that the accelerator was last modified.
sourceimpl CustomRoutingAccelerator
impl CustomRoutingAccelerator
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CustomRoutingAccelerator.
Trait Implementations
sourceimpl Clone for CustomRoutingAccelerator
impl Clone for CustomRoutingAccelerator
sourcefn clone(&self) -> CustomRoutingAccelerator
fn clone(&self) -> CustomRoutingAccelerator
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more