Class RestApiReference
A reference to a RestApi resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class RestApiReference : IRestApiReference
Syntax (vb)
Public Class RestApiReference Implements IRestApiReference
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.AWS.APIGateway;
var restApiReference = new RestApiReference {
RestApiId = "restApiId"
};
Synopsis
Constructors
RestApiReference() | A reference to a RestApi resource. |
Properties
RestApiId | The RestApiId of the RestApi resource. |
Constructors
RestApiReference()
A reference to a RestApi resource.
public RestApiReference()
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.AWS.APIGateway;
var restApiReference = new RestApiReference {
RestApiId = "restApiId"
};
Properties
RestApiId
The RestApiId of the RestApi resource.
public string RestApiId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated