Show / Hide Table of Contents

Class CfnApi.AuthModeProperty

Describes an authorization configuration.

Inheritance
object
CfnApi.AuthModeProperty
Implements
CfnApi.IAuthModeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApi.AuthModeProperty : CfnApi.IAuthModeProperty
Syntax (vb)
Public Class CfnApi.AuthModeProperty Implements CfnApi.IAuthModeProperty
Remarks

Use AuthMode to specify the publishing and subscription authorization configuration for an Event API.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-authmode.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 authModeProperty = new AuthModeProperty {
                 AuthType = "authType"
             };

Synopsis

Constructors

AuthModeProperty()

Describes an authorization configuration.

Properties

AuthType

The authorization type.

Constructors

AuthModeProperty()

Describes an authorization configuration.

public AuthModeProperty()
Remarks

Use AuthMode to specify the publishing and subscription authorization configuration for an Event API.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-authmode.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 authModeProperty = new AuthModeProperty {
                 AuthType = "authType"
             };

Properties

AuthType

The authorization type.

public string? AuthType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-authmode.html#cfn-appsync-api-authmode-authtype

Implements

CfnApi.IAuthModeProperty
Back to top Generated by DocFX