pub struct Secrets {
pub inline: Option<Vec<InlineSecret>>,
pub secret_manager: Option<Vec<SecretManagerSecret>>,
}Expand description
Secrets and secret environment variables.
This type is not used in any activity, and only used as part of another schema.
Fields§
§inline: Option<Vec<InlineSecret>>Secrets encrypted with KMS key and the associated secret environment variable.
secret_manager: Option<Vec<SecretManagerSecret>>Secrets in Secret Manager and associated secret environment variable.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Secrets
impl<'de> Deserialize<'de> for Secrets
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 Part for Secrets
Auto Trait Implementations§
impl Freeze for Secrets
impl RefUnwindSafe for Secrets
impl Send for Secrets
impl Sync for Secrets
impl Unpin for Secrets
impl UnwindSafe for Secrets
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