Interface CfnDataSource.AwsIamConfigProperty

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

@Stability(Stable) public static interface CfnDataSource.AwsIamConfigProperty extends software.amazon.jsii.JsiiSerializable
Use the AwsIamConfig property type to specify AwsIamConfig for a AWS AppSync authorizaton.

AwsIamConfig is a property of the AWS AppSync DataSource AuthorizationConfig 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.*;
 AwsIamConfigProperty awsIamConfigProperty = AwsIamConfigProperty.builder()
         .signingRegion("signingRegion")
         .signingServiceName("signingServiceName")
         .build();
 

See Also: