pub struct CreateEventStreamBody {
pub role_arn: String,
pub topic_arn: String,
pub _type: TypeEnum,
}Expand description
CreateEventStreamBody : Create Event Stream Request Body
Fields§
§role_arn: StringThe AWS IAM role ARN to assume when publishing to the SNS topic.
topic_arn: StringThe AWS SNS topic ARN.
_type: TypeEnumThe type of the event stream (AWS SNS, GCP Pub/Sub, etc).
Implementations§
Trait Implementations§
source§impl Clone for CreateEventStreamBody
impl Clone for CreateEventStreamBody
source§fn clone(&self) -> CreateEventStreamBody
fn clone(&self) -> CreateEventStreamBody
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 CreateEventStreamBody
impl Debug for CreateEventStreamBody
source§impl<'de> Deserialize<'de> for CreateEventStreamBody
impl<'de> Deserialize<'de> for CreateEventStreamBody
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for CreateEventStreamBody
impl PartialEq for CreateEventStreamBody
source§fn eq(&self, other: &CreateEventStreamBody) -> bool
fn eq(&self, other: &CreateEventStreamBody) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for CreateEventStreamBody
impl Serialize for CreateEventStreamBody
impl StructuralPartialEq for CreateEventStreamBody
Auto Trait Implementations§
impl RefUnwindSafe for CreateEventStreamBody
impl Send for CreateEventStreamBody
impl Sync for CreateEventStreamBody
impl Unpin for CreateEventStreamBody
impl UnwindSafe for CreateEventStreamBody
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