Struct aws_sdk_chimesdkidentity::operation::update_app_instance_user_endpoint::UpdateAppInstanceUserEndpointInput
source · #[non_exhaustive]pub struct UpdateAppInstanceUserEndpointInput {
pub app_instance_user_arn: Option<String>,
pub endpoint_id: Option<String>,
pub name: Option<String>,
pub allow_messages: Option<AllowMessages>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.app_instance_user_arn: Option<String>The ARN of the AppInstanceUser.
endpoint_id: Option<String>The unique identifier of the AppInstanceUserEndpoint.
name: Option<String>The name of the AppInstanceUserEndpoint.
allow_messages: Option<AllowMessages>Boolean that controls whether the AppInstanceUserEndpoint is opted in to receive messages. ALL indicates the endpoint will receive all messages. NONE indicates the endpoint will receive no messages.
Implementations§
source§impl UpdateAppInstanceUserEndpointInput
impl UpdateAppInstanceUserEndpointInput
sourcepub fn app_instance_user_arn(&self) -> Option<&str>
pub fn app_instance_user_arn(&self) -> Option<&str>
The ARN of the AppInstanceUser.
sourcepub fn endpoint_id(&self) -> Option<&str>
pub fn endpoint_id(&self) -> Option<&str>
The unique identifier of the AppInstanceUserEndpoint.
sourcepub fn allow_messages(&self) -> Option<&AllowMessages>
pub fn allow_messages(&self) -> Option<&AllowMessages>
Boolean that controls whether the AppInstanceUserEndpoint is opted in to receive messages. ALL indicates the endpoint will receive all messages. NONE indicates the endpoint will receive no messages.
source§impl UpdateAppInstanceUserEndpointInput
impl UpdateAppInstanceUserEndpointInput
sourcepub fn builder() -> UpdateAppInstanceUserEndpointInputBuilder
pub fn builder() -> UpdateAppInstanceUserEndpointInputBuilder
Creates a new builder-style object to manufacture UpdateAppInstanceUserEndpointInput.
Trait Implementations§
source§impl Clone for UpdateAppInstanceUserEndpointInput
impl Clone for UpdateAppInstanceUserEndpointInput
source§fn clone(&self) -> UpdateAppInstanceUserEndpointInput
fn clone(&self) -> UpdateAppInstanceUserEndpointInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq for UpdateAppInstanceUserEndpointInput
impl PartialEq for UpdateAppInstanceUserEndpointInput
source§fn eq(&self, other: &UpdateAppInstanceUserEndpointInput) -> bool
fn eq(&self, other: &UpdateAppInstanceUserEndpointInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateAppInstanceUserEndpointInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateAppInstanceUserEndpointInput
impl Send for UpdateAppInstanceUserEndpointInput
impl Sync for UpdateAppInstanceUserEndpointInput
impl Unpin for UpdateAppInstanceUserEndpointInput
impl UnwindSafe for UpdateAppInstanceUserEndpointInput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.