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 duplicate 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 Default for CreateEventStreamBody
impl Default for CreateEventStreamBody
Source§fn default() -> CreateEventStreamBody
fn default() -> CreateEventStreamBody
Returns the “default value” for a type. Read more
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§impl Serialize for CreateEventStreamBody
impl Serialize for CreateEventStreamBody
impl StructuralPartialEq for CreateEventStreamBody
Auto Trait Implementations§
impl Freeze for CreateEventStreamBody
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