#[non_exhaustive]pub struct UpdateDiscovererInput {
pub description: Option<String>,
pub discoverer_id: Option<String>,
pub cross_account: Option<bool>,
}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.description: Option<String>The description of the discoverer to update.
discoverer_id: Option<String>The ID of the discoverer.
cross_account: Option<bool>Support discovery of schemas in events sent to the bus from another account. (default: true)
Implementations§
source§impl UpdateDiscovererInput
impl UpdateDiscovererInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the discoverer to update.
sourcepub fn discoverer_id(&self) -> Option<&str>
pub fn discoverer_id(&self) -> Option<&str>
The ID of the discoverer.
sourcepub fn cross_account(&self) -> Option<bool>
pub fn cross_account(&self) -> Option<bool>
Support discovery of schemas in events sent to the bus from another account. (default: true)
source§impl UpdateDiscovererInput
impl UpdateDiscovererInput
sourcepub fn builder() -> UpdateDiscovererInputBuilder
pub fn builder() -> UpdateDiscovererInputBuilder
Creates a new builder-style object to manufacture UpdateDiscovererInput.
Trait Implementations§
source§impl Clone for UpdateDiscovererInput
impl Clone for UpdateDiscovererInput
source§fn clone(&self) -> UpdateDiscovererInput
fn clone(&self) -> UpdateDiscovererInput
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 Debug for UpdateDiscovererInput
impl Debug for UpdateDiscovererInput
source§impl PartialEq for UpdateDiscovererInput
impl PartialEq for UpdateDiscovererInput
source§fn eq(&self, other: &UpdateDiscovererInput) -> bool
fn eq(&self, other: &UpdateDiscovererInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateDiscovererInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateDiscovererInput
impl Send for UpdateDiscovererInput
impl Sync for UpdateDiscovererInput
impl Unpin for UpdateDiscovererInput
impl UnwindSafe for UpdateDiscovererInput
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
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>
Creates a shared type from an unshared type.