#[non_exhaustive]pub struct CreateChannelOutput {
pub arn: String,
pub channel_name: String,
pub channel_group_name: String,
pub created_at: DateTime,
pub modified_at: DateTime,
pub description: Option<String>,
pub ingest_endpoints: Option<Vec<IngestEndpoint>>,
pub tags: Option<HashMap<String, String>>,
/* private fields */
}
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.arn: String
The Amazon Resource Name (ARN) associated with the resource.
channel_name: String
The name that describes the channel. The name is the primary identifier for the channel, and must be unique for your account in the AWS Region and channel group.
channel_group_name: 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.
created_at: DateTime
The date and time the channel was created.
modified_at: DateTime
The date and time the channel was modified.
description: Option<String>
The description for your channel.
ingest_endpoints: Option<Vec<IngestEndpoint>>
The list of ingest endpoints.
The comma-separated list of tag key:value pairs assigned to the channel.
Implementations§
source§impl CreateChannelOutput
impl CreateChannelOutput
sourcepub fn channel_name(&self) -> &str
pub fn channel_name(&self) -> &str
The name that describes the channel. The name is the primary identifier for the channel, and must be unique for your account in the AWS Region and channel group.
sourcepub fn channel_group_name(&self) -> &str
pub fn channel_group_name(&self) -> &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.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The date and time the channel was created.
sourcepub fn modified_at(&self) -> &DateTime
pub fn modified_at(&self) -> &DateTime
The date and time the channel was modified.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for your channel.
sourcepub fn ingest_endpoints(&self) -> &[IngestEndpoint]
pub fn ingest_endpoints(&self) -> &[IngestEndpoint]
The list of ingest endpoints.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ingest_endpoints.is_none()
.
The comma-separated list of tag key:value pairs assigned to the channel.
source§impl CreateChannelOutput
impl CreateChannelOutput
sourcepub fn builder() -> CreateChannelOutputBuilder
pub fn builder() -> CreateChannelOutputBuilder
Creates a new builder-style object to manufacture CreateChannelOutput
.
Trait Implementations§
source§impl Clone for CreateChannelOutput
impl Clone for CreateChannelOutput
source§fn clone(&self) -> CreateChannelOutput
fn clone(&self) -> CreateChannelOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateChannelOutput
impl Debug for CreateChannelOutput
source§impl PartialEq for CreateChannelOutput
impl PartialEq for CreateChannelOutput
source§fn eq(&self, other: &CreateChannelOutput) -> bool
fn eq(&self, other: &CreateChannelOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateChannelOutput
impl RequestId for CreateChannelOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.