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
source§fn eq(&self, other: &CreateChannelInput) -> bool
fn eq(&self, other: &CreateChannelInput) -> bool
self and other values to be equal, and is used
by ==.