Interface CfnDataSource.AuthorizationConfigProperty

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

@Stability(Stable) public static interface CfnDataSource.AuthorizationConfigProperty extends software.amazon.jsii.JsiiSerializable
The AuthorizationConfig property type specifies the authorization type and configuration for an AWS AppSync http data source.

AuthorizationConfig is a property of the AWS AppSync DataSource HttpConfig property type.

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

See Also: