Struct aws_sdk_connectcases::operation::get_case_event_configuration::GetCaseEventConfigurationOutput
source · #[non_exhaustive]pub struct GetCaseEventConfigurationOutput {
pub event_bridge: Option<EventBridgeConfiguration>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.event_bridge: Option<EventBridgeConfiguration>
Configuration to enable EventBridge case event delivery and determine what data is delivered.
Implementations§
source§impl GetCaseEventConfigurationOutput
impl GetCaseEventConfigurationOutput
sourcepub fn event_bridge(&self) -> Option<&EventBridgeConfiguration>
pub fn event_bridge(&self) -> Option<&EventBridgeConfiguration>
Configuration to enable EventBridge case event delivery and determine what data is delivered.
source§impl GetCaseEventConfigurationOutput
impl GetCaseEventConfigurationOutput
sourcepub fn builder() -> GetCaseEventConfigurationOutputBuilder
pub fn builder() -> GetCaseEventConfigurationOutputBuilder
Creates a new builder-style object to manufacture GetCaseEventConfigurationOutput
.
Trait Implementations§
source§impl Clone for GetCaseEventConfigurationOutput
impl Clone for GetCaseEventConfigurationOutput
source§fn clone(&self) -> GetCaseEventConfigurationOutput
fn clone(&self) -> GetCaseEventConfigurationOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for GetCaseEventConfigurationOutput
impl PartialEq for GetCaseEventConfigurationOutput
source§fn eq(&self, other: &GetCaseEventConfigurationOutput) -> bool
fn eq(&self, other: &GetCaseEventConfigurationOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetCaseEventConfigurationOutput
impl RequestId for GetCaseEventConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetCaseEventConfigurationOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetCaseEventConfigurationOutput
impl Send for GetCaseEventConfigurationOutput
impl Sync for GetCaseEventConfigurationOutput
impl Unpin for GetCaseEventConfigurationOutput
impl UnwindSafe for GetCaseEventConfigurationOutput
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
Mutably borrows from an owned value. Read more