interface ConfigurationObjectProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.CfnUsageProfile.ConfigurationObjectProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnUsageProfile_ConfigurationObjectProperty |
![]() | software.amazon.awscdk.services.glue.CfnUsageProfile.ConfigurationObjectProperty |
![]() | aws_cdk.aws_glue.CfnUsageProfile.ConfigurationObjectProperty |
![]() | aws-cdk-lib » aws_glue » CfnUsageProfile » 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 { aws_glue as glue } from 'aws-cdk-lib';
const configurationObjectProperty: glue.CfnUsageProfile.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.