#[non_exhaustive]pub struct ListOriginEndpointsInput {
pub channel_group_name: Option<String>,
pub channel_name: Option<String>,
pub max_results: Option<i32>,
pub next_token: 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.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.
channel_name: Option<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.
max_results: Option<i32>
The maximum number of results to return in the response.
next_token: Option<String>
The pagination token from the GET list request. Use the token to fetch the next page of results.
Implementations§
source§impl ListOriginEndpointsInput
impl ListOriginEndpointsInput
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.
sourcepub fn channel_name(&self) -> Option<&str>
pub fn channel_name(&self) -> Option<&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 max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in the response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The pagination token from the GET list request. Use the token to fetch the next page of results.
source§impl ListOriginEndpointsInput
impl ListOriginEndpointsInput
sourcepub fn builder() -> ListOriginEndpointsInputBuilder
pub fn builder() -> ListOriginEndpointsInputBuilder
Creates a new builder-style object to manufacture ListOriginEndpointsInput
.
Trait Implementations§
source§impl Clone for ListOriginEndpointsInput
impl Clone for ListOriginEndpointsInput
source§fn clone(&self) -> ListOriginEndpointsInput
fn clone(&self) -> ListOriginEndpointsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListOriginEndpointsInput
impl Debug for ListOriginEndpointsInput
source§impl PartialEq for ListOriginEndpointsInput
impl PartialEq for ListOriginEndpointsInput
source§fn eq(&self, other: &ListOriginEndpointsInput) -> bool
fn eq(&self, other: &ListOriginEndpointsInput) -> bool
self
and other
values to be equal, and is used
by ==
.