interface ImagePullSecretProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnJobDefinition.ImagePullSecretProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnJobDefinition_ImagePullSecretProperty |
Java | software.amazon.awscdk.services.batch.CfnJobDefinition.ImagePullSecretProperty |
Python | aws_cdk.aws_batch.CfnJobDefinition.ImagePullSecretProperty |
TypeScript | aws-cdk-lib » aws_batch » CfnJobDefinition » ImagePullSecretProperty |
References a Kubernetes secret resource.
This name of the secret must start and end with an alphanumeric character, is required to be lowercase, can include periods (.) and hyphens (-), and can't contain more than 253 characters.
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-lib';
const imagePullSecretProperty: batch.CfnJobDefinition.ImagePullSecretProperty = {
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Provides a unique identifier for the ImagePullSecret . |
name?
Type:
string
(optional)
Provides a unique identifier for the ImagePullSecret .
This object is required when EksPodProperties$imagePullSecrets is used.

.NET
Go
Java
Python
TypeScript