You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::OpsWorks::Types::RegisterInstanceRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RegisterInstanceRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  stack_id: "String", # required
  hostname: "String",
  public_ip: "String",
  private_ip: "String",
  rsa_public_key: "String",
  rsa_public_key_fingerprint: "String",
  instance_identity: {
    document: "String",
    signature: "String",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#hostnameString

The instance\'s hostname.

Returns:

  • (String)

    The instance\'s hostname.

#instance_identityTypes::InstanceIdentity

An InstanceIdentity object that contains the instance\'s identity.

Returns:

#private_ipString

The instance\'s private IP address.

Returns:

  • (String)

    The instance\'s private IP address.

#public_ipString

The instance\'s public IP address.

Returns:

  • (String)

    The instance\'s public IP address.

#rsa_public_keyString

The instances public RSA key. This key is used to encrypt communication between the instance and the service.

Returns:

  • (String)

    The instances public RSA key.

#rsa_public_key_fingerprintString

The instances public RSA key fingerprint.

Returns:

  • (String)

    The instances public RSA key fingerprint.

#stack_idString

The ID of the stack that the instance is to be registered with.

Returns:

  • (String)

    The ID of the stack that the instance is to be registered with.