pub struct PutEventsConfiguration { /* private fields */ }Expand description
Fluent builder constructing a request to PutEventsConfiguration.
Creates an events configuration that allows a bot to receive outgoing events sent by Amazon Chime. Choose either an HTTPS endpoint or a Lambda function ARN. For more information, see Bot.
Implementations
sourceimpl PutEventsConfiguration
impl PutEventsConfiguration
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<PutEventsConfiguration, AwsResponseRetryClassifier>, SdkError<PutEventsConfigurationError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<PutEventsConfiguration, AwsResponseRetryClassifier>, SdkError<PutEventsConfigurationError>>
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<PutEventsConfigurationOutput, SdkError<PutEventsConfigurationError>>
pub async fn send(
self
) -> Result<PutEventsConfigurationOutput, SdkError<PutEventsConfigurationError>>
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 account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The Amazon Chime account ID.
sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The Amazon Chime account ID.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The bot ID.
sourcepub fn outbound_events_https_endpoint(self, input: impl Into<String>) -> Self
pub fn outbound_events_https_endpoint(self, input: impl Into<String>) -> Self
HTTPS endpoint that allows the bot to receive outgoing events.
sourcepub fn set_outbound_events_https_endpoint(self, input: Option<String>) -> Self
pub fn set_outbound_events_https_endpoint(self, input: Option<String>) -> Self
HTTPS endpoint that allows the bot to receive outgoing events.
sourcepub fn lambda_function_arn(self, input: impl Into<String>) -> Self
pub fn lambda_function_arn(self, input: impl Into<String>) -> Self
Lambda function ARN that allows the bot to receive outgoing events.
sourcepub fn set_lambda_function_arn(self, input: Option<String>) -> Self
pub fn set_lambda_function_arn(self, input: Option<String>) -> Self
Lambda function ARN that allows the bot to receive outgoing events.
Trait Implementations
sourceimpl Clone for PutEventsConfiguration
impl Clone for PutEventsConfiguration
sourcefn clone(&self) -> PutEventsConfiguration
fn clone(&self) -> PutEventsConfiguration
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more