interface AuthorizationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnDataSourcePropsMixin.AuthorizationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnDataSourcePropsMixin_AuthorizationConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnDataSourcePropsMixin.AuthorizationConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnDataSourcePropsMixin.AuthorizationConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » CfnDataSourcePropsMixin » AuthorizationConfigProperty |
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 { aws_appsync as appsync } from '@aws-cdk/cfn-property-mixins';
const authorizationConfigProperty: appsync.CfnDataSourcePropsMixin.AuthorizationConfigProperty = {
authorizationType: 'authorizationType',
awsIamConfig: {
signingRegion: 'signingRegion',
signingServiceName: 'signingServiceName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | string | The authorization type that the HTTP endpoint requires. |
| aws | IResolvable | Aws | The AWS Identity and Access Management settings. |
authorizationType?
Type:
string
(optional)
The authorization type that the HTTP endpoint requires.
- AWS_IAM : The authorization type is Signature Version 4 (SigV4).
awsIamConfig?
Type:
IResolvable | Aws
(optional)
The AWS Identity and Access Management settings.

.NET
Go
Java
Python
TypeScript