interface EksSecretProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnJobDefinition.EksSecretProperty |
Java | software.amazon.awscdk.services.batch.CfnJobDefinition.EksSecretProperty |
Python | aws_cdk.aws_batch.CfnJobDefinition.EksSecretProperty |
TypeScript | @aws-cdk/aws-batch » CfnJobDefinition » EksSecretProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as batch from '@aws-cdk/aws-batch';
const eksSecretProperty: batch.CfnJobDefinition.EksSecretProperty = {
secretName: 'secretName',
// the properties below are optional
optional: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| secret | string | CfnJobDefinition.EksSecretProperty.SecretName. |
| optional? | boolean | IResolvable | CfnJobDefinition.EksSecretProperty.Optional. |
secretName
Type:
string
CfnJobDefinition.EksSecretProperty.SecretName.
optional?
Type:
boolean | IResolvable
(optional)
CfnJobDefinition.EksSecretProperty.Optional.

.NET
Java
Python
TypeScript