#[non_exhaustive]pub struct CreatePipeInputBuilder { /* private fields */ }
Expand description
A builder for CreatePipeInput
.
Implementations§
source§impl CreatePipeInputBuilder
impl CreatePipeInputBuilder
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the pipe.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the pipe.
sourcepub fn desired_state(self, input: RequestedPipeState) -> Self
pub fn desired_state(self, input: RequestedPipeState) -> Self
The state the pipe should be in.
sourcepub fn set_desired_state(self, input: Option<RequestedPipeState>) -> Self
pub fn set_desired_state(self, input: Option<RequestedPipeState>) -> Self
The state the pipe should be in.
sourcepub fn set_source(self, input: Option<String>) -> Self
pub fn set_source(self, input: Option<String>) -> Self
The ARN of the source resource.
sourcepub fn source_parameters(self, input: PipeSourceParameters) -> Self
pub fn source_parameters(self, input: PipeSourceParameters) -> Self
The parameters required to set up a source for your pipe.
sourcepub fn set_source_parameters(self, input: Option<PipeSourceParameters>) -> Self
pub fn set_source_parameters(self, input: Option<PipeSourceParameters>) -> Self
The parameters required to set up a source for your pipe.
sourcepub fn enrichment(self, input: impl Into<String>) -> Self
pub fn enrichment(self, input: impl Into<String>) -> Self
The ARN of the enrichment resource.
sourcepub fn set_enrichment(self, input: Option<String>) -> Self
pub fn set_enrichment(self, input: Option<String>) -> Self
The ARN of the enrichment resource.
sourcepub fn enrichment_parameters(self, input: PipeEnrichmentParameters) -> Self
pub fn enrichment_parameters(self, input: PipeEnrichmentParameters) -> Self
The parameters required to set up enrichment on your pipe.
sourcepub fn set_enrichment_parameters(
self,
input: Option<PipeEnrichmentParameters>
) -> Self
pub fn set_enrichment_parameters( self, input: Option<PipeEnrichmentParameters> ) -> Self
The parameters required to set up enrichment on your pipe.
sourcepub fn set_target(self, input: Option<String>) -> Self
pub fn set_target(self, input: Option<String>) -> Self
The ARN of the target resource.
sourcepub fn target_parameters(self, input: PipeTargetParameters) -> Self
pub fn target_parameters(self, input: PipeTargetParameters) -> Self
The parameters required to set up a target for your pipe.
sourcepub fn set_target_parameters(self, input: Option<PipeTargetParameters>) -> Self
pub fn set_target_parameters(self, input: Option<PipeTargetParameters>) -> Self
The parameters required to set up a target for your pipe.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The ARN of the role that allows the pipe to send data to the target.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The ARN of the role that allows the pipe to send data to the target.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
The list of key-value pairs to associate with the pipe.
The list of key-value pairs to associate with the pipe.
sourcepub fn build(self) -> Result<CreatePipeInput, BuildError>
pub fn build(self) -> Result<CreatePipeInput, BuildError>
Consumes the builder and constructs a CreatePipeInput
.
Trait Implementations§
source§impl Clone for CreatePipeInputBuilder
impl Clone for CreatePipeInputBuilder
source§fn clone(&self) -> CreatePipeInputBuilder
fn clone(&self) -> CreatePipeInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreatePipeInputBuilder
impl Debug for CreatePipeInputBuilder
source§impl Default for CreatePipeInputBuilder
impl Default for CreatePipeInputBuilder
source§fn default() -> CreatePipeInputBuilder
fn default() -> CreatePipeInputBuilder
source§impl PartialEq<CreatePipeInputBuilder> for CreatePipeInputBuilder
impl PartialEq<CreatePipeInputBuilder> for CreatePipeInputBuilder
source§fn eq(&self, other: &CreatePipeInputBuilder) -> bool
fn eq(&self, other: &CreatePipeInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.