pub struct HttpAction {
pub auth: Option<HttpAuthorization>,
pub confirmation_url: Option<String>,
pub headers: Option<Vec<HttpActionHeader>>,
pub url: String,
}Expand description
Send data to an HTTPS endpoint.
Fields§
§auth: Option<HttpAuthorization>The authentication method to use when sending data to an HTTPS endpoint.
confirmation_url: Option<String>The URL to which AWS IoT sends a confirmation message. The value of the confirmation URL must be a prefix of the endpoint URL. If you do not specify a confirmation URL AWS IoT uses the endpoint URL as the confirmation URL. If you use substitution templates in the confirmationUrl, you must create and enable topic rule destinations that match each possible value of the substitution template before traffic is allowed to your endpoint URL.
headers: Option<Vec<HttpActionHeader>>The HTTP headers to send with the message data.
url: StringThe endpoint URL. If substitution templates are used in the URL, you must also specify a confirmationUrl. If this is a new destination, a new TopicRuleDestination is created if possible.
Trait Implementations§
Source§impl Clone for HttpAction
impl Clone for HttpAction
Source§fn clone(&self) -> HttpAction
fn clone(&self) -> HttpAction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more