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

Class: Aws::CodeDeploy::Types::ListOnPremisesInstancesInput

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

Overview

Note:

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

{
  registration_status: "Registered", # accepts Registered, Deregistered
  tag_filters: [
    {
      key: "Key",
      value: "Value",
      type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
    },
  ],
  next_token: "NextToken",
}

Represents the input of a ListOnPremisesInstances operation.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

An identifier returned from the previous list on-premises instances call. It can be used to return the next set of on-premises instances in the list.

Returns:

  • (String)

    An identifier returned from the previous list on-premises instances call.

#registration_statusString

The registration status of the on-premises instances:

  • Deregistered: Include deregistered on-premises instances in the resulting list.

  • Registered: Include registered on-premises instances in the resulting list.

    Possible values:

    • Registered
    • Deregistered

Returns:

  • (String)

    The registration status of the on-premises instances:.

#tag_filtersArray<Types::TagFilter>

The on-premises instance tags that are used to restrict the on-premises instance names returned.

Returns:

  • (Array<Types::TagFilter>)

    The on-premises instance tags that are used to restrict the on-premises instance names returned.