typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
25 lines (24 loc) • 1.13 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type ResourcePolicy_Type = 'AWS::Logs::ResourcePolicy';
export declare const ResourcePolicy_Type = "AWS::Logs::ResourcePolicy";
/**
* The resource schema for AWSLogs ResourcePolicy {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-resourcepolicy.html}
*/
export default function ResourcePolicy(props: ResourcePolicy_Properties): CfnResource<ResourcePolicy_Properties>;
/**
* The resource schema for AWSLogs ResourcePolicy {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-resourcepolicy.html}
*/
export declare type ResourcePolicy_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-resourcepolicy.html#cfn-logs-resourcepolicy-policyname}
*/
PolicyName: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-resourcepolicy.html#cfn-logs-resourcepolicy-policydocument}
*/
PolicyDocument: Resolvable<string>;
};