Create Pipeline
datapipeline_create_pipeline | R Documentation |
Creates a new, empty pipeline¶
Description¶
Creates a new, empty pipeline. Use put_pipeline_definition
to populate
the pipeline.
Usage¶
datapipeline_create_pipeline(name, uniqueId, description, tags)
Arguments¶
name |
[required] The name for the pipeline. You can use the same name for multiple pipelines associated with your AWS account, because AWS Data Pipeline assigns each pipeline a unique pipeline identifier. |
uniqueId |
[required] A unique identifier. This identifier is not the same
as the pipeline identifier assigned by AWS Data Pipeline. You are
responsible for defining the format and ensuring the uniqueness of this
identifier. You use this parameter to ensure idempotency during repeated
calls to |
description |
The description for the pipeline. |
tags |
A list of tags to associate with the pipeline at creation. Tags let you control access to pipelines. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide. |
Value¶
A list with the following syntax:
list(
pipelineId = "string"
)
Request syntax¶
svc$create_pipeline(
name = "string",
uniqueId = "string",
description = "string",
tags = list(
list(
key = "string",
value = "string"
)
)
)