import { _UnmarshalledNetworkInterface } from "./_NetworkInterface"; import { _UnmarshalledTag } from "./_Tag"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *
A JSON object containing the following fields:
*/ export interface DescribeGatewayInformationOutput extends __aws_sdk_types.MetadataBearer { /** *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 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 name you configured for your gateway.
*/ GatewayName?: string; /** *A value that indicates the time zone configured for the gateway.
*/ GatewayTimezone?: string; /** *A value that indicates the operating state of the gateway.
*/ GatewayState?: string; /** *A NetworkInterface array that contains descriptions of the gateway network interfaces.
*/ GatewayNetworkInterfaces?: Array<_UnmarshalledNetworkInterface>; /** *The type of the gateway.
*/ GatewayType?: string; /** *The date on which an update to the gateway is available. This date is in the time zone of the gateway. If the gateway is not available for an update this field is not returned in the response.
*/ NextUpdateAvailabilityDate?: string; /** *The date on which the last software update was applied to the gateway. If the gateway has never been updated, this field does not return a value in the response.
*/ LastSoftwareUpdate?: 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; /** *A list of up to 50 tags assigned to the gateway, sorted alphabetically by key name. Each tag is a key-value pair. For a gateway with more than 10 tags assigned, you can view all tags using the ListTagsForResource API operation.
The configuration settings for the virtual private cloud (VPC) endpoint for your gateway.
*/ VPCEndpoint?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }