pub struct UpdateAwsCredentialsSecret {
pub name: Option<String>,
pub secret_type: Option<Box<SecretType>>,
pub access_key: Option<String>,
pub secret_key: Option<String>,
}
Fields§
§name: Option<String>
Secret name
secret_type: Option<Box<SecretType>>
§access_key: Option<String>
AWS access key
secret_key: Option<String>
AWS secret key
Implementations§
Source§impl UpdateAwsCredentialsSecret
impl UpdateAwsCredentialsSecret
pub fn new() -> UpdateAwsCredentialsSecret
Trait Implementations§
Source§impl Clone for UpdateAwsCredentialsSecret
impl Clone for UpdateAwsCredentialsSecret
Source§fn clone(&self) -> UpdateAwsCredentialsSecret
fn clone(&self) -> UpdateAwsCredentialsSecret
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 UpdateAwsCredentialsSecret
impl Debug for UpdateAwsCredentialsSecret
Source§impl<'de> Deserialize<'de> for UpdateAwsCredentialsSecret
impl<'de> Deserialize<'de> for UpdateAwsCredentialsSecret
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
impl StructuralPartialEq for UpdateAwsCredentialsSecret
Auto Trait Implementations§
impl Freeze for UpdateAwsCredentialsSecret
impl RefUnwindSafe for UpdateAwsCredentialsSecret
impl Send for UpdateAwsCredentialsSecret
impl Sync for UpdateAwsCredentialsSecret
impl Unpin for UpdateAwsCredentialsSecret
impl UnwindSafe for UpdateAwsCredentialsSecret
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