Struct aws_sdk_chime::operation::describe_app_instance_admin::builders::DescribeAppInstanceAdminFluentBuilder
source · pub struct DescribeAppInstanceAdminFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DescribeAppInstanceAdmin.
Returns the full details of an AppInstanceAdmin.
This API is is no longer supported and will not be updated. We recommend using the latest version, DescribeAppInstanceAdmin, 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 DescribeAppInstanceAdminFluentBuilder
impl DescribeAppInstanceAdminFluentBuilder
sourcepub fn as_input(&self) -> &DescribeAppInstanceAdminInputBuilder
pub fn as_input(&self) -> &DescribeAppInstanceAdminInputBuilder
Access the DescribeAppInstanceAdmin as a reference.
sourcepub async fn send(
self
) -> Result<DescribeAppInstanceAdminOutput, SdkError<DescribeAppInstanceAdminError, HttpResponse>>
pub async fn send( self ) -> Result<DescribeAppInstanceAdminOutput, SdkError<DescribeAppInstanceAdminError, 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<DescribeAppInstanceAdminOutput, DescribeAppInstanceAdminError, Self>
pub fn customize( self ) -> CustomizableOperation<DescribeAppInstanceAdminOutput, DescribeAppInstanceAdminError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn app_instance_admin_arn(self, input: impl Into<String>) -> Self
pub fn app_instance_admin_arn(self, input: impl Into<String>) -> Self
The ARN of the AppInstanceAdmin.
sourcepub fn set_app_instance_admin_arn(self, input: Option<String>) -> Self
pub fn set_app_instance_admin_arn(self, input: Option<String>) -> Self
The ARN of the AppInstanceAdmin.
sourcepub fn get_app_instance_admin_arn(&self) -> &Option<String>
pub fn get_app_instance_admin_arn(&self) -> &Option<String>
The ARN of the AppInstanceAdmin.
sourcepub fn app_instance_arn(self, input: impl Into<String>) -> Self
pub fn app_instance_arn(self, input: impl Into<String>) -> Self
The ARN of the AppInstance.
sourcepub fn set_app_instance_arn(self, input: Option<String>) -> Self
pub fn set_app_instance_arn(self, input: Option<String>) -> Self
The ARN of the AppInstance.
sourcepub fn get_app_instance_arn(&self) -> &Option<String>
pub fn get_app_instance_arn(&self) -> &Option<String>
The ARN of the AppInstance.
Trait Implementations§
source§impl Clone for DescribeAppInstanceAdminFluentBuilder
impl Clone for DescribeAppInstanceAdminFluentBuilder
source§fn clone(&self) -> DescribeAppInstanceAdminFluentBuilder
fn clone(&self) -> DescribeAppInstanceAdminFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for DescribeAppInstanceAdminFluentBuilder
impl !RefUnwindSafe for DescribeAppInstanceAdminFluentBuilder
impl Send for DescribeAppInstanceAdminFluentBuilder
impl Sync for DescribeAppInstanceAdminFluentBuilder
impl Unpin for DescribeAppInstanceAdminFluentBuilder
impl !UnwindSafe for DescribeAppInstanceAdminFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more