Class CfnDataSourcePropsMixin.HttpConfigProperty
Use the HttpConfig property type to specify HttpConfig for an AWS AppSync data source.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.HttpConfigProperty : CfnDataSourcePropsMixin.IHttpConfigProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.HttpConfigProperty Implements CfnDataSourcePropsMixin.IHttpConfigProperty
Remarks
HttpConfig is a property of the AWS::AppSync::DataSource resource.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins;
var httpConfigProperty = new HttpConfigProperty {
AuthorizationConfig = new AuthorizationConfigProperty {
AuthorizationType = "authorizationType",
AwsIamConfig = new AwsIamConfigProperty {
SigningRegion = "signingRegion",
SigningServiceName = "signingServiceName"
}
},
Endpoint = "endpoint"
};
Synopsis
Constructors
| HttpConfigProperty() | Use the |
Properties
| AuthorizationConfig | The authorization configuration. |
| Endpoint | The endpoint. |
Constructors
HttpConfigProperty()
Use the HttpConfig property type to specify HttpConfig for an AWS AppSync data source.
public HttpConfigProperty()
Remarks
HttpConfig is a property of the AWS::AppSync::DataSource resource.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins;
var httpConfigProperty = new HttpConfigProperty {
AuthorizationConfig = new AuthorizationConfigProperty {
AuthorizationType = "authorizationType",
AwsIamConfig = new AwsIamConfigProperty {
SigningRegion = "signingRegion",
SigningServiceName = "signingServiceName"
}
},
Endpoint = "endpoint"
};
Properties
AuthorizationConfig
The authorization configuration.
public object? AuthorizationConfig { get; set; }
Property Value
Remarks
Endpoint
The endpoint.
public string? Endpoint { get; set; }