/** *
Describes a gateway object.
*/ export interface _GatewayInfo { /** *The unique identifier assigned to your gateway during activation. This ID becomes part of the gateway Amazon Resource Name (ARN), which you use as input for other operations.
*/ GatewayId?: string; /** *The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.
*/ GatewayARN?: string; /** *The type of the gateway.
*/ GatewayType?: string; /** *The state of the gateway.
Valid Values: DISABLED or ACTIVE
*/ GatewayOperationalState?: string; /** *The name of the gateway.
*/ GatewayName?: string; /** *The ID of the Amazon EC2 instance that was used to launch the gateway.
*/ Ec2InstanceId?: string; /** *The AWS Region where the Amazon EC2 instance is located.
*/ Ec2InstanceRegion?: string; } export declare type _UnmarshalledGatewayInfo = _GatewayInfo;