typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
28 lines (27 loc) • 1.36 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type ElasticLoadBalancerAttachment_Type = 'AWS::OpsWorks::ElasticLoadBalancerAttachment';
export declare const ElasticLoadBalancerAttachment_Type = "AWS::OpsWorks::ElasticLoadBalancerAttachment";
/**
* Resource Type definition for
* AWS::OpsWorks::ElasticLoadBalancerAttachment {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html}
*/
export default function ElasticLoadBalancerAttachment(props: ElasticLoadBalancerAttachment_Properties): CfnResource<ElasticLoadBalancerAttachment_Properties>;
/**
* Resource Type definition for
* AWS::OpsWorks::ElasticLoadBalancerAttachment {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html}
*/
export declare type ElasticLoadBalancerAttachment_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname}
*/
ElasticLoadBalancerName: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid}
*/
LayerId: Resolvable<string>;
};