interface CfnUsagePlanKeyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGateway.Mixins.CfnUsagePlanKeyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigateway/mixins#CfnUsagePlanKeyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.apigateway.mixins.CfnUsagePlanKeyMixinProps |
Python | aws_cdk.mixins_preview.aws_apigateway.mixins.CfnUsagePlanKeyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_apigateway » mixins » CfnUsagePlanKeyMixinProps |
Properties for CfnUsagePlanKeyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apigateway_mixins } from '@aws-cdk/mixins-preview/aws-apigateway';
const cfnUsagePlanKeyMixinProps: apigateway_mixins.CfnUsagePlanKeyMixinProps = {
keyId: 'keyId',
keyType: 'keyType',
usagePlanId: 'usagePlanId',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The Id of the UsagePlanKey resource. |
| key | string | The type of a UsagePlanKey resource for a plan customer. |
| usage | string | The Id of the UsagePlan resource representing the usage plan containing the UsagePlanKey resource representing a plan customer. |
keyId?
Type:
string
(optional)
The Id of the UsagePlanKey resource.
keyType?
Type:
string
(optional)
The type of a UsagePlanKey resource for a plan customer.
usagePlanId?
Type:
string
(optional)
The Id of the UsagePlan resource representing the usage plan containing the UsagePlanKey resource representing a plan customer.

.NET
Go
Java
Python
TypeScript