#[non_exhaustive]pub struct CustomRoutingAccelerator {
pub accelerator_arn: Option<String>,
pub name: Option<String>,
pub ip_address_type: Option<IpAddressType>,
pub enabled: Option<bool>,
pub ip_sets: Option<Vec<IpSet>>,
pub dns_name: Option<String>,
pub status: Option<CustomRoutingAcceleratorStatus>,
pub created_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
}Expand description
Attributes of a custom routing accelerator.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.accelerator_arn: Option<String>The Amazon Resource Name (ARN) of the custom routing accelerator.
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.
ip_address_type: Option<IpAddressType>The value for the address type must be IPv4.
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_sets: Option<Vec<IpSet>>The static IP addresses that Global Accelerator associates with the accelerator.
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.
status: Option<CustomRoutingAcceleratorStatus>Describes the deployment status of the accelerator.
created_time: Option<DateTime>The date and time that the accelerator was created.
last_modified_time: Option<DateTime>The date and time that the accelerator was last modified.
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 value for the address type 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 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.
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
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CustomRoutingAccelerator
impl Debug for CustomRoutingAccelerator
sourceimpl PartialEq<CustomRoutingAccelerator> for CustomRoutingAccelerator
impl PartialEq<CustomRoutingAccelerator> for CustomRoutingAccelerator
sourcefn eq(&self, other: &CustomRoutingAccelerator) -> bool
fn eq(&self, other: &CustomRoutingAccelerator) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CustomRoutingAccelerator) -> bool
fn ne(&self, other: &CustomRoutingAccelerator) -> bool
This method tests for !=.
impl StructuralPartialEq for CustomRoutingAccelerator
Auto Trait Implementations
impl RefUnwindSafe for CustomRoutingAccelerator
impl Send for CustomRoutingAccelerator
impl Sync for CustomRoutingAccelerator
impl Unpin for CustomRoutingAccelerator
impl UnwindSafe for CustomRoutingAccelerator
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more