Class CfnJobDefinition.ImagePullSecretProperty
References a Kubernetes secret resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnJobDefinition.ImagePullSecretProperty : CfnJobDefinition.IImagePullSecretProperty
Syntax (vb)
Public Class CfnJobDefinition.ImagePullSecretProperty Implements CfnJobDefinition.IImagePullSecretProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Batch;
var imagePullSecretProperty = new ImagePullSecretProperty {
Name = "name"
};
Synopsis
Constructors
| ImagePullSecretProperty() | References a Kubernetes secret resource. |
Properties
| Name | Provides a unique identifier for the |
Constructors
ImagePullSecretProperty()
References a Kubernetes secret resource.
public ImagePullSecretProperty()
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Batch;
var imagePullSecretProperty = new ImagePullSecretProperty {
Name = "name"
};
Properties
Name
Provides a unique identifier for the ImagePullSecret .
public string? Name { get; set; }
Property Value
Remarks
This object is required when EksPodProperties$imagePullSecrets is used.