@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:24.836Z") @Stability(value=Experimental) public interface HttpDataSourceProps extends software.amazon.jsii.JsiiSerializable, BaseDataSourceProps
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.appsync.*;
GraphqlApi graphqlApi;
HttpDataSourceProps httpDataSourceProps = HttpDataSourceProps.builder()
.api(graphqlApi)
.endpoint("endpoint")
// the properties below are optional
.authorizationConfig(AwsIamConfig.builder()
.signingRegion("signingRegion")
.signingServiceName("signingServiceName")
.build())
.description("description")
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HttpDataSourceProps.Builder
A builder for
HttpDataSourceProps |
static class |
HttpDataSourceProps.Jsii$Proxy
An implementation for
HttpDataSourceProps |
| Modifier and Type | Method and Description |
|---|---|
static HttpDataSourceProps.Builder |
builder() |
default AwsIamConfig |
getAuthorizationConfig()
(experimental) The authorization config in case the HTTP endpoint requires authorization.
|
String |
getEndpoint()
(experimental) The http endpoint.
|
getApi, getDescription, getName@Stability(value=Experimental) @NotNull String getEndpoint()
@Stability(value=Experimental) @Nullable default AwsIamConfig getAuthorizationConfig()
Default: - none
@Stability(value=Experimental) static HttpDataSourceProps.Builder builder()
builder in interface BaseDataSourcePropsHttpDataSourceProps.Builder of HttpDataSourcePropsCopyright © 2022. All rights reserved.