Struct aws_sdk_eventbridge::types::ApiDestination
source · #[non_exhaustive]pub struct ApiDestination { /* private fields */ }
Expand description
Contains details about an API destination.
Implementations§
source§impl ApiDestination
impl ApiDestination
sourcepub fn api_destination_arn(&self) -> Option<&str>
pub fn api_destination_arn(&self) -> Option<&str>
The ARN of the API destination.
sourcepub fn api_destination_state(&self) -> Option<&ApiDestinationState>
pub fn api_destination_state(&self) -> Option<&ApiDestinationState>
The state of the API destination.
sourcepub fn connection_arn(&self) -> Option<&str>
pub fn connection_arn(&self) -> Option<&str>
The ARN of the connection specified for the API destination.
sourcepub fn invocation_endpoint(&self) -> Option<&str>
pub fn invocation_endpoint(&self) -> Option<&str>
The URL to the endpoint for the API destination.
sourcepub fn http_method(&self) -> Option<&ApiDestinationHttpMethod>
pub fn http_method(&self) -> Option<&ApiDestinationHttpMethod>
The method to use to connect to the HTTP endpoint.
sourcepub fn invocation_rate_limit_per_second(&self) -> Option<i32>
pub fn invocation_rate_limit_per_second(&self) -> Option<i32>
The maximum number of invocations per second to send to the HTTP endpoint.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A time stamp for the time that the API destination was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
A time stamp for the time that the API destination was last modified.
source§impl ApiDestination
impl ApiDestination
sourcepub fn builder() -> ApiDestinationBuilder
pub fn builder() -> ApiDestinationBuilder
Creates a new builder-style object to manufacture ApiDestination
.
Trait Implementations§
source§impl Clone for ApiDestination
impl Clone for ApiDestination
source§fn clone(&self) -> ApiDestination
fn clone(&self) -> ApiDestination
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 ApiDestination
impl Debug for ApiDestination
source§impl PartialEq<ApiDestination> for ApiDestination
impl PartialEq<ApiDestination> for ApiDestination
source§fn eq(&self, other: &ApiDestination) -> bool
fn eq(&self, other: &ApiDestination) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ApiDestination
Auto Trait Implementations§
impl RefUnwindSafe for ApiDestination
impl Send for ApiDestination
impl Sync for ApiDestination
impl Unpin for ApiDestination
impl UnwindSafe for ApiDestination
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