Struct aws_sdk_route53resolver::types::OutpostResolver
source · #[non_exhaustive]pub struct OutpostResolver {
pub arn: Option<String>,
pub creation_time: Option<String>,
pub modification_time: Option<String>,
pub creator_request_id: Option<String>,
pub id: Option<String>,
pub instance_count: Option<i32>,
pub preferred_instance_type: Option<String>,
pub name: Option<String>,
pub status: Option<OutpostResolverStatus>,
pub status_message: Option<String>,
pub outpost_arn: Option<String>,
}
Expand description
A complex type that contains settings for an existing Resolver on an Outpost.
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.arn: Option<String>
The ARN (Amazon Resource Name) for the Resolver on an Outpost.
creation_time: Option<String>
The date and time that the Outpost Resolver was created, in Unix time format and Coordinated Universal Time (UTC).
modification_time: Option<String>
The date and time that the Outpost Resolver was modified, in Unix time format and Coordinated Universal Time (UTC).
creator_request_id: Option<String>
A unique string that identifies the request that created the Resolver endpoint. The CreatorRequestId
allows failed requests to be retried without the risk of running the operation twice.
id: Option<String>
The ID of the Resolver on Outpost.
instance_count: Option<i32>
Amazon EC2 instance count for the Resolver on the Outpost.
preferred_instance_type: Option<String>
The Amazon EC2 instance type.
name: Option<String>
Name of the Resolver.
status: Option<OutpostResolverStatus>
Status of the Resolver.
status_message: Option<String>
A detailed description of the Resolver.
outpost_arn: Option<String>
The ARN (Amazon Resource Name) for the Outpost.
Implementations§
source§impl OutpostResolver
impl OutpostResolver
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The ARN (Amazon Resource Name) for the Resolver on an Outpost.
sourcepub fn creation_time(&self) -> Option<&str>
pub fn creation_time(&self) -> Option<&str>
The date and time that the Outpost Resolver was created, in Unix time format and Coordinated Universal Time (UTC).
sourcepub fn modification_time(&self) -> Option<&str>
pub fn modification_time(&self) -> Option<&str>
The date and time that the Outpost Resolver was modified, in Unix time format and Coordinated Universal Time (UTC).
sourcepub fn creator_request_id(&self) -> Option<&str>
pub fn creator_request_id(&self) -> Option<&str>
A unique string that identifies the request that created the Resolver endpoint. The CreatorRequestId
allows failed requests to be retried without the risk of running the operation twice.
sourcepub fn instance_count(&self) -> Option<i32>
pub fn instance_count(&self) -> Option<i32>
Amazon EC2 instance count for the Resolver on the Outpost.
sourcepub fn preferred_instance_type(&self) -> Option<&str>
pub fn preferred_instance_type(&self) -> Option<&str>
The Amazon EC2 instance type.
sourcepub fn status(&self) -> Option<&OutpostResolverStatus>
pub fn status(&self) -> Option<&OutpostResolverStatus>
Status of the Resolver.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
A detailed description of the Resolver.
sourcepub fn outpost_arn(&self) -> Option<&str>
pub fn outpost_arn(&self) -> Option<&str>
The ARN (Amazon Resource Name) for the Outpost.
source§impl OutpostResolver
impl OutpostResolver
sourcepub fn builder() -> OutpostResolverBuilder
pub fn builder() -> OutpostResolverBuilder
Creates a new builder-style object to manufacture OutpostResolver
.
Trait Implementations§
source§impl Clone for OutpostResolver
impl Clone for OutpostResolver
source§fn clone(&self) -> OutpostResolver
fn clone(&self) -> OutpostResolver
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OutpostResolver
impl Debug for OutpostResolver
source§impl PartialEq for OutpostResolver
impl PartialEq for OutpostResolver
source§fn eq(&self, other: &OutpostResolver) -> bool
fn eq(&self, other: &OutpostResolver) -> bool
self
and other
values to be equal, and is used
by ==
.