interface HttpConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnDataSourcePropsMixin.HttpConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnDataSourcePropsMixin_HttpConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnDataSourcePropsMixin.HttpConfigProperty |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnDataSourcePropsMixin.HttpConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » CfnDataSourcePropsMixin » HttpConfigProperty |
Use the HttpConfig property type to specify HttpConfig for an AWS AppSync data source.
HttpConfig is a property of the AWS::AppSync::DataSource resource.
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 httpConfigProperty: appsync_mixins.CfnDataSourcePropsMixin.HttpConfigProperty = {
authorizationConfig: {
authorizationType: 'authorizationType',
awsIamConfig: {
signingRegion: 'signingRegion',
signingServiceName: 'signingServiceName',
},
},
endpoint: 'endpoint',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | IResolvable | Authorization | The authorization configuration. |
| endpoint? | string | The endpoint. |
authorizationConfig?
Type:
IResolvable | Authorization
(optional)
The authorization configuration.
endpoint?
Type:
string
(optional)
The endpoint.

.NET
Go
Java
Python
TypeScript