#[non_exhaustive]pub struct UpdateTopicRuleDestinationInput { /* private fields */ }
Implementations§
source§impl UpdateTopicRuleDestinationInput
impl UpdateTopicRuleDestinationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateTopicRuleDestination, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateTopicRuleDestination, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateTopicRuleDestination
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateTopicRuleDestinationInput
.
source§impl UpdateTopicRuleDestinationInput
impl UpdateTopicRuleDestinationInput
sourcepub fn status(&self) -> Option<&TopicRuleDestinationStatus>
pub fn status(&self) -> Option<&TopicRuleDestinationStatus>
The status of the topic rule destination. Valid values are:
- IN_PROGRESS
-
A topic rule destination was created but has not been confirmed. You can set
status
toIN_PROGRESS
by callingUpdateTopicRuleDestination
. CallingUpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint. - ENABLED
-
Confirmation was completed, and traffic to this destination is allowed. You can set
status
toDISABLED
by callingUpdateTopicRuleDestination
. - DISABLED
-
Confirmation was completed, and traffic to this destination is not allowed. You can set
status
toENABLED
by callingUpdateTopicRuleDestination
. - ERROR
-
Confirmation could not be completed, for example if the confirmation timed out. You can call
GetTopicRuleDestination
for details about the error. You can setstatus
toIN_PROGRESS
by callingUpdateTopicRuleDestination
. CallingUpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint.
Trait Implementations§
source§impl Clone for UpdateTopicRuleDestinationInput
impl Clone for UpdateTopicRuleDestinationInput
source§fn clone(&self) -> UpdateTopicRuleDestinationInput
fn clone(&self) -> UpdateTopicRuleDestinationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<UpdateTopicRuleDestinationInput> for UpdateTopicRuleDestinationInput
impl PartialEq<UpdateTopicRuleDestinationInput> for UpdateTopicRuleDestinationInput
source§fn eq(&self, other: &UpdateTopicRuleDestinationInput) -> bool
fn eq(&self, other: &UpdateTopicRuleDestinationInput) -> bool
self
and other
values to be equal, and is used
by ==
.