Show / Hide Table of Contents

Class CfnJobDefinition.ImagePullSecretProperty

References a Kubernetes secret resource.

Inheritance
object
CfnJobDefinition.ImagePullSecretProperty
Implements
CfnJobDefinition.IImagePullSecretProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-imagepullsecret.html

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 ImagePullSecret .

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-imagepullsecret.html

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

string

Remarks

This object is required when EksPodProperties$imagePullSecrets is used.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-imagepullsecret.html#cfn-batch-jobdefinition-imagepullsecret-name

Implements

CfnJobDefinition.IImagePullSecretProperty
Back to top Generated by DocFX