describeGatewayInformation
inline suspend fun StorageGatewayClient.describeGatewayInformation(crossinline block: DescribeGatewayInformationRequest.Builder.() -> Unit): DescribeGatewayInformationResponse
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.
Samples
fun main() {
//sampleStart
// Returns metadata about a gateway such as its name, network interfaces, configured time zone, and the
// state (whether the gateway is running or not).
val resp = storageGatewayClient.describeGatewayInformation {
gatewayArn = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
}
//sampleEnd
}