Interface CfnDataSource.HttpConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSource.HttpConfigProperty.Jsii$Proxy
Enclosing class:
CfnDataSource

@Stability(Stable) public static interface CfnDataSource.HttpConfigProperty extends software.amazon.jsii.JsiiSerializable
Use the HttpConfig property type to specify HttpConfig for an AWS AppSync data source.

HttpConfig is a property of the AWS::AppSync::DataSource resource.

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.*;
 HttpConfigProperty httpConfigProperty = HttpConfigProperty.builder()
         .endpoint("endpoint")
         // the properties below are optional
         .authorizationConfig(AuthorizationConfigProperty.builder()
                 .authorizationType("authorizationType")
                 // the properties below are optional
                 .awsIamConfig(AwsIamConfigProperty.builder()
                         .signingRegion("signingRegion")
                         .signingServiceName("signingServiceName")
                         .build())
                 .build())
         .build();
 

See Also: