Struct aws_sdk_chime::operation::create_channel::CreateChannelInput
source · #[non_exhaustive]pub struct CreateChannelInput {
pub app_instance_arn: Option<String>,
pub name: Option<String>,
pub mode: Option<ChannelMode>,
pub privacy: Option<ChannelPrivacy>,
pub metadata: Option<String>,
pub client_request_token: Option<String>,
pub tags: Option<Vec<Tag>>,
pub chime_bearer: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.app_instance_arn: Option<String>The ARN of the channel request.
name: Option<String>The name of the channel.
mode: Option<ChannelMode>The channel mode: UNRESTRICTED or RESTRICTED. Administrators, moderators, and channel members can add themselves and other members to unrestricted channels. Only administrators and moderators can add members to restricted channels.
privacy: Option<ChannelPrivacy>The channel's privacy level: PUBLIC or PRIVATE. Private channels aren't discoverable by users outside the channel. Public channels are discoverable by anyone in the AppInstance.
metadata: Option<String>The metadata of the creation request. Limited to 1KB and UTF-8.
client_request_token: Option<String>The client token for the request. An Idempotency token.
The tags for the creation request.
chime_bearer: Option<String>The AppInstanceUserArn of the user that makes the API call.
Implementations§
source§impl CreateChannelInput
impl CreateChannelInput
sourcepub fn app_instance_arn(&self) -> Option<&str>
pub fn app_instance_arn(&self) -> Option<&str>
The ARN of the channel request.
sourcepub fn mode(&self) -> Option<&ChannelMode>
pub fn mode(&self) -> Option<&ChannelMode>
The channel mode: UNRESTRICTED or RESTRICTED. Administrators, moderators, and channel members can add themselves and other members to unrestricted channels. Only administrators and moderators can add members to restricted channels.
sourcepub fn privacy(&self) -> Option<&ChannelPrivacy>
pub fn privacy(&self) -> Option<&ChannelPrivacy>
The channel's privacy level: PUBLIC or PRIVATE. Private channels aren't discoverable by users outside the channel. Public channels are discoverable by anyone in the AppInstance.
sourcepub fn metadata(&self) -> Option<&str>
pub fn metadata(&self) -> Option<&str>
The metadata of the creation request. Limited to 1KB and UTF-8.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
The client token for the request. An Idempotency token.
The tags for the creation request.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
sourcepub fn chime_bearer(&self) -> Option<&str>
pub fn chime_bearer(&self) -> Option<&str>
The AppInstanceUserArn of the user that makes the API call.
source§impl CreateChannelInput
impl CreateChannelInput
sourcepub fn builder() -> CreateChannelInputBuilder
pub fn builder() -> CreateChannelInputBuilder
Creates a new builder-style object to manufacture CreateChannelInput.
Trait Implementations§
source§impl Clone for CreateChannelInput
impl Clone for CreateChannelInput
source§fn clone(&self) -> CreateChannelInput
fn clone(&self) -> CreateChannelInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateChannelInput
impl Debug for CreateChannelInput
source§impl PartialEq for CreateChannelInput
impl PartialEq for CreateChannelInput
impl StructuralPartialEq for CreateChannelInput
Auto Trait Implementations§
impl Freeze for CreateChannelInput
impl RefUnwindSafe for CreateChannelInput
impl Send for CreateChannelInput
impl Sync for CreateChannelInput
impl Unpin for CreateChannelInput
impl UnwindSafe for CreateChannelInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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