Show / Hide Table of Contents

Class AuthorizerReference

A reference to a Authorizer resource.

Inheritance
object
AuthorizerReference
Implements
IAuthorizerReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AuthorizerReference : IAuthorizerReference
Syntax (vb)
Public Class AuthorizerReference Implements IAuthorizerReference
Remarks

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.Interfaces.APIGateway;

            var authorizerReference = new AuthorizerReference {
                AuthorizerId = "authorizerId",
                RestApiId = "restApiId"
            };

Synopsis

Constructors

AuthorizerReference()

A reference to a Authorizer resource.

Properties

AuthorizerId

The AuthorizerId of the Authorizer resource.

RestApiId

The RestApiId of the Authorizer resource.

Constructors

AuthorizerReference()

A reference to a Authorizer resource.

public AuthorizerReference()
Remarks

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.Interfaces.APIGateway;

            var authorizerReference = new AuthorizerReference {
                AuthorizerId = "authorizerId",
                RestApiId = "restApiId"
            };

Properties

AuthorizerId

The AuthorizerId of the Authorizer resource.

public string AuthorizerId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

RestApiId

The RestApiId of the Authorizer resource.

public string RestApiId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IAuthorizerReference
Back to top Generated by DocFX