@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
13 lines (12 loc) • 452 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface EIPAssociationProperties {
AllocationId?: Value<string>;
EIP?: Value<string>;
InstanceId?: Value<string>;
NetworkInterfaceId?: Value<string>;
PrivateIpAddress?: Value<string>;
}
export default class Inner_EIPAssociation extends ResourceBase<EIPAssociationProperties> {
constructor(properties: EIPAssociationProperties);
}