Class: Aws::StorageGateway::Types::SetLocalConsolePasswordInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-storagegateway/types.rb

Overview

Note:

When making an API call, you may pass SetLocalConsolePasswordInput data as a hash:

{
  gateway_arn: "GatewayARN", # required
  local_console_password: "LocalConsolePassword", # required
}

SetLocalConsolePasswordInput

Constant Summary collapse

SENSITIVE =
[:local_console_password]

Instance Attribute Summary collapse

Instance Attribute Details

#gateway_arnString

The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and AWS Region.

Returns:

  • (String)


5677
5678
5679
5680
5681
5682
# File 'lib/aws-sdk-storagegateway/types.rb', line 5677

class SetLocalConsolePasswordInput < Struct.new(
  :gateway_arn,
  :local_console_password)
  SENSITIVE = [:local_console_password]
  include Aws::Structure
end

#local_console_passwordString

The password you want to set for your VM local console.

Returns:

  • (String)


5677
5678
5679
5680
5681
5682
# File 'lib/aws-sdk-storagegateway/types.rb', line 5677

class SetLocalConsolePasswordInput < Struct.new(
  :gateway_arn,
  :local_console_password)
  SENSITIVE = [:local_console_password]
  include Aws::Structure
end