#[non_exhaustive]pub struct EventIntegrationAssociationBuilder { /* private fields */ }
Expand description
A builder for EventIntegrationAssociation
.
Implementations§
source§impl EventIntegrationAssociationBuilder
impl EventIntegrationAssociationBuilder
sourcepub fn event_integration_association_arn(self, input: impl Into<String>) -> Self
pub fn event_integration_association_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) for the event integration association.
sourcepub fn set_event_integration_association_arn(
self,
input: Option<String>,
) -> Self
pub fn set_event_integration_association_arn( self, input: Option<String>, ) -> Self
The Amazon Resource Name (ARN) for the event integration association.
sourcepub fn get_event_integration_association_arn(&self) -> &Option<String>
pub fn get_event_integration_association_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) for the event integration association.
sourcepub fn event_integration_association_id(self, input: impl Into<String>) -> Self
pub fn event_integration_association_id(self, input: impl Into<String>) -> Self
The identifier for the event integration association.
sourcepub fn set_event_integration_association_id(self, input: Option<String>) -> Self
pub fn set_event_integration_association_id(self, input: Option<String>) -> Self
The identifier for the event integration association.
sourcepub fn get_event_integration_association_id(&self) -> &Option<String>
pub fn get_event_integration_association_id(&self) -> &Option<String>
The identifier for the event integration association.
sourcepub fn event_integration_name(self, input: impl Into<String>) -> Self
pub fn event_integration_name(self, input: impl Into<String>) -> Self
The name of the event integration.
sourcepub fn set_event_integration_name(self, input: Option<String>) -> Self
pub fn set_event_integration_name(self, input: Option<String>) -> Self
The name of the event integration.
sourcepub fn get_event_integration_name(&self) -> &Option<String>
pub fn get_event_integration_name(&self) -> &Option<String>
The name of the event integration.
sourcepub fn client_id(self, input: impl Into<String>) -> Self
pub fn client_id(self, input: impl Into<String>) -> Self
The identifier for the client that is associated with the event integration.
sourcepub fn set_client_id(self, input: Option<String>) -> Self
pub fn set_client_id(self, input: Option<String>) -> Self
The identifier for the client that is associated with the event integration.
sourcepub fn get_client_id(&self) -> &Option<String>
pub fn get_client_id(&self) -> &Option<String>
The identifier for the client that is associated with the event integration.
sourcepub fn event_bridge_rule_name(self, input: impl Into<String>) -> Self
pub fn event_bridge_rule_name(self, input: impl Into<String>) -> Self
The name of the EventBridge rule.
sourcepub fn set_event_bridge_rule_name(self, input: Option<String>) -> Self
pub fn set_event_bridge_rule_name(self, input: Option<String>) -> Self
The name of the EventBridge rule.
sourcepub fn get_event_bridge_rule_name(&self) -> &Option<String>
pub fn get_event_bridge_rule_name(&self) -> &Option<String>
The name of the EventBridge rule.
sourcepub fn client_association_metadata(
self,
k: impl Into<String>,
v: impl Into<String>,
) -> Self
pub fn client_association_metadata( self, k: impl Into<String>, v: impl Into<String>, ) -> Self
Adds a key-value pair to client_association_metadata
.
To override the contents of this collection use set_client_association_metadata
.
The metadata associated with the client.
sourcepub fn set_client_association_metadata(
self,
input: Option<HashMap<String, String>>,
) -> Self
pub fn set_client_association_metadata( self, input: Option<HashMap<String, String>>, ) -> Self
The metadata associated with the client.
sourcepub fn get_client_association_metadata(
&self,
) -> &Option<HashMap<String, String>>
pub fn get_client_association_metadata( &self, ) -> &Option<HashMap<String, String>>
The metadata associated with the client.
sourcepub fn build(self) -> EventIntegrationAssociation
pub fn build(self) -> EventIntegrationAssociation
Consumes the builder and constructs a EventIntegrationAssociation
.
Trait Implementations§
source§impl Clone for EventIntegrationAssociationBuilder
impl Clone for EventIntegrationAssociationBuilder
source§fn clone(&self) -> EventIntegrationAssociationBuilder
fn clone(&self) -> EventIntegrationAssociationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for EventIntegrationAssociationBuilder
impl Default for EventIntegrationAssociationBuilder
source§fn default() -> EventIntegrationAssociationBuilder
fn default() -> EventIntegrationAssociationBuilder
source§impl PartialEq for EventIntegrationAssociationBuilder
impl PartialEq for EventIntegrationAssociationBuilder
source§fn eq(&self, other: &EventIntegrationAssociationBuilder) -> bool
fn eq(&self, other: &EventIntegrationAssociationBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for EventIntegrationAssociationBuilder
Auto Trait Implementations§
impl Freeze for EventIntegrationAssociationBuilder
impl RefUnwindSafe for EventIntegrationAssociationBuilder
impl Send for EventIntegrationAssociationBuilder
impl Sync for EventIntegrationAssociationBuilder
impl Unpin for EventIntegrationAssociationBuilder
impl UnwindSafe for EventIntegrationAssociationBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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