[−][src]Struct rusoto_sns::GetSubscriptionAttributesResponse
Response for GetSubscriptionAttributes action.
Fields
attributes: Option<HashMap<String, String>>
A map of the subscription's attributes. Attributes in this map include the following:
-
ConfirmationWasAuthenticated
–true
if the subscription confirmation request was authenticated. -
DeliveryPolicy
– The JSON serialization of the subscription's delivery policy. -
EffectiveDeliveryPolicy
– The JSON serialization of the effective delivery policy that takes into account the topic delivery policy and account system defaults. -
FilterPolicy
– The filter policy JSON that is assigned to the subscription. -
Owner
– The AWS account ID of the subscription's owner. -
PendingConfirmation
–true
if the subscription hasn't been confirmed. To confirm a pending subscription, call theConfirmSubscription
action with a confirmation token. -
RawMessageDelivery
–true
if raw message delivery is enabled for the subscription. Raw messages are free of JSON formatting and can be sent to HTTP/S and Amazon SQS endpoints. -
SubscriptionArn
– The subscription's ARN. -
TopicArn
– The topic ARN that the subscription is associated with.
Trait Implementations
impl PartialEq<GetSubscriptionAttributesResponse> for GetSubscriptionAttributesResponse
[src]
fn eq(&self, other: &GetSubscriptionAttributesResponse) -> bool
[src]
fn ne(&self, other: &GetSubscriptionAttributesResponse) -> bool
[src]
impl Default for GetSubscriptionAttributesResponse
[src]
impl Clone for GetSubscriptionAttributesResponse
[src]
fn clone(&self) -> GetSubscriptionAttributesResponse
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for GetSubscriptionAttributesResponse
[src]
Auto Trait Implementations
impl Send for GetSubscriptionAttributesResponse
impl Sync for GetSubscriptionAttributesResponse
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self