interface AwsIamConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnDataSourcePropsMixin.AwsIamConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnDataSourcePropsMixin_AwsIamConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnDataSourcePropsMixin.AwsIamConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnDataSourcePropsMixin.AwsIamConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » CfnDataSourcePropsMixin » AwsIamConfigProperty |
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 { aws_appsync as appsync } from '@aws-cdk/cfn-property-mixins';
const awsIamConfigProperty: appsync.CfnDataSourcePropsMixin.AwsIamConfigProperty = {
signingRegion: 'signingRegion',
signingServiceName: 'signingServiceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| signing | string | The signing Region for AWS Identity and Access Management authorization. |
| signing | string | The signing service name for AWS Identity and Access Management authorization. |
signingRegion?
Type:
string
(optional)
The signing Region for AWS Identity and Access Management authorization.
signingServiceName?
Type:
string
(optional)
The signing service name for AWS Identity and Access Management authorization.

.NET
Go
Java
Python
TypeScript