Struct aws_sdk_chime::operation::update_proxy_session::builders::UpdateProxySessionFluentBuilder
source · pub struct UpdateProxySessionFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateProxySession.
Updates the specified proxy session details, such as voice or SMS capabilities.
This API is is no longer supported and will not be updated. We recommend using the latest version, UpdateProxySession, in the Amazon Chime SDK.
Using the latest version requires migrating to a dedicated namespace. For more information, refer to Migrating from the Amazon Chime namespace in the Amazon Chime SDK Developer Guide.
Implementations§
source§impl UpdateProxySessionFluentBuilder
impl UpdateProxySessionFluentBuilder
sourcepub fn as_input(&self) -> &UpdateProxySessionInputBuilder
pub fn as_input(&self) -> &UpdateProxySessionInputBuilder
Access the UpdateProxySession as a reference.
sourcepub async fn send(
self
) -> Result<UpdateProxySessionOutput, SdkError<UpdateProxySessionError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateProxySessionOutput, SdkError<UpdateProxySessionError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<UpdateProxySessionOutput, UpdateProxySessionError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateProxySessionOutput, UpdateProxySessionError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn voice_connector_id(self, input: impl Into<String>) -> Self
pub fn voice_connector_id(self, input: impl Into<String>) -> Self
The Amazon Chime voice connector ID.
sourcepub fn set_voice_connector_id(self, input: Option<String>) -> Self
pub fn set_voice_connector_id(self, input: Option<String>) -> Self
The Amazon Chime voice connector ID.
sourcepub fn get_voice_connector_id(&self) -> &Option<String>
pub fn get_voice_connector_id(&self) -> &Option<String>
The Amazon Chime voice connector ID.
sourcepub fn proxy_session_id(self, input: impl Into<String>) -> Self
pub fn proxy_session_id(self, input: impl Into<String>) -> Self
The proxy session ID.
sourcepub fn set_proxy_session_id(self, input: Option<String>) -> Self
pub fn set_proxy_session_id(self, input: Option<String>) -> Self
The proxy session ID.
sourcepub fn get_proxy_session_id(&self) -> &Option<String>
pub fn get_proxy_session_id(&self) -> &Option<String>
The proxy session ID.
sourcepub fn capabilities(self, input: Capability) -> Self
pub fn capabilities(self, input: Capability) -> Self
Appends an item to Capabilities.
To override the contents of this collection use set_capabilities.
The proxy session capabilities.
sourcepub fn set_capabilities(self, input: Option<Vec<Capability>>) -> Self
pub fn set_capabilities(self, input: Option<Vec<Capability>>) -> Self
The proxy session capabilities.
sourcepub fn get_capabilities(&self) -> &Option<Vec<Capability>>
pub fn get_capabilities(&self) -> &Option<Vec<Capability>>
The proxy session capabilities.
sourcepub fn expiry_minutes(self, input: i32) -> Self
pub fn expiry_minutes(self, input: i32) -> Self
The number of minutes allowed for the proxy session.
sourcepub fn set_expiry_minutes(self, input: Option<i32>) -> Self
pub fn set_expiry_minutes(self, input: Option<i32>) -> Self
The number of minutes allowed for the proxy session.
sourcepub fn get_expiry_minutes(&self) -> &Option<i32>
pub fn get_expiry_minutes(&self) -> &Option<i32>
The number of minutes allowed for the proxy session.
Trait Implementations§
source§impl Clone for UpdateProxySessionFluentBuilder
impl Clone for UpdateProxySessionFluentBuilder
source§fn clone(&self) -> UpdateProxySessionFluentBuilder
fn clone(&self) -> UpdateProxySessionFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more