Struct aws_sdk_chatbot::operation::describe_chime_webhook_configurations::DescribeChimeWebhookConfigurationsOutput
source · #[non_exhaustive]pub struct DescribeChimeWebhookConfigurationsOutput {
pub next_token: Option<String>,
pub webhook_configurations: Option<Vec<ChimeWebhookConfiguration>>,
/* 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.next_token: Option<String>An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
webhook_configurations: Option<Vec<ChimeWebhookConfiguration>>A list of Chime webhooks associated with the account.
Implementations§
source§impl DescribeChimeWebhookConfigurationsOutput
impl DescribeChimeWebhookConfigurationsOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
sourcepub fn webhook_configurations(&self) -> &[ChimeWebhookConfiguration]
pub fn webhook_configurations(&self) -> &[ChimeWebhookConfiguration]
A list of Chime webhooks associated with the account.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .webhook_configurations.is_none().
source§impl DescribeChimeWebhookConfigurationsOutput
impl DescribeChimeWebhookConfigurationsOutput
sourcepub fn builder() -> DescribeChimeWebhookConfigurationsOutputBuilder
pub fn builder() -> DescribeChimeWebhookConfigurationsOutputBuilder
Creates a new builder-style object to manufacture DescribeChimeWebhookConfigurationsOutput.
Trait Implementations§
source§impl Clone for DescribeChimeWebhookConfigurationsOutput
impl Clone for DescribeChimeWebhookConfigurationsOutput
source§fn clone(&self) -> DescribeChimeWebhookConfigurationsOutput
fn clone(&self) -> DescribeChimeWebhookConfigurationsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeChimeWebhookConfigurationsOutput
impl PartialEq for DescribeChimeWebhookConfigurationsOutput
source§fn eq(&self, other: &DescribeChimeWebhookConfigurationsOutput) -> bool
fn eq(&self, other: &DescribeChimeWebhookConfigurationsOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeChimeWebhookConfigurationsOutput
impl RequestId for DescribeChimeWebhookConfigurationsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DescribeChimeWebhookConfigurationsOutput
Auto Trait Implementations§
impl Freeze for DescribeChimeWebhookConfigurationsOutput
impl RefUnwindSafe for DescribeChimeWebhookConfigurationsOutput
impl Send for DescribeChimeWebhookConfigurationsOutput
impl Sync for DescribeChimeWebhookConfigurationsOutput
impl Unpin for DescribeChimeWebhookConfigurationsOutput
impl UnwindSafe for DescribeChimeWebhookConfigurationsOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more