typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
37 lines (36 loc) • 1.48 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type ApiKey_Type = 'AWS::AppSync::ApiKey';
export declare const ApiKey_Type = "AWS::AppSync::ApiKey";
/**
* Resource Type definition for AWS::AppSync::ApiKey {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html}
*/
export default function ApiKey(props: ApiKey_Properties): CfnResource<ApiKey_Properties>;
/**
* Resource Type definition for AWS::AppSync::ApiKey {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html}
*/
export declare type ApiKey_Properties = {
ApiKey?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-description}
*/
Description?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apikeyid}
*/
ApiKeyId?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-expires}
*/
Expires?: Resolvable<number>;
Arn?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid}
*/
ApiId: Resolvable<string>;
};