typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
31 lines (30 loc) • 1.4 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type UsagePlanKey_Type = 'AWS::ApiGateway::UsagePlanKey';
export declare const UsagePlanKey_Type = "AWS::ApiGateway::UsagePlanKey";
/**
* Resource Type definition for AWS::ApiGateway::UsagePlanKey {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html}
*/
export default function UsagePlanKey(props: UsagePlanKey_Properties): CfnResource<UsagePlanKey_Properties>;
/**
* Resource Type definition for AWS::ApiGateway::UsagePlanKey {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html}
*/
export declare type UsagePlanKey_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid}
*/
KeyId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype}
*/
KeyType: Resolvable<'API_KEY'>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid}
*/
UsagePlanId: Resolvable<string>;
Id?: Resolvable<string>;
};