Struct aws_sdk_pipes::client::Client
source · pub struct Client { /* private fields */ }Expand description
Client for Amazon EventBridge Pipes
Client for invoking operations on Amazon EventBridge Pipes. Each operation on Amazon EventBridge Pipes is a method on this
this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.
Examples
Constructing a client and invoking an operation
// create a shared configuration. This can be used & shared between multiple service clients.
let shared_config = aws_config::load_from_env().await;
let client = aws_sdk_pipes::Client::new(&shared_config);
// invoke an operation
/* let rsp = client
.<operation_name>().
.<param>("some value")
.send().await; */Constructing a client with custom configuration
use aws_config::retry::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_pipes::config::Builder::from(&shared_config)
.retry_config(RetryConfig::disabled())
.build();
let client = aws_sdk_pipes::Client::from_conf(config);Implementations§
source§impl Client
impl Client
sourcepub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
pub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
Creates a client with the given service configuration.
source§impl Client
impl Client
sourcepub fn create_pipe(&self) -> CreatePipe
pub fn create_pipe(&self) -> CreatePipe
Constructs a fluent builder for the CreatePipe operation.
- The fluent builder is configurable:
name(impl Into<String>)/set_name(Option<String>):The name of the pipe.
description(impl Into<String>)/set_description(Option<String>):A description of the pipe.
desired_state(RequestedPipeState)/set_desired_state(Option<RequestedPipeState>):The state the pipe should be in.
source(impl Into<String>)/set_source(Option<String>):The ARN of the source resource.
source_parameters(PipeSourceParameters)/set_source_parameters(Option<PipeSourceParameters>):The parameters required to set up a source for your pipe.
enrichment(impl Into<String>)/set_enrichment(Option<String>):The ARN of the enrichment resource.
enrichment_parameters(PipeEnrichmentParameters)/set_enrichment_parameters(Option<PipeEnrichmentParameters>):The parameters required to set up enrichment on your pipe.
target(impl Into<String>)/set_target(Option<String>):The ARN of the target resource.
target_parameters(PipeTargetParameters)/set_target_parameters(Option<PipeTargetParameters>):The parameters required to set up a target for your pipe.
role_arn(impl Into<String>)/set_role_arn(Option<String>):The ARN of the role that allows the pipe to send data to the target.
tags(HashMap<String, String>)/set_tags(Option<HashMap<String, String>>):The list of key-value pairs to associate with the pipe.
- On success, responds with
CreatePipeOutputwith field(s):arn(Option<String>):The ARN of the pipe.
name(Option<String>):The name of the pipe.
desired_state(Option<RequestedPipeState>):The state the pipe should be in.
current_state(Option<PipeState>):The state the pipe is in.
creation_time(Option<DateTime>):The time the pipe was created.
last_modified_time(Option<DateTime>):When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
- On failure, responds with
SdkError<CreatePipeError>
sourcepub fn delete_pipe(&self) -> DeletePipe
pub fn delete_pipe(&self) -> DeletePipe
Constructs a fluent builder for the DeletePipe operation.
- The fluent builder is configurable:
name(impl Into<String>)/set_name(Option<String>):The name of the pipe.
- On success, responds with
DeletePipeOutputwith field(s):arn(Option<String>):The ARN of the pipe.
name(Option<String>):The name of the pipe.
desired_state(Option<RequestedPipeStateDescribeResponse>):The state the pipe should be in.
current_state(Option<PipeState>):The state the pipe is in.
creation_time(Option<DateTime>):The time the pipe was created.
last_modified_time(Option<DateTime>):When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
- On failure, responds with
SdkError<DeletePipeError>
sourcepub fn describe_pipe(&self) -> DescribePipe
pub fn describe_pipe(&self) -> DescribePipe
Constructs a fluent builder for the DescribePipe operation.
- The fluent builder is configurable:
name(impl Into<String>)/set_name(Option<String>):The name of the pipe.
- On success, responds with
DescribePipeOutputwith field(s):arn(Option<String>):The ARN of the pipe.
name(Option<String>):The name of the pipe.
description(Option<String>):A description of the pipe.
desired_state(Option<RequestedPipeStateDescribeResponse>):The state the pipe should be in.
current_state(Option<PipeState>):The state the pipe is in.
state_reason(Option<String>):The reason the pipe is in its current state.
source(Option<String>):The ARN of the source resource.
source_parameters(Option<PipeSourceParameters>):The parameters required to set up a source for your pipe.
enrichment(Option<String>):The ARN of the enrichment resource.
enrichment_parameters(Option<PipeEnrichmentParameters>):The parameters required to set up enrichment on your pipe.
target(Option<String>):The ARN of the target resource.
target_parameters(Option<PipeTargetParameters>):The parameters required to set up a target for your pipe.
role_arn(Option<String>):The ARN of the role that allows the pipe to send data to the target.
tags(Option<HashMap<String, String>>):The list of key-value pairs to associate with the pipe.
creation_time(Option<DateTime>):The time the pipe was created.
last_modified_time(Option<DateTime>):When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
- On failure, responds with
SdkError<DescribePipeError>
sourcepub fn list_pipes(&self) -> ListPipes
pub fn list_pipes(&self) -> ListPipes
Constructs a fluent builder for the ListPipes operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
name_prefix(impl Into<String>)/set_name_prefix(Option<String>):A value that will return a subset of the pipes associated with this account. For example,
“NamePrefix”: “ABC”will return all endpoints with “ABC” in the name.desired_state(RequestedPipeState)/set_desired_state(Option<RequestedPipeState>):The state the pipe should be in.
current_state(PipeState)/set_current_state(Option<PipeState>):The state the pipe is in.
source_prefix(impl Into<String>)/set_source_prefix(Option<String>):The prefix matching the pipe source.
target_prefix(impl Into<String>)/set_target_prefix(Option<String>):The prefix matching the pipe target.
next_token(impl Into<String>)/set_next_token(Option<String>):If
nextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.limit(i32)/set_limit(Option<i32>):The maximum number of pipes to include in the response.
- On success, responds with
ListPipesOutputwith field(s):pipes(Option<Vec<Pipe>>):The pipes returned by the call.
next_token(Option<String>):If
nextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
- On failure, responds with
SdkError<ListPipesError>
Constructs a fluent builder for the ListTagsForResource operation.
- The fluent builder is configurable:
resource_arn(impl Into<String>)/set_resource_arn(Option<String>):The ARN of the pipe for which you want to view tags.
- On success, responds with
ListTagsForResourceOutputwith field(s):tags(Option<HashMap<String, String>>):The list of key-value pairs to associate with the pipe.
- On failure, responds with
SdkError<ListTagsForResourceError>
sourcepub fn start_pipe(&self) -> StartPipe
pub fn start_pipe(&self) -> StartPipe
Constructs a fluent builder for the StartPipe operation.
- The fluent builder is configurable:
name(impl Into<String>)/set_name(Option<String>):The name of the pipe.
- On success, responds with
StartPipeOutputwith field(s):arn(Option<String>):The ARN of the pipe.
name(Option<String>):The name of the pipe.
desired_state(Option<RequestedPipeState>):The state the pipe should be in.
current_state(Option<PipeState>):The state the pipe is in.
creation_time(Option<DateTime>):The time the pipe was created.
last_modified_time(Option<DateTime>):When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
- On failure, responds with
SdkError<StartPipeError>
sourcepub fn stop_pipe(&self) -> StopPipe
pub fn stop_pipe(&self) -> StopPipe
Constructs a fluent builder for the StopPipe operation.
- The fluent builder is configurable:
name(impl Into<String>)/set_name(Option<String>):The name of the pipe.
- On success, responds with
StopPipeOutputwith field(s):arn(Option<String>):The ARN of the pipe.
name(Option<String>):The name of the pipe.
desired_state(Option<RequestedPipeState>):The state the pipe should be in.
current_state(Option<PipeState>):The state the pipe is in.
creation_time(Option<DateTime>):The time the pipe was created.
last_modified_time(Option<DateTime>):When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
- On failure, responds with
SdkError<StopPipeError>
sourcepub fn tag_resource(&self) -> TagResource
pub fn tag_resource(&self) -> TagResource
Constructs a fluent builder for the TagResource operation.
- The fluent builder is configurable:
resource_arn(impl Into<String>)/set_resource_arn(Option<String>):The ARN of the pipe.
tags(HashMap<String, String>)/set_tags(Option<HashMap<String, String>>):The list of key-value pairs associated with the pipe.
- On success, responds with
TagResourceOutput - On failure, responds with
SdkError<TagResourceError>
sourcepub fn untag_resource(&self) -> UntagResource
pub fn untag_resource(&self) -> UntagResource
Constructs a fluent builder for the UntagResource operation.
- The fluent builder is configurable:
resource_arn(impl Into<String>)/set_resource_arn(Option<String>):The ARN of the pipe.
tag_keys(Vec<String>)/set_tag_keys(Option<Vec<String>>):The list of tag keys to remove from the pipe.
- On success, responds with
UntagResourceOutput - On failure, responds with
SdkError<UntagResourceError>
sourcepub fn update_pipe(&self) -> UpdatePipe
pub fn update_pipe(&self) -> UpdatePipe
Constructs a fluent builder for the UpdatePipe operation.
- The fluent builder is configurable:
name(impl Into<String>)/set_name(Option<String>):The name of the pipe.
description(impl Into<String>)/set_description(Option<String>):A description of the pipe.
desired_state(RequestedPipeState)/set_desired_state(Option<RequestedPipeState>):The state the pipe should be in.
source_parameters(UpdatePipeSourceParameters)/set_source_parameters(Option<UpdatePipeSourceParameters>):The parameters required to set up a source for your pipe.
enrichment(impl Into<String>)/set_enrichment(Option<String>):The ARN of the enrichment resource.
enrichment_parameters(PipeEnrichmentParameters)/set_enrichment_parameters(Option<PipeEnrichmentParameters>):The parameters required to set up enrichment on your pipe.
target(impl Into<String>)/set_target(Option<String>):The ARN of the target resource.
target_parameters(PipeTargetParameters)/set_target_parameters(Option<PipeTargetParameters>):The parameters required to set up a target for your pipe.
role_arn(impl Into<String>)/set_role_arn(Option<String>):The ARN of the role that allows the pipe to send data to the target.
- On success, responds with
UpdatePipeOutputwith field(s):arn(Option<String>):The ARN of the pipe.
name(Option<String>):The name of the pipe.
desired_state(Option<RequestedPipeState>):The state the pipe should be in.
current_state(Option<PipeState>):The state the pipe is in.
creation_time(Option<DateTime>):The time the pipe was created.
last_modified_time(Option<DateTime>):When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
- On failure, responds with
SdkError<UpdatePipeError>
source§impl Client
impl Client
sourcepub fn new(sdk_config: &SdkConfig) -> Self
pub fn new(sdk_config: &SdkConfig) -> Self
Creates a new client from an SDK Config.
Panics
- This method will panic if the
sdk_configis missing an async sleep implementation. If you experience this panic, set thesleep_implon the Config passed into this function to fix it. - This method will panic if the
sdk_configis missing an HTTP connector. If you experience this panic, set thehttp_connectoron the Config passed into this function to fix it.
sourcepub fn from_conf(conf: Config) -> Self
pub fn from_conf(conf: Config) -> Self
Creates a new client from the service Config.
Panics
- This method will panic if the
confis missing an async sleep implementation. If you experience this panic, set thesleep_implon the Config passed into this function to fix it. - This method will panic if the
confis missing an HTTP connector. If you experience this panic, set thehttp_connectoron the Config passed into this function to fix it.