CfnBlueprintMixinProps

class aws_cdk.cfn_property_mixins.aws_glue.CfnBlueprintMixinProps(*, blueprint_location=None, description=None, name=None, tags=None)

Bases: object

Properties for CfnBlueprintPropsMixin.

Parameters:
  • blueprint_location (Optional[str]) – Specifies a path in Amazon S3 where the blueprint is published.

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

  • name (Optional[str]) – The name of the blueprint.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags to be applied to this blueprint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-blueprint.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_glue as glue

cfn_blueprint_mixin_props = glue.CfnBlueprintMixinProps(
    blueprint_location="blueprintLocation",
    description="description",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

blueprint_location

Specifies a path in Amazon S3 where the blueprint is published.

See:

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

description

A description of the blueprint.

See:

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

name

The name of the blueprint.

See:

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

tags

The tags to be applied to this blueprint.

See:

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