Interface AppSyncHttpDataSourceOptions
- All Superinterfaces:
AppSyncDataSourceOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AppSyncHttpDataSourceOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:45.366Z")
@Stability(Stable)
public interface AppSyncHttpDataSourceOptions
extends software.amazon.jsii.JsiiSerializable, AppSyncDataSourceOptions
Optional configuration for Http data sources.
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.*;
AppSyncHttpDataSourceOptions appSyncHttpDataSourceOptions = AppSyncHttpDataSourceOptions.builder()
.authorizationConfig(AppSyncAwsIamConfig.builder()
.signingRegion("signingRegion")
.signingServiceName("signingServiceName")
.build())
.description("description")
.name("name")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAppSyncHttpDataSourceOptionsstatic final classAn implementation forAppSyncHttpDataSourceOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default AppSyncAwsIamConfigThe authorization config in case the HTTP endpoint requires authorization.Methods inherited from interface software.amazon.awscdk.services.appsync.AppSyncDataSourceOptions
getDescription, getNameMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizationConfig
The authorization config in case the HTTP endpoint requires authorization.Default: - none
-
builder
-