Struct aws_sdk_schemas::types::builders::DiscovererSummaryBuilder
source · #[non_exhaustive]pub struct DiscovererSummaryBuilder { /* private fields */ }Expand description
A builder for DiscovererSummary.
Implementations§
source§impl DiscovererSummaryBuilder
impl DiscovererSummaryBuilder
sourcepub fn discoverer_arn(self, input: impl Into<String>) -> Self
pub fn discoverer_arn(self, input: impl Into<String>) -> Self
The ARN of the discoverer.
sourcepub fn set_discoverer_arn(self, input: Option<String>) -> Self
pub fn set_discoverer_arn(self, input: Option<String>) -> Self
The ARN of the discoverer.
sourcepub fn get_discoverer_arn(&self) -> &Option<String>
pub fn get_discoverer_arn(&self) -> &Option<String>
The ARN of the discoverer.
sourcepub fn discoverer_id(self, input: impl Into<String>) -> Self
pub fn discoverer_id(self, input: impl Into<String>) -> Self
The ID of the discoverer.
sourcepub fn set_discoverer_id(self, input: Option<String>) -> Self
pub fn set_discoverer_id(self, input: Option<String>) -> Self
The ID of the discoverer.
sourcepub fn get_discoverer_id(&self) -> &Option<String>
pub fn get_discoverer_id(&self) -> &Option<String>
The ID of the discoverer.
sourcepub fn source_arn(self, input: impl Into<String>) -> Self
pub fn source_arn(self, input: impl Into<String>) -> Self
The ARN of the event bus.
sourcepub fn set_source_arn(self, input: Option<String>) -> Self
pub fn set_source_arn(self, input: Option<String>) -> Self
The ARN of the event bus.
sourcepub fn get_source_arn(&self) -> &Option<String>
pub fn get_source_arn(&self) -> &Option<String>
The ARN of the event bus.
sourcepub fn state(self, input: DiscovererState) -> Self
pub fn state(self, input: DiscovererState) -> Self
The state of the discoverer.
sourcepub fn set_state(self, input: Option<DiscovererState>) -> Self
pub fn set_state(self, input: Option<DiscovererState>) -> Self
The state of the discoverer.
sourcepub fn get_state(&self) -> &Option<DiscovererState>
pub fn get_state(&self) -> &Option<DiscovererState>
The state of the discoverer.
sourcepub fn cross_account(self, input: bool) -> Self
pub fn cross_account(self, input: bool) -> Self
The Status if the discoverer will discover schemas from events sent from another account.
sourcepub fn set_cross_account(self, input: Option<bool>) -> Self
pub fn set_cross_account(self, input: Option<bool>) -> Self
The Status if the discoverer will discover schemas from events sent from another account.
sourcepub fn get_cross_account(&self) -> &Option<bool>
pub fn get_cross_account(&self) -> &Option<bool>
The Status if the discoverer will discover schemas from events sent from another account.
Adds a key-value pair to tags.
To override the contents of this collection use set_tags.
Tags associated with the resource.
Tags associated with the resource.
Tags associated with the resource.
sourcepub fn build(self) -> DiscovererSummary
pub fn build(self) -> DiscovererSummary
Consumes the builder and constructs a DiscovererSummary.
Trait Implementations§
source§impl Clone for DiscovererSummaryBuilder
impl Clone for DiscovererSummaryBuilder
source§fn clone(&self) -> DiscovererSummaryBuilder
fn clone(&self) -> DiscovererSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DiscovererSummaryBuilder
impl Debug for DiscovererSummaryBuilder
source§impl Default for DiscovererSummaryBuilder
impl Default for DiscovererSummaryBuilder
source§fn default() -> DiscovererSummaryBuilder
fn default() -> DiscovererSummaryBuilder
source§impl PartialEq for DiscovererSummaryBuilder
impl PartialEq for DiscovererSummaryBuilder
source§fn eq(&self, other: &DiscovererSummaryBuilder) -> bool
fn eq(&self, other: &DiscovererSummaryBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DiscovererSummaryBuilder
Auto Trait Implementations§
impl Freeze for DiscovererSummaryBuilder
impl RefUnwindSafe for DiscovererSummaryBuilder
impl Send for DiscovererSummaryBuilder
impl Sync for DiscovererSummaryBuilder
impl Unpin for DiscovererSummaryBuilder
impl UnwindSafe for DiscovererSummaryBuilder
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