interface CfnUsageProfileProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnUsageProfileProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnUsageProfileProps |
Java | software.amazon.awscdk.services.glue.CfnUsageProfileProps |
Python | aws_cdk.aws_glue.CfnUsageProfileProps |
TypeScript | aws-cdk-lib » aws_glue » CfnUsageProfileProps |
Properties for defining a CfnUsageProfile.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html
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 cfnUsageProfileProps: glue.CfnUsageProfileProps = {
name: 'name',
// the properties below are optional
configuration: {
jobConfiguration: {
jobConfigurationKey: {
allowedValues: ['allowedValues'],
defaultValue: 'defaultValue',
maxValue: 'maxValue',
minValue: 'minValue',
},
},
sessionConfiguration: {
sessionConfigurationKey: {
allowedValues: ['allowedValues'],
defaultValue: 'defaultValue',
maxValue: 'maxValue',
minValue: 'minValue',
},
},
},
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the usage profile. |
| configuration? | IResolvable | Profile | |
| description? | string | A description of the usage profile. |
| tags? | Cfn[] | The tags to be applied to this UsageProfiles. |
name
Type:
string
The name of the usage profile.
configuration?
Type:
IResolvable | Profile
(optional)
description?
Type:
string
(optional)
A description of the usage profile.
tags?
Type:
Cfn[]
(optional)
The tags to be applied to this UsageProfiles.

.NET
Go
Java
Python
TypeScript