interface ImagePullSecretProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Batch.Mixins.CfnJobDefinitionPropsMixin.ImagePullSecretProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbatch/mixins#CfnJobDefinitionPropsMixin_ImagePullSecretProperty |
Java | software.amazon.awscdk.mixins.preview.services.batch.mixins.CfnJobDefinitionPropsMixin.ImagePullSecretProperty |
Python | aws_cdk.mixins_preview.aws_batch.mixins.CfnJobDefinitionPropsMixin.ImagePullSecretProperty |
TypeScript | @aws-cdk/mixins-preview » aws_batch » mixins » CfnJobDefinitionPropsMixin » 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 { mixins as batch_mixins } from '@aws-cdk/mixins-preview/aws-batch';
const imagePullSecretProperty: batch_mixins.CfnJobDefinitionPropsMixin.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