typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
28 lines (27 loc) • 1.15 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type EventBus_Type = 'AWS::Events::EventBus';
export declare const EventBus_Type = "AWS::Events::EventBus";
/**
* Resource Type definition for AWS::Events::EventBus {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html}
*/
export default function EventBus(props: EventBus_Properties): CfnResource<EventBus_Properties>;
/**
* Resource Type definition for AWS::Events::EventBus {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html}
*/
export declare type EventBus_Properties = {
Id?: Resolvable<string>;
Policy?: Resolvable<string>;
Arn?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name}
*/
Name: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename}
*/
EventSourceName?: Resolvable<string>;
};