Struct aws_sdk_pipes::client::fluent_builders::UpdatePipe
source · pub struct UpdatePipe { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdatePipe
.
Update an existing pipe. When you call UpdatePipe
, only the fields that are included in the request are changed, the rest are unchanged. The exception to this is if you modify any Amazon Web Services-service specific fields in the SourceParameters
, EnrichmentParameters
, or TargetParameters
objects. The fields in these objects are updated atomically as one and override existing values. This is by design and means that if you don't specify an optional field in one of these Parameters objects, that field will be set to its system-default value after the update.
For more information about pipes, see Amazon EventBridge Pipes in the Amazon EventBridge User Guide.
Implementations§
source§impl UpdatePipe
impl UpdatePipe
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdatePipe, AwsResponseRetryClassifier>, SdkError<UpdatePipeError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdatePipe, AwsResponseRetryClassifier>, SdkError<UpdatePipeError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(self) -> Result<UpdatePipeOutput, SdkError<UpdatePipeError>>
pub async fn send(self) -> Result<UpdatePipeOutput, SdkError<UpdatePipeError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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 source_parameters(self, input: UpdatePipeSourceParameters) -> Self
pub fn source_parameters(self, input: UpdatePipeSourceParameters) -> Self
The parameters required to set up a source for your pipe.
sourcepub fn set_source_parameters(
self,
input: Option<UpdatePipeSourceParameters>
) -> Self
pub fn set_source_parameters(
self,
input: Option<UpdatePipeSourceParameters>
) -> 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.
Trait Implementations§
source§impl Clone for UpdatePipe
impl Clone for UpdatePipe
source§fn clone(&self) -> UpdatePipe
fn clone(&self) -> UpdatePipe
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more