interface UsagePlanReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.APIGateway.UsagePlanReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigateway#UsagePlanReference |
Java | software.amazon.awscdk.interfaces.apigateway.UsagePlanReference |
Python | aws_cdk.interfaces.aws_apigateway.UsagePlanReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigateway » UsagePlanReference |
A reference to a UsagePlan resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigateway as interfaces_apigateway } from 'aws-cdk-lib/interfaces';
const usagePlanReference: interfaces_apigateway.UsagePlanReference = {
usagePlanId: 'usagePlanId',
};
Properties
| Name | Type | Description |
|---|---|---|
| usage | string | The Id of the UsagePlan resource. |
usagePlanId
Type:
string
The Id of the UsagePlan resource.

.NET
Go
Java
Python
TypeScript