#[non_exhaustive]pub struct GetChannelOutput {
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 GetChannelOutput
impl GetChannelOutput
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 GetChannelOutput
impl GetChannelOutput
sourcepub fn builder() -> GetChannelOutputBuilder
pub fn builder() -> GetChannelOutputBuilder
Creates a new builder-style object to manufacture GetChannelOutput
.
Trait Implementations§
source§impl Clone for GetChannelOutput
impl Clone for GetChannelOutput
source§fn clone(&self) -> GetChannelOutput
fn clone(&self) -> GetChannelOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetChannelOutput
impl Debug for GetChannelOutput
source§impl PartialEq for GetChannelOutput
impl PartialEq for GetChannelOutput
source§fn eq(&self, other: &GetChannelOutput) -> bool
fn eq(&self, other: &GetChannelOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetChannelOutput
impl RequestId for GetChannelOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.