Struct aws_sdk_datapipeline::operation::create_pipeline::builders::CreatePipelineInputBuilder
source · #[non_exhaustive]pub struct CreatePipelineInputBuilder { /* private fields */ }
Expand description
A builder for CreatePipelineInput
.
Implementations§
source§impl CreatePipelineInputBuilder
impl CreatePipelineInputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
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.
This field is required.sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
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.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
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.
sourcepub fn unique_id(self, input: impl Into<String>) -> Self
pub fn unique_id(self, input: impl Into<String>) -> Self
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 CreatePipeline
. For example, if the first call to CreatePipeline
does not succeed, you can pass in the same unique identifier and pipeline name combination on a subsequent call to CreatePipeline
. CreatePipeline
ensures that if a pipeline already exists with the same name and unique identifier, a new pipeline is not created. Instead, you'll receive the pipeline identifier from the previous attempt. The uniqueness of the name and unique identifier combination is scoped to the AWS account or IAM user credentials.
sourcepub fn set_unique_id(self, input: Option<String>) -> Self
pub fn set_unique_id(self, input: Option<String>) -> Self
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 CreatePipeline
. For example, if the first call to CreatePipeline
does not succeed, you can pass in the same unique identifier and pipeline name combination on a subsequent call to CreatePipeline
. CreatePipeline
ensures that if a pipeline already exists with the same name and unique identifier, a new pipeline is not created. Instead, you'll receive the pipeline identifier from the previous attempt. The uniqueness of the name and unique identifier combination is scoped to the AWS account or IAM user credentials.
sourcepub fn get_unique_id(&self) -> &Option<String>
pub fn get_unique_id(&self) -> &Option<String>
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 CreatePipeline
. For example, if the first call to CreatePipeline
does not succeed, you can pass in the same unique identifier and pipeline name combination on a subsequent call to CreatePipeline
. CreatePipeline
ensures that if a pipeline already exists with the same name and unique identifier, a new pipeline is not created. Instead, you'll receive the pipeline identifier from the previous attempt. The uniqueness of the name and unique identifier combination is scoped to the AWS account or IAM user credentials.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description for the pipeline.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description for the pipeline.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description for the pipeline.
Appends an item to tags
.
To override the contents of this collection use set_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.
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.
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.
sourcepub fn build(self) -> Result<CreatePipelineInput, BuildError>
pub fn build(self) -> Result<CreatePipelineInput, BuildError>
Consumes the builder and constructs a CreatePipelineInput
.
source§impl CreatePipelineInputBuilder
impl CreatePipelineInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreatePipelineOutput, SdkError<CreatePipelineError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreatePipelineOutput, SdkError<CreatePipelineError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreatePipelineInputBuilder
impl Clone for CreatePipelineInputBuilder
source§fn clone(&self) -> CreatePipelineInputBuilder
fn clone(&self) -> CreatePipelineInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreatePipelineInputBuilder
impl Debug for CreatePipelineInputBuilder
source§impl Default for CreatePipelineInputBuilder
impl Default for CreatePipelineInputBuilder
source§fn default() -> CreatePipelineInputBuilder
fn default() -> CreatePipelineInputBuilder
source§impl PartialEq for CreatePipelineInputBuilder
impl PartialEq for CreatePipelineInputBuilder
source§fn eq(&self, other: &CreatePipelineInputBuilder) -> bool
fn eq(&self, other: &CreatePipelineInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.