typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
51 lines (50 loc) • 2.09 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type ResourceShare_Type = 'AWS::RAM::ResourceShare';
export declare const ResourceShare_Type = "AWS::RAM::ResourceShare";
/**
* Resource Type definition for AWS::RAM::ResourceShare {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html}
*/
export default function ResourceShare(props: ResourceShare_Properties): CfnResource<ResourceShare_Properties>;
/**
* Resource Type definition for AWS::RAM::ResourceShare {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html}
*/
export declare type ResourceShare_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-permissionarns}
*/
PermissionArns?: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-principals}
*/
Principals?: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals}
*/
AllowExternalPrincipals?: Resolvable<boolean>;
Id?: Resolvable<string>;
Arn?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-resourcearns}
*/
ResourceArns?: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-tags}
*/
Tags?: Tag[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name}
*/
Name: Resolvable<string>;
};
export declare type Tag = {
Value: Resolvable<string>;
Key: Resolvable<string>;
};