pub struct AwsRdsDbInstanceEndpoint {
pub address: Option<String>,
pub hosted_zone_id: Option<String>,
pub port: Option<i64>,
}Expand description
Specifies the connection endpoint.
Fields§
§address: Option<String>Specifies the DNS address of the DB instance.
hosted_zone_id: Option<String>Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
port: Option<i64>Specifies the port that the database engine is listening on.
Trait Implementations§
Source§impl Clone for AwsRdsDbInstanceEndpoint
impl Clone for AwsRdsDbInstanceEndpoint
Source§fn clone(&self) -> AwsRdsDbInstanceEndpoint
fn clone(&self) -> AwsRdsDbInstanceEndpoint
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 AwsRdsDbInstanceEndpoint
impl Debug for AwsRdsDbInstanceEndpoint
Source§impl Default for AwsRdsDbInstanceEndpoint
impl Default for AwsRdsDbInstanceEndpoint
Source§fn default() -> AwsRdsDbInstanceEndpoint
fn default() -> AwsRdsDbInstanceEndpoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsRdsDbInstanceEndpoint
impl<'de> Deserialize<'de> for AwsRdsDbInstanceEndpoint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsRdsDbInstanceEndpoint
impl PartialEq for AwsRdsDbInstanceEndpoint
Source§impl Serialize for AwsRdsDbInstanceEndpoint
impl Serialize for AwsRdsDbInstanceEndpoint
impl StructuralPartialEq for AwsRdsDbInstanceEndpoint
Auto Trait Implementations§
impl Freeze for AwsRdsDbInstanceEndpoint
impl RefUnwindSafe for AwsRdsDbInstanceEndpoint
impl Send for AwsRdsDbInstanceEndpoint
impl Sync for AwsRdsDbInstanceEndpoint
impl Unpin for AwsRdsDbInstanceEndpoint
impl UnwindSafe for AwsRdsDbInstanceEndpoint
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