interface ConfigurationObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnUsageProfilePropsMixin.ConfigurationObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnUsageProfilePropsMixin_ConfigurationObjectProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnUsageProfilePropsMixin.ConfigurationObjectProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnUsageProfilePropsMixin.ConfigurationObjectProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnUsageProfilePropsMixin » ConfigurationObjectProperty |
Specifies the values that an admin sets for each job or session parameter configured in a AWS Glue usage profile.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const configurationObjectProperty: glue_mixins.CfnUsageProfilePropsMixin.ConfigurationObjectProperty = {
allowedValues: ['allowedValues'],
defaultValue: 'defaultValue',
maxValue: 'maxValue',
minValue: 'minValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | A list of allowed values for the parameter. |
| default | string | A default value for the parameter. |
| max | string | A maximum allowed value for the parameter. |
| min | string | A minimum allowed value for the parameter. |
allowedValues?
Type:
string[]
(optional)
A list of allowed values for the parameter.
defaultValue?
Type:
string
(optional)
A default value for the parameter.
maxValue?
Type:
string
(optional)
A maximum allowed value for the parameter.
minValue?
Type:
string
(optional)
A minimum allowed value for the parameter.

.NET
Go
Java
Python
TypeScript