Class CfnDataSource.AwsIamConfigProperty
Use the AwsIamConfig
property type to specify AwsIamConfig
for a AWS AppSync authorizaton.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.AwsIamConfigProperty : CfnDataSource.IAwsIamConfigProperty
Syntax (vb)
Public Class CfnDataSource.AwsIamConfigProperty Implements CfnDataSource.IAwsIamConfigProperty
Remarks
AwsIamConfig
is a property of the AWS AppSync DataSource AuthorizationConfig 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.AWS.AppSync;
var awsIamConfigProperty = new AwsIamConfigProperty {
SigningRegion = "signingRegion",
SigningServiceName = "signingServiceName"
};
Synopsis
Constructors
AwsIamConfigProperty() | Use the |
Properties
SigningRegion | The signing Region for AWS Identity and Access Management authorization. |
SigningServiceName | The signing service name for AWS Identity and Access Management authorization. |
Constructors
AwsIamConfigProperty()
Use the AwsIamConfig
property type to specify AwsIamConfig
for a AWS AppSync authorizaton.
public AwsIamConfigProperty()
Remarks
AwsIamConfig
is a property of the AWS AppSync DataSource AuthorizationConfig 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.AWS.AppSync;
var awsIamConfigProperty = new AwsIamConfigProperty {
SigningRegion = "signingRegion",
SigningServiceName = "signingServiceName"
};
Properties
SigningRegion
The signing Region for AWS Identity and Access Management authorization.
public string? SigningRegion { get; set; }
Property Value
Remarks
SigningServiceName
The signing service name for AWS Identity and Access Management authorization.
public string? SigningServiceName { get; set; }