pub struct SetEventStreamBody {
pub role_arn: String,
pub topic_arn: String,
pub type: TypeEnum,
}Expand description
SetEventStreamBody : Update Event Stream 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 SetEventStreamBody
impl Clone for SetEventStreamBody
Source§fn clone(&self) -> SetEventStreamBody
fn clone(&self) -> SetEventStreamBody
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 SetEventStreamBody
impl Debug for SetEventStreamBody
Source§impl Default for SetEventStreamBody
impl Default for SetEventStreamBody
Source§fn default() -> SetEventStreamBody
fn default() -> SetEventStreamBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetEventStreamBody
impl<'de> Deserialize<'de> for SetEventStreamBody
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 SetEventStreamBody
impl PartialEq for SetEventStreamBody
Source§impl Serialize for SetEventStreamBody
impl Serialize for SetEventStreamBody
impl StructuralPartialEq for SetEventStreamBody
Auto Trait Implementations§
impl Freeze for SetEventStreamBody
impl RefUnwindSafe for SetEventStreamBody
impl Send for SetEventStreamBody
impl Sync for SetEventStreamBody
impl Unpin for SetEventStreamBody
impl UnwindSafe for SetEventStreamBody
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