Class: Aws::StorageGateway::Types::ActivateGatewayOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::ActivateGatewayOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-storagegateway/types.rb
Overview
Storage Gateway returns the Amazon Resource Name (ARN) of the activated gateway. It is a string made of information such as your account, gateway name, and Amazon Web Services Region. This ARN is used to reference the gateway in other API operations as well as resource-based authorization.
<note markdown=“1”> For gateways activated prior to September 02, 2015, the gateway ARN contains the gateway name rather than the gateway ID. Changing the name of the gateway has no effect on the gateway ARN.
</note>
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gateway_arn ⇒ String
The Amazon Resource Name (ARN) of the gateway.
Instance Attribute Details
#gateway_arn ⇒ String
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and Amazon Web Services Region.
158 159 160 161 162 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 158 class ActivateGatewayOutput < Struct.new( :gateway_arn) SENSITIVE = [] include Aws::Structure end |