CfnBlueprintProps
- class aws_cdk.aws_glue.CfnBlueprintProps(*, blueprint_location, name, description=None, tags=None)
Bases:
objectProperties for defining a
CfnBlueprint.- Parameters:
blueprint_location (
str) – Specifies a path in Amazon S3 where the blueprint is published.name (
str) – The name of the blueprint.description (
Optional[str]) – A description 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 import aws_glue as glue cfn_blueprint_props = glue.CfnBlueprintProps( blueprint_location="blueprintLocation", name="name", # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- blueprint_location
Specifies a path in Amazon S3 where the blueprint is published.
- description
A description of the blueprint.
- name
The name of the blueprint.
- tags
The tags to be applied to this blueprint.