typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
31 lines (30 loc) • 1.39 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Resource_Type = 'AWS::LakeFormation::Resource';
export declare const Resource_Type = "AWS::LakeFormation::Resource";
/**
* Resource Type definition for AWS::LakeFormation::Resource {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html}
*/
export default function Resource(props: Resource_Properties): CfnResource<Resource_Properties>;
/**
* Resource Type definition for AWS::LakeFormation::Resource {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html}
*/
export declare type Resource_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn}
*/
ResourceArn: Resolvable<string>;
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole}
*/
UseServiceLinkedRole: Resolvable<boolean>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-rolearn}
*/
RoleArn?: Resolvable<string>;
};