Interface CfnJobDefinition.ImagePullSecretProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJobDefinition.ImagePullSecretProperty.Jsii$Proxy
Enclosing class:
CfnJobDefinition

@Stability(Stable) public static interface CfnJobDefinition.ImagePullSecretProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.batch.*;
 ImagePullSecretProperty imagePullSecretProperty = ImagePullSecretProperty.builder()
         .name("name")
         .build();
 

See Also: