pub struct RepositoryCredentials {
pub credentials_parameter: String,
}
Expand description
The repository credentials for private registry authentication.
Fields§
§credentials_parameter: String
The Amazon Resource Name (ARN) of the secret containing the private repository credentials.
When you are using the Amazon ECS API, AWS CLI, or AWS SDK, if the secret exists in the same Region as the task that you are launching then you can use either the full ARN or the name of the secret. When you are using the AWS Management Console, you must specify the full ARN of the secret.
Trait Implementations§
Source§impl Clone for RepositoryCredentials
impl Clone for RepositoryCredentials
Source§fn clone(&self) -> RepositoryCredentials
fn clone(&self) -> RepositoryCredentials
Returns a copy 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 RepositoryCredentials
impl Debug for RepositoryCredentials
Source§impl Default for RepositoryCredentials
impl Default for RepositoryCredentials
Source§fn default() -> RepositoryCredentials
fn default() -> RepositoryCredentials
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepositoryCredentials
impl<'de> Deserialize<'de> for RepositoryCredentials
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 RepositoryCredentials
impl PartialEq for RepositoryCredentials
Source§impl Serialize for RepositoryCredentials
impl Serialize for RepositoryCredentials
impl StructuralPartialEq for RepositoryCredentials
Auto Trait Implementations§
impl Freeze for RepositoryCredentials
impl RefUnwindSafe for RepositoryCredentials
impl Send for RepositoryCredentials
impl Sync for RepositoryCredentials
impl Unpin for RepositoryCredentials
impl UnwindSafe for RepositoryCredentials
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