#[non_exhaustive]pub struct CreateChannelGroupInput {
pub channel_group_name: Option<String>,
pub client_token: Option<String>,
pub description: Option<String>,
pub tags: Option<HashMap<String, 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.channel_group_name: Option<String>
The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region. You can't use spaces in the name. You can't change the name after you create the channel group.
client_token: Option<String>
A unique, case-sensitive token that you provide to ensure the idempotency of the request.
description: Option<String>
Enter any descriptive text that helps you to identify the channel group.
A comma-separated list of tag key:value pairs that you define. For example:
"Key1": "Value1",
"Key2": "Value2"
Implementations§
source§impl CreateChannelGroupInput
impl CreateChannelGroupInput
sourcepub fn channel_group_name(&self) -> Option<&str>
pub fn channel_group_name(&self) -> Option<&str>
The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region. You can't use spaces in the name. You can't change the name after you create the channel group.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive token that you provide to ensure the idempotency of the request.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Enter any descriptive text that helps you to identify the channel group.
A comma-separated list of tag key:value pairs that you define. For example:
"Key1": "Value1",
"Key2": "Value2"
source§impl CreateChannelGroupInput
impl CreateChannelGroupInput
sourcepub fn builder() -> CreateChannelGroupInputBuilder
pub fn builder() -> CreateChannelGroupInputBuilder
Creates a new builder-style object to manufacture CreateChannelGroupInput
.
Trait Implementations§
source§impl Clone for CreateChannelGroupInput
impl Clone for CreateChannelGroupInput
source§fn clone(&self) -> CreateChannelGroupInput
fn clone(&self) -> CreateChannelGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateChannelGroupInput
impl Debug for CreateChannelGroupInput
source§impl PartialEq for CreateChannelGroupInput
impl PartialEq for CreateChannelGroupInput
source§fn eq(&self, other: &CreateChannelGroupInput) -> bool
fn eq(&self, other: &CreateChannelGroupInput) -> bool
self
and other
values to be equal, and is used
by ==
.