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
impl StructuralPartialEq for CreatePipelineInputBuilder
Auto Trait Implementations§
impl Freeze for CreatePipelineInputBuilder
impl RefUnwindSafe for CreatePipelineInputBuilder
impl Send for CreatePipelineInputBuilder
impl Sync for CreatePipelineInputBuilder
impl Unpin for CreatePipelineInputBuilder
impl UnwindSafe for CreatePipelineInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more