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 SetLocalConsolePassword operation. Sets the password for your VM local console. When you log in to the local console for the first time, you log in to the VM with the default credentials. We recommend that you set a new password. You don't need to know the default password to set a new password.

Inheritance Hierarchy

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

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

Syntax

C#
public class SetLocalConsolePasswordRequest : AmazonStorageGatewayRequest
         IAmazonWebServiceRequest

The SetLocalConsolePasswordRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property GatewayARN System.String

Gets and sets the property GatewayARN.

Public Property LocalConsolePassword System.String

Gets and sets the property LocalConsolePassword.

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

Examples

Sets the password for your VM local console.

To set a password for your VM


var client = new AmazonStorageGatewayClient();
var response = client.SetLocalConsolePassword(new SetLocalConsolePasswordRequest 
{
    GatewayARN = "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B",
    LocalConsolePassword = "PassWordMustBeAtLeast6Chars."
});

string gatewayARN = response.GatewayARN;

            

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