interface CfnBlueprintProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnBlueprintProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnBlueprintProps |
Java | software.amazon.awscdk.services.glue.CfnBlueprintProps |
Python | aws_cdk.aws_glue.CfnBlueprintProps |
TypeScript | aws-cdk-lib » aws_glue » CfnBlueprintProps |
Properties for defining a CfnBlueprint.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-blueprint.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-lib';
const cfnBlueprintProps: glue.CfnBlueprintProps = {
blueprintLocation: 'blueprintLocation',
name: 'name',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| blueprint | string | Specifies a path in Amazon S3 where the blueprint is published. |
| name | string | The name of the blueprint. |
| description? | string | A description of the blueprint. |
| tags? | Cfn[] | The tags to be applied to this blueprint. |
blueprintLocation
Type:
string
Specifies a path in Amazon S3 where the blueprint is published.
name
Type:
string
The name of the blueprint.
description?
Type:
string
(optional)
A description of the blueprint.
tags?
Type:
Cfn[]
(optional)
The tags to be applied to this blueprint.

.NET
Go
Java
Python
TypeScript