pub struct PrivateDnsNameConfiguration {
pub name: Option<String>,
pub state: Option<String>,
pub type_: Option<String>,
pub value: Option<String>,
}Expand description
Information about the private DNS name for the service endpoint. For more information about these parameters, see VPC Endpoint Service Private DNS Name Verification in the Amazon Virtual Private Cloud User Guide.
Fields§
§name: Option<String>The name of the record subdomain the service provider needs to create. The service provider adds the value text to the name.
state: Option<String>The verification state of the VPC endpoint service.
>Consumers of the endpoint service can use the private name only when the state is verified.
type_: Option<String>The endpoint service verification type, for example TXT.
value: Option<String>The value the service provider adds to the private DNS name domain record before verification.
Trait Implementations§
Source§impl Clone for PrivateDnsNameConfiguration
impl Clone for PrivateDnsNameConfiguration
Source§fn clone(&self) -> PrivateDnsNameConfiguration
fn clone(&self) -> PrivateDnsNameConfiguration
Returns a duplicate 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 PrivateDnsNameConfiguration
impl Debug for PrivateDnsNameConfiguration
Source§impl Default for PrivateDnsNameConfiguration
impl Default for PrivateDnsNameConfiguration
Source§fn default() -> PrivateDnsNameConfiguration
fn default() -> PrivateDnsNameConfiguration
Returns the “default value” for a type. Read more
impl StructuralPartialEq for PrivateDnsNameConfiguration
Auto Trait Implementations§
impl Freeze for PrivateDnsNameConfiguration
impl RefUnwindSafe for PrivateDnsNameConfiguration
impl Send for PrivateDnsNameConfiguration
impl Sync for PrivateDnsNameConfiguration
impl Unpin for PrivateDnsNameConfiguration
impl UnwindSafe for PrivateDnsNameConfiguration
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