CfnUsageProfileProps
- class aws_cdk.aws_glue.CfnUsageProfileProps(*, name, configuration=None, description=None, tags=None)
Bases:
object
Properties for defining a
CfnUsageProfile
.- Parameters:
name (
str
) – The name of the usage profile.configuration (
Union
[IResolvable
,ProfileConfigurationProperty
,Dict
[str
,Any
],None
]) –description (
Optional
[str
]) – A description of the usage profile.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags to be applied to this UsageProfiles.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_glue as glue cfn_usage_profile_props = glue.CfnUsageProfileProps( name="name", # the properties below are optional configuration=glue.CfnUsageProfile.ProfileConfigurationProperty( job_configuration={ "job_configuration_key": glue.CfnUsageProfile.ConfigurationObjectProperty( allowed_values=["allowedValues"], default_value="defaultValue", max_value="maxValue", min_value="minValue" ) }, session_configuration={ "session_configuration_key": glue.CfnUsageProfile.ConfigurationObjectProperty( allowed_values=["allowedValues"], default_value="defaultValue", max_value="maxValue", min_value="minValue" ) } ), description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- configuration
-
- Type:
see
- description
A description of the usage profile.
- name
The name of the usage profile.
- tags
The tags to be applied to this UsageProfiles.