aws-cdk-lib.aws_codebuild.CfnProject.RegistryCredentialProperty

interface RegistryCredentialProperty

LanguageType name
.NETAmazon.CDK.AWS.CodeBuild.CfnProject.RegistryCredentialProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodebuild#CfnProject_RegistryCredentialProperty
Javasoftware.amazon.awscdk.services.codebuild.CfnProject.RegistryCredentialProperty
Pythonaws_cdk.aws_codebuild.CfnProject.RegistryCredentialProperty
TypeScript aws-cdk-lib » aws_codebuild » CfnProject » RegistryCredentialProperty

RegistryCredential is a property of the AWS CodeBuild Project Environment property type that specifies information about credentials that provide access to a private Docker registry. When this is set:.

  • imagePullCredentialsType must be set to SERVICE_ROLE .
  • images cannot be curated or an Amazon ECR image.

For more information, see Private Registry with AWS Secrets Manager Sample for AWS CodeBuild .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codebuild as codebuild } from 'aws-cdk-lib';
const registryCredentialProperty: codebuild.CfnProject.RegistryCredentialProperty = {
  credential: 'credential',
  credentialProvider: 'credentialProvider',
};

Properties

NameTypeDescription
credentialstringThe Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager .
credentialProviderstringThe service that created the credentials to access a private Docker registry.

credential

Type: 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 .


credentialProvider

Type: string

The service that created the credentials to access a private Docker registry.

The valid value, SECRETS_MANAGER, is for AWS Secrets Manager .