#[non_exhaustive]pub struct ModifyEventSubscriptionInput { /* private fields */ }
Expand description
Implementations§
source§impl ModifyEventSubscriptionInput
impl ModifyEventSubscriptionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyEventSubscription, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyEventSubscription, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ModifyEventSubscription
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ModifyEventSubscriptionInput
.
source§impl ModifyEventSubscriptionInput
impl ModifyEventSubscriptionInput
sourcepub fn subscription_name(&self) -> Option<&str>
pub fn subscription_name(&self) -> Option<&str>
The name of the modified Amazon Redshift event notification subscription.
sourcepub fn sns_topic_arn(&self) -> Option<&str>
pub fn sns_topic_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the SNS topic to be used by the event notification subscription.
sourcepub fn source_type(&self) -> Option<&str>
pub fn source_type(&self) -> Option<&str>
The type of source that will be generating the events. For example, if you want to be notified of events generated by a cluster, you would set this parameter to cluster. If this value is not specified, events are returned for all Amazon Redshift objects in your Amazon Web Services account. You must specify a source type in order to specify source IDs.
Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.
sourcepub fn source_ids(&self) -> Option<&[String]>
pub fn source_ids(&self) -> Option<&[String]>
A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified.
Example: my-cluster-1, my-cluster-2
Example: my-snapshot-20131010
sourcepub fn event_categories(&self) -> Option<&[String]>
pub fn event_categories(&self) -> Option<&[String]>
Specifies the Amazon Redshift event categories to be published by the event notification subscription.
Values: configuration, management, monitoring, security, pending
Trait Implementations§
source§impl Clone for ModifyEventSubscriptionInput
impl Clone for ModifyEventSubscriptionInput
source§fn clone(&self) -> ModifyEventSubscriptionInput
fn clone(&self) -> ModifyEventSubscriptionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifyEventSubscriptionInput
impl Debug for ModifyEventSubscriptionInput
source§impl PartialEq<ModifyEventSubscriptionInput> for ModifyEventSubscriptionInput
impl PartialEq<ModifyEventSubscriptionInput> for ModifyEventSubscriptionInput
source§fn eq(&self, other: &ModifyEventSubscriptionInput) -> bool
fn eq(&self, other: &ModifyEventSubscriptionInput) -> bool
self
and other
values to be equal, and is used
by ==
.