pub struct Builder { /* private fields */ }
Expand description
A builder for CreateNotificationSubscriptionInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn organization_id(self, input: impl Into<String>) -> Self
pub fn organization_id(self, input: impl Into<String>) -> Self
The ID of the organization.
sourcepub fn set_organization_id(self, input: Option<String>) -> Self
pub fn set_organization_id(self, input: Option<String>) -> Self
The ID of the organization.
sourcepub fn endpoint(self, input: impl Into<String>) -> Self
pub fn endpoint(self, input: impl Into<String>) -> Self
The endpoint to receive the notifications. If the protocol is HTTPS, the endpoint is a URL that begins with https
.
sourcepub fn set_endpoint(self, input: Option<String>) -> Self
pub fn set_endpoint(self, input: Option<String>) -> Self
The endpoint to receive the notifications. If the protocol is HTTPS, the endpoint is a URL that begins with https
.
sourcepub fn protocol(self, input: SubscriptionProtocolType) -> Self
pub fn protocol(self, input: SubscriptionProtocolType) -> Self
The protocol to use. The supported value is https, which delivers JSON-encoded messages using HTTPS POST.
sourcepub fn set_protocol(self, input: Option<SubscriptionProtocolType>) -> Self
pub fn set_protocol(self, input: Option<SubscriptionProtocolType>) -> Self
The protocol to use. The supported value is https, which delivers JSON-encoded messages using HTTPS POST.
sourcepub fn subscription_type(self, input: SubscriptionType) -> Self
pub fn subscription_type(self, input: SubscriptionType) -> Self
The notification type.
sourcepub fn set_subscription_type(self, input: Option<SubscriptionType>) -> Self
pub fn set_subscription_type(self, input: Option<SubscriptionType>) -> Self
The notification type.
sourcepub fn build(self) -> Result<CreateNotificationSubscriptionInput, BuildError>
pub fn build(self) -> Result<CreateNotificationSubscriptionInput, BuildError>
Consumes the builder and constructs a CreateNotificationSubscriptionInput
.