Interface CfnDataSourcePropsMixin.AuthorizationConfigProperty

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

@Stability(Stable) public static interface CfnDataSourcePropsMixin.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.cfnpropertymixins.services.appsync.*;
 AuthorizationConfigProperty authorizationConfigProperty = AuthorizationConfigProperty.builder()
         .authorizationType("authorizationType")
         .awsIamConfig(AwsIamConfigProperty.builder()
                 .signingRegion("signingRegion")
                 .signingServiceName("signingServiceName")
                 .build())
         .build();
 

See Also: