UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

21 lines (20 loc) 921 B
import { CfnResource, Resolvable } from '../../base'; export declare type Account_Type = 'AWS::ApiGateway::Account'; export declare const Account_Type = "AWS::ApiGateway::Account"; /** * Resource Type definition for AWS::ApiGateway::Account {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html} */ export default function Account(props: Account_Properties): CfnResource<Account_Properties>; /** * Resource Type definition for AWS::ApiGateway::Account {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html} */ export declare type Account_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn} */ CloudWatchRoleArn?: Resolvable<string>; };