pub struct PackConnectionAwsAccessKeyCredentials {
pub access_key_id: String,
pub secret_access_key: String,
pub type_: PackConnectionAwsAccessKeyCredentialsType,
}
Expand description
PackConnectionAwsAccessKeyCredentials
JSON schema
{
"type": "object",
"required": [
"accessKeyId",
"secretAccessKey",
"type"
],
"properties": {
"accessKeyId": {
"type": "string"
},
"secretAccessKey": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"awsAccessKey"
],
"x-tsType": "PackConnectionType.AwsAccessKey"
}
},
"additionalProperties": false,
"x-schema-name": "PackConnectionAwsAccessKeyCredentials"
}
Fields§
§access_key_id: String
§secret_access_key: String
§type_: PackConnectionAwsAccessKeyCredentialsType
Trait Implementations§
Source§impl Clone for PackConnectionAwsAccessKeyCredentials
impl Clone for PackConnectionAwsAccessKeyCredentials
Source§fn clone(&self) -> PackConnectionAwsAccessKeyCredentials
fn clone(&self) -> PackConnectionAwsAccessKeyCredentials
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<'de> Deserialize<'de> for PackConnectionAwsAccessKeyCredentials
impl<'de> Deserialize<'de> for PackConnectionAwsAccessKeyCredentials
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 From<&PackConnectionAwsAccessKeyCredentials> for PackConnectionAwsAccessKeyCredentials
impl From<&PackConnectionAwsAccessKeyCredentials> for PackConnectionAwsAccessKeyCredentials
Source§fn from(value: &PackConnectionAwsAccessKeyCredentials) -> Self
fn from(value: &PackConnectionAwsAccessKeyCredentials) -> Self
Converts to this type from the input type.
Source§impl From<PackConnectionAwsAccessKeyCredentials> for PackSystemConnectionCredentials
impl From<PackConnectionAwsAccessKeyCredentials> for PackSystemConnectionCredentials
Source§fn from(value: PackConnectionAwsAccessKeyCredentials) -> Self
fn from(value: PackConnectionAwsAccessKeyCredentials) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackConnectionAwsAccessKeyCredentials
impl RefUnwindSafe for PackConnectionAwsAccessKeyCredentials
impl Send for PackConnectionAwsAccessKeyCredentials
impl Sync for PackConnectionAwsAccessKeyCredentials
impl Unpin for PackConnectionAwsAccessKeyCredentials
impl UnwindSafe for PackConnectionAwsAccessKeyCredentials
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