typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
61 lines (60 loc) • 2.17 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Mesh_Type = 'AWS::AppMesh::Mesh';
export declare const Mesh_Type = "AWS::AppMesh::Mesh";
/**
* Resource Type definition for AWS::AppMesh::Mesh {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html}
*/
export default function Mesh(props: Mesh_Properties): CfnResource<Mesh_Properties>;
/**
* Resource Type definition for AWS::AppMesh::Mesh {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html}
*/
export declare type Mesh_Properties = {
Uid?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname}
*/
MeshName?: Resolvable<string>;
MeshOwner?: Resolvable<string>;
ResourceOwner?: Resolvable<string>;
Id?: Resolvable<string>;
Arn?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-spec}
*/
Spec?: MeshSpec;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-tags}
*/
Tags?: Tag[];
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-meshspec.html}
*/
export declare type MeshSpec = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-meshspec.html#cfn-appmesh-mesh-meshspec-egressfilter}
*/
EgressFilter?: EgressFilter;
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html}
*/
export declare type EgressFilter = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type}
*/
Type: Resolvable<string>;
};
export declare type Tag = {
Value: Resolvable<string>;
Key: Resolvable<string>;
};