CfnUsageProfileMixinProps

class aws_cdk.mixins_preview.aws_glue.mixins.CfnUsageProfileMixinProps(*, configuration=None, description=None, name=None, tags=None)

Bases: object

Properties for CfnUsageProfilePropsMixin.

Parameters:
  • configuration (Union[IResolvable, ProfileConfigurationProperty, Dict[str, Any], None])

  • description (Optional[str]) – A description of the usage profile.

  • name (Optional[str]) – The name 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.mixins_preview.aws_glue import mixins as glue_mixins

cfn_usage_profile_mixin_props = glue_mixins.CfnUsageProfileMixinProps(
    configuration=glue_mixins.CfnUsageProfilePropsMixin.ProfileConfigurationProperty(
        job_configuration={
            "job_configuration_key": glue_mixins.CfnUsageProfilePropsMixin.ConfigurationObjectProperty(
                allowed_values=["allowedValues"],
                default_value="defaultValue",
                max_value="maxValue",
                min_value="minValue"
            )
        },
        session_configuration={
            "session_configuration_key": glue_mixins.CfnUsageProfilePropsMixin.ConfigurationObjectProperty(
                allowed_values=["allowedValues"],
                default_value="defaultValue",
                max_value="maxValue",
                min_value="minValue"
            )
        }
    ),
    description="description",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

configuration

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#cfn-glue-usageprofile-configuration

Type:

see

description

A description of the usage profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#cfn-glue-usageprofile-description

name

The name of the usage profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#cfn-glue-usageprofile-name

tags

The tags to be applied to this UsageProfiles.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#cfn-glue-usageprofile-tags