interface CfnUsageProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnUsageProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnUsageProfileMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnUsageProfileMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnUsageProfileMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnUsageProfileMixinProps |
Properties for CfnUsageProfilePropsMixin.
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/cfn-property-mixins';
const cfnUsageProfileMixinProps: glue.CfnUsageProfileMixinProps = {
configuration: {
jobConfiguration: {
jobConfigurationKey: {
allowedValues: ['allowedValues'],
defaultValue: 'defaultValue',
maxValue: 'maxValue',
minValue: 'minValue',
},
},
sessionConfiguration: {
sessionConfigurationKey: {
allowedValues: ['allowedValues'],
defaultValue: 'defaultValue',
maxValue: 'maxValue',
minValue: 'minValue',
},
},
},
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration? | IResolvable | Profile | |
| description? | string | A description of the usage profile. |
| name? | string | The name of the usage profile. |
| tags? | Cfn[] | The tags to be applied to this UsageProfiles. |
configuration?
Type:
IResolvable | Profile
(optional)
description?
Type:
string
(optional)
A description of the usage profile.
name?
Type:
string
(optional)
The name of the usage profile.
tags?
Type:
Cfn[]
(optional)
The tags to be applied to this UsageProfiles.

.NET
Go
Java
Python
TypeScript