Interface AppSyncHttpDataSourceOptions
- All Superinterfaces:
- AppSyncDataSourceOptions,- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- AppSyncHttpDataSourceOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:32.549Z")
@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 SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAppSyncHttpDataSourceOptionsstatic final classAn implementation forAppSyncHttpDataSourceOptions
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default AppSyncAwsIamConfigThe authorization config in case the HTTP endpoint requires authorization.Methods inherited from interface software.amazon.awscdk.services.appsync.AppSyncDataSourceOptionsgetDescription, getNameMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getAuthorizationConfigThe authorization config in case the HTTP endpoint requires authorization.Default: - none 
- 
builder
 
-