Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html

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

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype

    AwsIamConfig

    The AWS Identity and Access Management settings.

    object? AwsIamConfig { get; }
    Property Value

    object

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-awsiamconfig

    Type union: either IResolvable or CfnDataSource.IAwsIamConfigProperty

    Back to top Generated by DocFX