AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the DescribeGatewayInformation operation. Returns metadata about a gateway such as its name, network interfaces, time zone, status, and software version. To specify which gateway to describe, use the Amazon Resource Name (ARN) of the gateway in your request.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.StorageGateway.AmazonStorageGatewayRequest
      Amazon.StorageGateway.Model.DescribeGatewayInformationRequest

Namespace: Amazon.StorageGateway.Model
Assembly: AWSSDK.StorageGateway.dll
Version: 3.x.y.z

Syntax

C#
public class DescribeGatewayInformationRequest : AmazonStorageGatewayRequest
         IAmazonWebServiceRequest

The DescribeGatewayInformationRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property GatewayARN System.String

Gets and sets the property GatewayARN.

Examples

Returns metadata about a gateway such as its name, network interfaces, configured time zone, and the state (whether the gateway is running or not).

To describe metadata about the gateway


var client = new AmazonStorageGatewayClient();
var response = client.DescribeGatewayInformation(new DescribeGatewayInformationRequest 
{
    GatewayARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
});

string gatewayARN = response.GatewayARN;
string gatewayId = response.GatewayId;
string gatewayName = response.GatewayName;
List<NetworkInterface> gatewayNetworkInterfaces = response.GatewayNetworkInterfaces;
string gatewayState = response.GatewayState;
string gatewayTimezone = response.GatewayTimezone;
string gatewayType = response.GatewayType;
string lastSoftwareUpdate = response.LastSoftwareUpdate;
string nextUpdateAvailabilityDate = response.NextUpdateAvailabilityDate;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5