Struct aws_sdk_eventbridge::operation::put_events::PutEventsInput
source · #[non_exhaustive]pub struct PutEventsInput {
pub entries: Option<Vec<PutEventsRequestEntry>>,
pub endpoint_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.entries: Option<Vec<PutEventsRequestEntry>>The entry that defines an event in your system. You can specify several parameters for the entry such as the source and type of the event, resources associated with the event, and so on.
endpoint_id: Option<String>The URL subdomain of the endpoint. For example, if the URL for Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is abcde.veo.
When using Java, you must include auth-crt on the class path.
Implementations§
source§impl PutEventsInput
impl PutEventsInput
sourcepub fn entries(&self) -> &[PutEventsRequestEntry]
pub fn entries(&self) -> &[PutEventsRequestEntry]
The entry that defines an event in your system. You can specify several parameters for the entry such as the source and type of the event, resources associated with the event, and so on.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .entries.is_none().
sourcepub fn endpoint_id(&self) -> Option<&str>
pub fn endpoint_id(&self) -> Option<&str>
The URL subdomain of the endpoint. For example, if the URL for Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is abcde.veo.
When using Java, you must include auth-crt on the class path.
source§impl PutEventsInput
impl PutEventsInput
sourcepub fn builder() -> PutEventsInputBuilder
pub fn builder() -> PutEventsInputBuilder
Creates a new builder-style object to manufacture PutEventsInput.
Trait Implementations§
source§impl Clone for PutEventsInput
impl Clone for PutEventsInput
source§fn clone(&self) -> PutEventsInput
fn clone(&self) -> PutEventsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PutEventsInput
impl Debug for PutEventsInput
source§impl PartialEq for PutEventsInput
impl PartialEq for PutEventsInput
source§fn eq(&self, other: &PutEventsInput) -> bool
fn eq(&self, other: &PutEventsInput) -> bool
self and other values to be equal, and is used
by ==.