interface AuthorizationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnDataSourcePropsMixin.AuthorizationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnDataSourcePropsMixin_AuthorizationConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnDataSourcePropsMixin.AuthorizationConfigProperty |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnDataSourcePropsMixin.AuthorizationConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » 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 { mixins as appsync_mixins } from '@aws-cdk/mixins-preview/aws-appsync';
const authorizationConfigProperty: appsync_mixins.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