pub struct AwsCodeBuildProjectEnvironmentRegistryCredential {
pub credential: Option<String>,
pub credential_provider: Option<String>,
}
Expand description
The credentials for access to a private registry.
Fields§
§credential: Option<String>
The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.
The credential can use the name of the credentials only if they exist in your current AWS Region.
credential_provider: Option<String>
The service that created the credentials to access a private Docker registry.
The valid value, SECRETS_MANAGER
, is for AWS Secrets Manager.
Trait Implementations§
Source§impl Clone for AwsCodeBuildProjectEnvironmentRegistryCredential
impl Clone for AwsCodeBuildProjectEnvironmentRegistryCredential
Source§fn clone(&self) -> AwsCodeBuildProjectEnvironmentRegistryCredential
fn clone(&self) -> AwsCodeBuildProjectEnvironmentRegistryCredential
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 Default for AwsCodeBuildProjectEnvironmentRegistryCredential
impl Default for AwsCodeBuildProjectEnvironmentRegistryCredential
Source§fn default() -> AwsCodeBuildProjectEnvironmentRegistryCredential
fn default() -> AwsCodeBuildProjectEnvironmentRegistryCredential
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsCodeBuildProjectEnvironmentRegistryCredential
impl<'de> Deserialize<'de> for AwsCodeBuildProjectEnvironmentRegistryCredential
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 AwsCodeBuildProjectEnvironmentRegistryCredential
impl PartialEq for AwsCodeBuildProjectEnvironmentRegistryCredential
Source§fn eq(&self, other: &AwsCodeBuildProjectEnvironmentRegistryCredential) -> bool
fn eq(&self, other: &AwsCodeBuildProjectEnvironmentRegistryCredential) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AwsCodeBuildProjectEnvironmentRegistryCredential
Auto Trait Implementations§
impl Freeze for AwsCodeBuildProjectEnvironmentRegistryCredential
impl RefUnwindSafe for AwsCodeBuildProjectEnvironmentRegistryCredential
impl Send for AwsCodeBuildProjectEnvironmentRegistryCredential
impl Sync for AwsCodeBuildProjectEnvironmentRegistryCredential
impl Unpin for AwsCodeBuildProjectEnvironmentRegistryCredential
impl UnwindSafe for AwsCodeBuildProjectEnvironmentRegistryCredential
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