Struct aws_sdk_route53resolver::operation::create_outpost_resolver::CreateOutpostResolverInput
source · #[non_exhaustive]pub struct CreateOutpostResolverInput {
pub creator_request_id: Option<String>,
pub name: Option<String>,
pub instance_count: Option<i32>,
pub preferred_instance_type: Option<String>,
pub outpost_arn: Option<String>,
pub tags: Option<Vec<Tag>>,
}
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.creator_request_id: Option<String>
A unique string that identifies the request and that allows failed requests to be retried without the risk of running the operation twice.
CreatorRequestId
can be any unique string, for example, a date/time stamp.
name: Option<String>
A friendly name that lets you easily find a configuration in the Resolver dashboard in the Route 53 console.
instance_count: Option<i32>
Number of Amazon EC2 instances for the Resolver on Outpost. The default and minimal value is 4.
preferred_instance_type: Option<String>
The Amazon EC2 instance type. If you specify this, you must also specify a value for the OutpostArn
.
outpost_arn: Option<String>
The Amazon Resource Name (ARN) of the Outpost. If you specify this, you must also specify a value for the PreferredInstanceType
.
A string that helps identify the Route 53 Resolvers on Outpost.
Implementations§
source§impl CreateOutpostResolverInput
impl CreateOutpostResolverInput
sourcepub fn creator_request_id(&self) -> Option<&str>
pub fn creator_request_id(&self) -> Option<&str>
A unique string that identifies the request and that allows failed requests to be retried without the risk of running the operation twice.
CreatorRequestId
can be any unique string, for example, a date/time stamp.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
A friendly name that lets you easily find a configuration in the Resolver dashboard in the Route 53 console.
sourcepub fn instance_count(&self) -> Option<i32>
pub fn instance_count(&self) -> Option<i32>
Number of Amazon EC2 instances for the Resolver on Outpost. The default and minimal value is 4.
sourcepub fn preferred_instance_type(&self) -> Option<&str>
pub fn preferred_instance_type(&self) -> Option<&str>
The Amazon EC2 instance type. If you specify this, you must also specify a value for the OutpostArn
.
sourcepub fn outpost_arn(&self) -> Option<&str>
pub fn outpost_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Outpost. If you specify this, you must also specify a value for the PreferredInstanceType
.
A string that helps identify the Route 53 Resolvers on Outpost.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateOutpostResolverInput
impl CreateOutpostResolverInput
sourcepub fn builder() -> CreateOutpostResolverInputBuilder
pub fn builder() -> CreateOutpostResolverInputBuilder
Creates a new builder-style object to manufacture CreateOutpostResolverInput
.
Trait Implementations§
source§impl Clone for CreateOutpostResolverInput
impl Clone for CreateOutpostResolverInput
source§fn clone(&self) -> CreateOutpostResolverInput
fn clone(&self) -> CreateOutpostResolverInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateOutpostResolverInput
impl Debug for CreateOutpostResolverInput
source§impl PartialEq for CreateOutpostResolverInput
impl PartialEq for CreateOutpostResolverInput
source§fn eq(&self, other: &CreateOutpostResolverInput) -> bool
fn eq(&self, other: &CreateOutpostResolverInput) -> bool
self
and other
values to be equal, and is used
by ==
.