Class: Aws::CodeBuild::Types::RegistryCredential
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::RegistryCredential
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
When making an API call, you may pass RegistryCredential data as a hash:
{
credential: "NonEmptyString", # required
credential_provider: "SECRETS_MANAGER", # required, accepts SECRETS_MANAGER
}
Information about credentials that provide access to a private Docker registry. When this is set:
imagePullCredentialsType
must be set toSERVICE_ROLE
.images cannot be curated or an Amazon ECR image.
For more information, see Private Registry with Secrets Manager Sample for CodeBuild.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#credential ⇒ String
The Amazon Resource Name (ARN) or name of credentials created using Secrets Manager.
-
#credential_provider ⇒ String
The service that created the credentials to access a private Docker registry.
Instance Attribute Details
#credential ⇒ String
The Amazon Resource Name (ARN) or name of credentials created using Secrets Manager.
credential
can use the name of the credentials only if they
exist in your current Amazon Web Services Region.
4885 4886 4887 4888 4889 4890 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4885 class RegistryCredential < Struct.new( :credential, :credential_provider) SENSITIVE = [] include Aws::Structure end |
#credential_provider ⇒ String
The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for Secrets Manager.
4885 4886 4887 4888 4889 4890 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4885 class RegistryCredential < Struct.new( :credential, :credential_provider) SENSITIVE = [] include Aws::Structure end |