#[non_exhaustive]pub struct CreateNotificationSubscriptionInput { /* private fields */ }
Implementations§
source§impl CreateNotificationSubscriptionInput
impl CreateNotificationSubscriptionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateNotificationSubscription, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateNotificationSubscription, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateNotificationSubscription
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateNotificationSubscriptionInput
.
source§impl CreateNotificationSubscriptionInput
impl CreateNotificationSubscriptionInput
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
The ID of the organization.
sourcepub fn endpoint(&self) -> Option<&str>
pub fn endpoint(&self) -> Option<&str>
The endpoint to receive the notifications. If the protocol is HTTPS, the endpoint is a URL that begins with https
.
sourcepub fn protocol(&self) -> Option<&SubscriptionProtocolType>
pub fn protocol(&self) -> Option<&SubscriptionProtocolType>
The protocol to use. The supported value is https, which delivers JSON-encoded messages using HTTPS POST.
sourcepub fn subscription_type(&self) -> Option<&SubscriptionType>
pub fn subscription_type(&self) -> Option<&SubscriptionType>
The notification type.
Trait Implementations§
source§impl Clone for CreateNotificationSubscriptionInput
impl Clone for CreateNotificationSubscriptionInput
source§fn clone(&self) -> CreateNotificationSubscriptionInput
fn clone(&self) -> CreateNotificationSubscriptionInput
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 PartialEq<CreateNotificationSubscriptionInput> for CreateNotificationSubscriptionInput
impl PartialEq<CreateNotificationSubscriptionInput> for CreateNotificationSubscriptionInput
source§fn eq(&self, other: &CreateNotificationSubscriptionInput) -> bool
fn eq(&self, other: &CreateNotificationSubscriptionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.