Class HttpDataSource.Builder
java.lang.Object
software.amazon.awscdk.services.appsync.HttpDataSource.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<HttpDataSource>
- Enclosing class:
HttpDataSource
@Stability(Stable)
public static final class HttpDataSource.Builder
extends Object
implements software.amazon.jsii.Builder<HttpDataSource>
A fluent builder for
HttpDataSource
.-
Method Summary
Modifier and TypeMethodDescriptionapi
(IGraphqlApi api) The API to attach this data source to.authorizationConfig
(AwsIamConfig authorizationConfig) The authorization config in case the HTTP endpoint requires authorization.build()
static HttpDataSource.Builder
description
(String description) the description of the data source.The http endpoint.The name of the data source.serviceRole
(IRole serviceRole) The IAM service role to be assumed by AppSync to interact with the data source.
-
Method Details
-
create
@Stability(Stable) public static HttpDataSource.Builder create(software.constructs.Construct scope, String id) - Parameters:
scope
- This parameter is required.id
- This parameter is required.- Returns:
- a new instance of
HttpDataSource.Builder
.
-
api
The API to attach this data source to.- Parameters:
api
- The API to attach this data source to. This parameter is required.- Returns:
this
-
description
the description of the data source.Default: - None
- Parameters:
description
- the description of the data source. This parameter is required.- Returns:
this
-
name
The name of the data source.Default: - id of data source
- Parameters:
name
- The name of the data source. This parameter is required.- Returns:
this
-
serviceRole
The IAM service role to be assumed by AppSync to interact with the data source.Default: - Create a new role
- Parameters:
serviceRole
- The IAM service role to be assumed by AppSync to interact with the data source. This parameter is required.- Returns:
this
-
endpoint
The http endpoint.- Parameters:
endpoint
- The http endpoint. This parameter is required.- Returns:
this
-
authorizationConfig
@Stability(Stable) public HttpDataSource.Builder authorizationConfig(AwsIamConfig authorizationConfig) The authorization config in case the HTTP endpoint requires authorization.Default: - none
- Parameters:
authorizationConfig
- The authorization config in case the HTTP endpoint requires authorization. This parameter is required.- Returns:
this
-
build
- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<HttpDataSource>
- Returns:
- a newly built instance of
HttpDataSource
.
-