pub struct AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails {
pub name: Option<String>,
pub value_from: Option<String>,
}Expand description
A secret to pass to the container.
Fields§
§name: Option<String>The name of the secret.
value_from: Option<String>The secret to expose to the container. The value is either the full ARN of the Secrets Manager secret or the full ARN of the parameter in the Systems Manager Parameter Store.
Trait Implementations§
Source§impl Clone for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
impl Clone for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
Source§fn clone(&self) -> AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
fn clone(&self) -> AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
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 Default for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
impl Default for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
Source§fn default() -> AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
fn default() -> AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
impl<'de> Deserialize<'de> for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
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 AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
impl PartialEq for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
Source§fn eq(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails,
) -> bool
fn eq( &self, other: &AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
Auto Trait Implementations§
impl Freeze for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
impl RefUnwindSafe for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
impl Send for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
impl Sync for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
impl Unpin for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
impl UnwindSafe for AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails
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