pub struct RdsHttpEndpointConfig {
pub aws_region: Option<String>,
pub aws_secret_store_arn: Option<String>,
pub database_name: Option<String>,
pub db_cluster_identifier: Option<String>,
pub schema: Option<String>,
}
Expand description
The Amazon RDS HTTP endpoint configuration.
Fields§
§aws_region: Option<String>
AWS Region for RDS HTTP endpoint.
aws_secret_store_arn: Option<String>
AWS secret store ARN for database credentials.
database_name: Option<String>
Logical database name.
db_cluster_identifier: Option<String>
Amazon RDS cluster ARN.
schema: Option<String>
Logical schema name.
Trait Implementations§
Source§impl Clone for RdsHttpEndpointConfig
impl Clone for RdsHttpEndpointConfig
Source§fn clone(&self) -> RdsHttpEndpointConfig
fn clone(&self) -> RdsHttpEndpointConfig
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 RdsHttpEndpointConfig
impl Debug for RdsHttpEndpointConfig
Source§impl Default for RdsHttpEndpointConfig
impl Default for RdsHttpEndpointConfig
Source§fn default() -> RdsHttpEndpointConfig
fn default() -> RdsHttpEndpointConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RdsHttpEndpointConfig
impl<'de> Deserialize<'de> for RdsHttpEndpointConfig
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 RdsHttpEndpointConfig
impl PartialEq for RdsHttpEndpointConfig
Source§impl Serialize for RdsHttpEndpointConfig
impl Serialize for RdsHttpEndpointConfig
impl StructuralPartialEq for RdsHttpEndpointConfig
Auto Trait Implementations§
impl Freeze for RdsHttpEndpointConfig
impl RefUnwindSafe for RdsHttpEndpointConfig
impl Send for RdsHttpEndpointConfig
impl Sync for RdsHttpEndpointConfig
impl Unpin for RdsHttpEndpointConfig
impl UnwindSafe for RdsHttpEndpointConfig
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