#[non_exhaustive]pub struct OutpostResolverBuilder { /* private fields */ }
Expand description
A builder for OutpostResolver
.
Implementations§
source§impl OutpostResolverBuilder
impl OutpostResolverBuilder
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The ARN (Amazon Resource Name) for the Resolver on an Outpost.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The ARN (Amazon Resource Name) for the Resolver on an Outpost.
sourcepub fn get_arn(&self) -> &Option<String>
pub fn get_arn(&self) -> &Option<String>
The ARN (Amazon Resource Name) for the Resolver on an Outpost.
sourcepub fn creation_time(self, input: impl Into<String>) -> Self
pub fn creation_time(self, input: impl Into<String>) -> Self
The date and time that the Outpost Resolver was created, in Unix time format and Coordinated Universal Time (UTC).
sourcepub fn set_creation_time(self, input: Option<String>) -> Self
pub fn set_creation_time(self, input: Option<String>) -> Self
The date and time that the Outpost Resolver was created, in Unix time format and Coordinated Universal Time (UTC).
sourcepub fn get_creation_time(&self) -> &Option<String>
pub fn get_creation_time(&self) -> &Option<String>
The date and time that the Outpost Resolver was created, in Unix time format and Coordinated Universal Time (UTC).
sourcepub fn modification_time(self, input: impl Into<String>) -> Self
pub fn modification_time(self, input: impl Into<String>) -> Self
The date and time that the Outpost Resolver was modified, in Unix time format and Coordinated Universal Time (UTC).
sourcepub fn set_modification_time(self, input: Option<String>) -> Self
pub fn set_modification_time(self, input: Option<String>) -> Self
The date and time that the Outpost Resolver was modified, in Unix time format and Coordinated Universal Time (UTC).
sourcepub fn get_modification_time(&self) -> &Option<String>
pub fn get_modification_time(&self) -> &Option<String>
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, input: impl Into<String>) -> Self
pub fn creator_request_id(self, input: impl Into<String>) -> Self
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 set_creator_request_id(self, input: Option<String>) -> Self
pub fn set_creator_request_id(self, input: Option<String>) -> Self
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 get_creator_request_id(&self) -> &Option<String>
pub fn get_creator_request_id(&self) -> &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.
sourcepub fn instance_count(self, input: i32) -> Self
pub fn instance_count(self, input: i32) -> Self
Amazon EC2 instance count for the Resolver on the Outpost.
sourcepub fn set_instance_count(self, input: Option<i32>) -> Self
pub fn set_instance_count(self, input: Option<i32>) -> Self
Amazon EC2 instance count for the Resolver on the Outpost.
sourcepub fn get_instance_count(&self) -> &Option<i32>
pub fn get_instance_count(&self) -> &Option<i32>
Amazon EC2 instance count for the Resolver on the Outpost.
sourcepub fn preferred_instance_type(self, input: impl Into<String>) -> Self
pub fn preferred_instance_type(self, input: impl Into<String>) -> Self
The Amazon EC2 instance type.
sourcepub fn set_preferred_instance_type(self, input: Option<String>) -> Self
pub fn set_preferred_instance_type(self, input: Option<String>) -> Self
The Amazon EC2 instance type.
sourcepub fn get_preferred_instance_type(&self) -> &Option<String>
pub fn get_preferred_instance_type(&self) -> &Option<String>
The Amazon EC2 instance type.
sourcepub fn status(self, input: OutpostResolverStatus) -> Self
pub fn status(self, input: OutpostResolverStatus) -> Self
Status of the Resolver.
sourcepub fn set_status(self, input: Option<OutpostResolverStatus>) -> Self
pub fn set_status(self, input: Option<OutpostResolverStatus>) -> Self
Status of the Resolver.
sourcepub fn get_status(&self) -> &Option<OutpostResolverStatus>
pub fn get_status(&self) -> &Option<OutpostResolverStatus>
Status of the Resolver.
sourcepub fn status_message(self, input: impl Into<String>) -> Self
pub fn status_message(self, input: impl Into<String>) -> Self
A detailed description of the Resolver.
sourcepub fn set_status_message(self, input: Option<String>) -> Self
pub fn set_status_message(self, input: Option<String>) -> Self
A detailed description of the Resolver.
sourcepub fn get_status_message(&self) -> &Option<String>
pub fn get_status_message(&self) -> &Option<String>
A detailed description of the Resolver.
sourcepub fn outpost_arn(self, input: impl Into<String>) -> Self
pub fn outpost_arn(self, input: impl Into<String>) -> Self
The ARN (Amazon Resource Name) for the Outpost.
sourcepub fn set_outpost_arn(self, input: Option<String>) -> Self
pub fn set_outpost_arn(self, input: Option<String>) -> Self
The ARN (Amazon Resource Name) for the Outpost.
sourcepub fn get_outpost_arn(&self) -> &Option<String>
pub fn get_outpost_arn(&self) -> &Option<String>
The ARN (Amazon Resource Name) for the Outpost.
sourcepub fn build(self) -> OutpostResolver
pub fn build(self) -> OutpostResolver
Consumes the builder and constructs a OutpostResolver
.
Trait Implementations§
source§impl Clone for OutpostResolverBuilder
impl Clone for OutpostResolverBuilder
source§fn clone(&self) -> OutpostResolverBuilder
fn clone(&self) -> OutpostResolverBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OutpostResolverBuilder
impl Debug for OutpostResolverBuilder
source§impl Default for OutpostResolverBuilder
impl Default for OutpostResolverBuilder
source§fn default() -> OutpostResolverBuilder
fn default() -> OutpostResolverBuilder
source§impl PartialEq for OutpostResolverBuilder
impl PartialEq for OutpostResolverBuilder
source§fn eq(&self, other: &OutpostResolverBuilder) -> bool
fn eq(&self, other: &OutpostResolverBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.