UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

37 lines (36 loc) 1.57 kB
import { CfnResource, Resolvable } from '../../base'; export declare type Destination_Type = 'AWS::Logs::Destination'; export declare const Destination_Type = "AWS::Logs::Destination"; /** * Resource Type definition for AWS::Logs::Destination {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html} */ export default function Destination(props: Destination_Properties): CfnResource<Destination_Properties>; /** * Resource Type definition for AWS::Logs::Destination {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html} */ export declare type Destination_Properties = { Id?: Resolvable<string>; Arn?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname} */ DestinationName: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy} */ DestinationPolicy: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn} */ RoleArn: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn} */ TargetArn: Resolvable<string>; };