Struct aws_sdk_appsync::model::HttpDataSourceConfig [−][src]
#[non_exhaustive]pub struct HttpDataSourceConfig {
pub endpoint: Option<String>,
pub authorization_config: Option<AuthorizationConfig>,
}
Expand description
Describes an HTTP data source configuration.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.endpoint: Option<String>
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.
Implementations
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.
Creates a new builder-style object to manufacture HttpDataSourceConfig
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for HttpDataSourceConfig
impl Send for HttpDataSourceConfig
impl Sync for HttpDataSourceConfig
impl Unpin for HttpDataSourceConfig
impl UnwindSafe for HttpDataSourceConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more