interface CfnUsagePlanKeyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApiGateway.CfnUsagePlanKeyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapigateway#CfnUsagePlanKeyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.apigateway.CfnUsagePlanKeyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_apigateway.CfnUsagePlanKeyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apigateway » 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 { aws_apigateway as apigateway } from '@aws-cdk/cfn-property-mixins';
const cfnUsagePlanKeyMixinProps: apigateway.CfnUsagePlanKeyMixinProps = {
keyId: 'keyId',
keyType: 'keyType',
usagePlanId: 'usagePlanId',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | IApi | The Id of the UsagePlanKey resource. |
| key | string | The type of a UsagePlanKey resource for a plan customer. |
| usage | string | IUsage | The Id of the UsagePlan resource representing the usage plan containing the UsagePlanKey resource representing a plan customer. |
keyId?
Type:
string | IApi
(optional)
The Id of the UsagePlanKey resource.
keyType?
Type:
string
(optional)
The type of a UsagePlanKey resource for a plan customer.
usagePlanId?
Type:
string | IUsage
(optional)
The Id of the UsagePlan resource representing the usage plan containing the UsagePlanKey resource representing a plan customer.

.NET
Go
Java
Python
TypeScript