Struct aws_sdk_appsync::model::HttpDataSourceConfig
source · #[non_exhaustive]pub struct HttpDataSourceConfig { /* private fields */ }
Expand description
Describes an HTTP data source configuration.
Implementations§
source§impl HttpDataSourceConfig
impl HttpDataSourceConfig
sourcepub fn endpoint(&self) -> Option<&str>
pub fn endpoint(&self) -> Option<&str>
The HTTP URL endpoint. You can specify either the domain name or IP, and port combination, and the URL scheme must be HTTP or HTTPS. If you don't specify the port, AppSync uses the default port 80 for the HTTP endpoint and port 443 for HTTPS endpoints.
The authorization configuration in case the HTTP endpoint requires authorization.
source§impl HttpDataSourceConfig
impl HttpDataSourceConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture HttpDataSourceConfig
.
Trait Implementations§
source§impl Clone for HttpDataSourceConfig
impl Clone for HttpDataSourceConfig
source§fn clone(&self) -> HttpDataSourceConfig
fn clone(&self) -> HttpDataSourceConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HttpDataSourceConfig
impl Debug for HttpDataSourceConfig
source§impl PartialEq<HttpDataSourceConfig> for HttpDataSourceConfig
impl PartialEq<HttpDataSourceConfig> for HttpDataSourceConfig
source§fn eq(&self, other: &HttpDataSourceConfig) -> bool
fn eq(&self, other: &HttpDataSourceConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.