interface RepositoryCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Batch.CfnJobDefinitionPropsMixin.RepositoryCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbatch#CfnJobDefinitionPropsMixin_RepositoryCredentialsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.batch.CfnJobDefinitionPropsMixin.RepositoryCredentialsProperty |
Python | aws_cdk.cfn_property_mixins.aws_batch.CfnJobDefinitionPropsMixin.RepositoryCredentialsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_batch » CfnJobDefinitionPropsMixin » RepositoryCredentialsProperty |
The repository credentials for private registry authentication.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as batch } from '@aws-cdk/cfn-property-mixins';
const repositoryCredentialsProperty: batch.CfnJobDefinitionPropsMixin.RepositoryCredentialsProperty = {
credentialsParameter: 'credentialsParameter',
};
Properties
| Name | Type | Description |
|---|---|---|
| credentials | string | The Amazon Resource Name (ARN) of the secret containing the private repository credentials. |
credentialsParameter?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the secret containing the private repository credentials.

.NET
Go
Java
Python
TypeScript