Struct aws_sdk_apprunner::types::VpcDnsTarget
source · #[non_exhaustive]pub struct VpcDnsTarget {
pub vpc_ingress_connection_arn: Option<String>,
pub vpc_id: Option<String>,
pub domain_name: Option<String>,
}
Expand description
DNS Target record for a custom domain of this Amazon VPC.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.vpc_ingress_connection_arn: Option<String>
The Amazon Resource Name (ARN) of the VPC Ingress Connection that is associated with your service.
vpc_id: Option<String>
The ID of the Amazon VPC that is associated with the custom domain name of the target DNS.
domain_name: Option<String>
The domain name of your target DNS that is associated with the Amazon VPC.
Implementations§
source§impl VpcDnsTarget
impl VpcDnsTarget
sourcepub fn vpc_ingress_connection_arn(&self) -> Option<&str>
pub fn vpc_ingress_connection_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the VPC Ingress Connection that is associated with your service.
sourcepub fn vpc_id(&self) -> Option<&str>
pub fn vpc_id(&self) -> Option<&str>
The ID of the Amazon VPC that is associated with the custom domain name of the target DNS.
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The domain name of your target DNS that is associated with the Amazon VPC.
source§impl VpcDnsTarget
impl VpcDnsTarget
sourcepub fn builder() -> VpcDnsTargetBuilder
pub fn builder() -> VpcDnsTargetBuilder
Creates a new builder-style object to manufacture VpcDnsTarget
.
Trait Implementations§
source§impl Clone for VpcDnsTarget
impl Clone for VpcDnsTarget
source§fn clone(&self) -> VpcDnsTarget
fn clone(&self) -> VpcDnsTarget
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for VpcDnsTarget
impl Debug for VpcDnsTarget
source§impl PartialEq for VpcDnsTarget
impl PartialEq for VpcDnsTarget
source§fn eq(&self, other: &VpcDnsTarget) -> bool
fn eq(&self, other: &VpcDnsTarget) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VpcDnsTarget
Auto Trait Implementations§
impl Freeze for VpcDnsTarget
impl RefUnwindSafe for VpcDnsTarget
impl Send for VpcDnsTarget
impl Sync for VpcDnsTarget
impl Unpin for VpcDnsTarget
impl UnwindSafe for VpcDnsTarget
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.