Create Blueprint
glue_create_blueprint | R Documentation |
Registers a blueprint with Glue¶
Description¶
Registers a blueprint with Glue.
Usage¶
glue_create_blueprint(Name, Description, BlueprintLocation, Tags)
Arguments¶
Name |
[required] The name of the blueprint. |
Description |
A description of the blueprint. |
BlueprintLocation |
[required] Specifies a path in Amazon S3 where the blueprint is published. |
Tags |
The tags to be applied to this blueprint. |
Value¶
A list with the following syntax:
list(
Name = "string"
)
Request syntax¶
svc$create_blueprint(
Name = "string",
Description = "string",
BlueprintLocation = "string",
Tags = list(
"string"
)
)