pub struct Builder { /* private fields */ }
Expand description
A builder for EventIntegrationAssociation
.
Implementations
sourceimpl Builder
impl Builder
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 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 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 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 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 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 build(self) -> EventIntegrationAssociation
pub fn build(self) -> EventIntegrationAssociation
Consumes the builder and constructs a EventIntegrationAssociation
.