pub struct UpdateTopicRuleDestinationRequest {
pub arn: String,
pub status: String,
}Fields§
§arn: StringThe ARN of the topic rule destination.
status: StringThe status of the topic rule destination. Valid values are:
- INPROGRESS
-
A topic rule destination was created but has not been confirmed. You can set
statustoINPROGRESSby callingUpdateTopicRuleDestination. CallingUpdateTopicRuleDestinationcauses 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
statustoDISABLEDby callingUpdateTopicRuleDestination. - DISABLED
-
Confirmation was completed, and traffic to this destination is not allowed. You can set
statustoENABLEDby callingUpdateTopicRuleDestination. - ERROR
-
Confirmation could not be completed, for example if the confirmation timed out. You can call
GetTopicRuleDestinationfor details about the error. You can setstatustoIN_PROGRESSby callingUpdateTopicRuleDestination. CallingUpdateTopicRuleDestinationcauses 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 ==.