Struct aws_sdk_eventbridge::types::builders::ApiDestinationBuilder
source · #[non_exhaustive]pub struct ApiDestinationBuilder { /* private fields */ }
Expand description
A builder for ApiDestination
.
Implementations§
source§impl ApiDestinationBuilder
impl ApiDestinationBuilder
sourcepub fn api_destination_arn(self, input: impl Into<String>) -> Self
pub fn api_destination_arn(self, input: impl Into<String>) -> Self
The ARN of the API destination.
sourcepub fn set_api_destination_arn(self, input: Option<String>) -> Self
pub fn set_api_destination_arn(self, input: Option<String>) -> Self
The ARN of the API destination.
sourcepub fn api_destination_state(self, input: ApiDestinationState) -> Self
pub fn api_destination_state(self, input: ApiDestinationState) -> Self
The state of the API destination.
sourcepub fn set_api_destination_state(
self,
input: Option<ApiDestinationState>
) -> Self
pub fn set_api_destination_state( self, input: Option<ApiDestinationState> ) -> Self
The state of the API destination.
sourcepub fn connection_arn(self, input: impl Into<String>) -> Self
pub fn connection_arn(self, input: impl Into<String>) -> Self
The ARN of the connection specified for the API destination.
sourcepub fn set_connection_arn(self, input: Option<String>) -> Self
pub fn set_connection_arn(self, input: Option<String>) -> Self
The ARN of the connection specified for the API destination.
sourcepub fn invocation_endpoint(self, input: impl Into<String>) -> Self
pub fn invocation_endpoint(self, input: impl Into<String>) -> Self
The URL to the endpoint for the API destination.
sourcepub fn set_invocation_endpoint(self, input: Option<String>) -> Self
pub fn set_invocation_endpoint(self, input: Option<String>) -> Self
The URL to the endpoint for the API destination.
sourcepub fn http_method(self, input: ApiDestinationHttpMethod) -> Self
pub fn http_method(self, input: ApiDestinationHttpMethod) -> Self
The method to use to connect to the HTTP endpoint.
sourcepub fn set_http_method(self, input: Option<ApiDestinationHttpMethod>) -> Self
pub fn set_http_method(self, input: Option<ApiDestinationHttpMethod>) -> Self
The method to use to connect to the HTTP endpoint.
sourcepub fn invocation_rate_limit_per_second(self, input: i32) -> Self
pub fn invocation_rate_limit_per_second(self, input: i32) -> Self
The maximum number of invocations per second to send to the HTTP endpoint.
sourcepub fn set_invocation_rate_limit_per_second(self, input: Option<i32>) -> Self
pub fn set_invocation_rate_limit_per_second(self, input: Option<i32>) -> Self
The maximum number of invocations per second to send to the HTTP endpoint.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
A time stamp for the time that the API destination was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
A time stamp for the time that the API destination was created.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
A time stamp for the time that the API destination was last modified.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
A time stamp for the time that the API destination was last modified.
sourcepub fn build(self) -> ApiDestination
pub fn build(self) -> ApiDestination
Consumes the builder and constructs a ApiDestination
.
Trait Implementations§
source§impl Clone for ApiDestinationBuilder
impl Clone for ApiDestinationBuilder
source§fn clone(&self) -> ApiDestinationBuilder
fn clone(&self) -> ApiDestinationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ApiDestinationBuilder
impl Debug for ApiDestinationBuilder
source§impl Default for ApiDestinationBuilder
impl Default for ApiDestinationBuilder
source§fn default() -> ApiDestinationBuilder
fn default() -> ApiDestinationBuilder
source§impl PartialEq<ApiDestinationBuilder> for ApiDestinationBuilder
impl PartialEq<ApiDestinationBuilder> for ApiDestinationBuilder
source§fn eq(&self, other: &ApiDestinationBuilder) -> bool
fn eq(&self, other: &ApiDestinationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.