pub struct UpdateTopicRuleDestinationRequest {
pub arn: String,
pub status: String,
}
Fields§
§arn: String
The ARN of the topic rule destination.
status: String
The status of the topic rule destination. Valid values are:
- INPROGRESS
-
A topic rule destination was created but has not been confirmed. You can set
status
toINPROGRESS
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 UpdateTopicRuleDestinationRequest
impl Clone for UpdateTopicRuleDestinationRequest
Source§fn clone(&self) -> UpdateTopicRuleDestinationRequest
fn clone(&self) -> UpdateTopicRuleDestinationRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for UpdateTopicRuleDestinationRequest
impl Default for UpdateTopicRuleDestinationRequest
Source§fn default() -> UpdateTopicRuleDestinationRequest
fn default() -> UpdateTopicRuleDestinationRequest
Source§impl PartialEq for UpdateTopicRuleDestinationRequest
impl PartialEq for UpdateTopicRuleDestinationRequest
Source§fn eq(&self, other: &UpdateTopicRuleDestinationRequest) -> bool
fn eq(&self, other: &UpdateTopicRuleDestinationRequest) -> bool
self
and other
values to be equal, and is used by ==
.