Class AuthorizerReference
A reference to a Authorizer resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
RestApiId
The RestApiId of the Authorizer resource.
public string RestApiId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated