pub struct TopicRuleDestinationSummary {
pub arn: Option<String>,
pub http_url_summary: Option<HttpUrlDestinationSummary>,
pub status: Option<String>,
pub status_reason: Option<String>,
}Expand description
Information about the topic rule destination.
Fields§
§arn: Option<String>The topic rule destination ARN.
http_url_summary: Option<HttpUrlDestinationSummary>Information about the HTTP URL.
status: Option<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
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.
status_reason: Option<String>The reason the topic rule destination is in the current status.
Trait Implementations§
Source§impl Clone for TopicRuleDestinationSummary
impl Clone for TopicRuleDestinationSummary
Source§fn clone(&self) -> TopicRuleDestinationSummary
fn clone(&self) -> TopicRuleDestinationSummary
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more