A key represents an aws.apigateway.ApiKey and the aws.apigateway.UsagePlanKey that ties it to a usage plan.

interface Key {
    apikey: ApiKey;
    usagePlanKey: UsagePlanKey;
}

Properties

Properties

apikey: ApiKey

apikey is either a aws.apigateway.ApiKey passed in or the aws.apigateway.ApiKey created on your behalf using the ApiKeyArgs

usagePlanKey: UsagePlanKey

usagePlanKey is created on your behalf to associate the apikey with the usage plan.

Generated using TypeDoc