#[non_exhaustive]pub struct CreateConnectionAuthRequestParameters { /* private fields */ }
Expand description
Contains the authorization parameters for the connection.
Implementations
sourceimpl CreateConnectionAuthRequestParameters
impl CreateConnectionAuthRequestParameters
sourcepub fn basic_auth_parameters(
&self
) -> Option<&CreateConnectionBasicAuthRequestParameters>
pub fn basic_auth_parameters(
&self
) -> Option<&CreateConnectionBasicAuthRequestParameters>
A CreateConnectionBasicAuthRequestParameters
object that contains the Basic authorization parameters to use for the connection.
sourcepub fn o_auth_parameters(
&self
) -> Option<&CreateConnectionOAuthRequestParameters>
pub fn o_auth_parameters(
&self
) -> Option<&CreateConnectionOAuthRequestParameters>
A CreateConnectionOAuthRequestParameters
object that contains the OAuth authorization parameters to use for the connection.
sourcepub fn api_key_auth_parameters(
&self
) -> Option<&CreateConnectionApiKeyAuthRequestParameters>
pub fn api_key_auth_parameters(
&self
) -> Option<&CreateConnectionApiKeyAuthRequestParameters>
A CreateConnectionApiKeyAuthRequestParameters
object that contains the API key authorization parameters to use for the connection.
sourcepub fn invocation_http_parameters(&self) -> Option<&ConnectionHttpParameters>
pub fn invocation_http_parameters(&self) -> Option<&ConnectionHttpParameters>
A ConnectionHttpParameters
object that contains the API key authorization parameters to use for the connection. Note that if you include additional parameters for the target of a rule via HttpParameters
, including query strings, the parameters added for the connection take precedence.
sourceimpl CreateConnectionAuthRequestParameters
impl CreateConnectionAuthRequestParameters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateConnectionAuthRequestParameters
.
Trait Implementations
sourceimpl Clone for CreateConnectionAuthRequestParameters
impl Clone for CreateConnectionAuthRequestParameters
sourcefn clone(&self) -> CreateConnectionAuthRequestParameters
fn clone(&self) -> CreateConnectionAuthRequestParameters
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more