typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
48 lines (47 loc) • 2.01 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Registry_Type = 'AWS::EventSchemas::Registry';
export declare const Registry_Type = "AWS::EventSchemas::Registry";
/**
* Resource Type definition for AWS::EventSchemas::Registry {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html}
*/
export default function Registry(props: Registry_Properties): CfnResource<Registry_Properties>;
/**
* Resource Type definition for AWS::EventSchemas::Registry {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html}
*/
export declare type Registry_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-registryname}
*/
RegistryName?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-description}
*/
Description?: Resolvable<string>;
Id?: Resolvable<string>;
RegistryArn?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-tags}
*/
Tags?: TagsEntry[];
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-registry-tagsentry.html}
*/
export declare type TagsEntry = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-registry-tagsentry.html#cfn-eventschemas-registry-tagsentry-value}
*/
Value: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-registry-tagsentry.html#cfn-eventschemas-registry-tagsentry-key}
*/
Key: Resolvable<string>;
};