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