interface CfnBlueprintMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnBlueprintMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnBlueprintMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnBlueprintMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnBlueprintMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnBlueprintMixinProps |
Properties for CfnBlueprintPropsMixin.
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/cfn-property-mixins';
const cfnBlueprintMixinProps: glue.CfnBlueprintMixinProps = {
blueprintLocation: 'blueprintLocation',
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| blueprint | string | Specifies a path in Amazon S3 where the blueprint is published. |
| description? | string | A description of the blueprint. |
| name? | string | The name of the blueprint. |
| tags? | Cfn[] | The tags to be applied to this blueprint. |
blueprintLocation?
Type:
string
(optional)
Specifies a path in Amazon S3 where the blueprint is published.
description?
Type:
string
(optional)
A description of the blueprint.
name?
Type:
string
(optional)
The name of the blueprint.
tags?
Type:
Cfn[]
(optional)
The tags to be applied to this blueprint.

.NET
Go
Java
Python
TypeScript