Interface CfnDataSource.IAuthorizationConfigProperty
The AuthorizationConfig property type specifies the authorization type and configuration for an AWS AppSync http data source.
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSource.IAuthorizationConfigProperty
Syntax (vb)
Public Interface CfnDataSource.IAuthorizationConfigProperty
Remarks
AuthorizationConfig is a property of the AWS AppSync DataSource HttpConfig property type.
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.AWS.AppSync;
var authorizationConfigProperty = new AuthorizationConfigProperty {
AuthorizationType = "authorizationType",
// the properties below are optional
AwsIamConfig = new AwsIamConfigProperty {
SigningRegion = "signingRegion",
SigningServiceName = "signingServiceName"
}
};
Synopsis
Properties
| AuthorizationType | The authorization type that the HTTP endpoint requires. |
| AwsIamConfig | The AWS Identity and Access Management settings. |
Properties
AuthorizationType
The authorization type that the HTTP endpoint requires.
string AuthorizationType { get; }
Property Value
Remarks
AwsIamConfig
The AWS Identity and Access Management settings.
object? AwsIamConfig { get; }