Class: Aws::DataSync::Types::AgentListEntry

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

Overview

Represents a single entry in a list (or array) of DataSync agents when you call the [ListAgents] operation.

[1]: docs.aws.amazon.com/datasync/latest/userguide/API_ListAgents.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#agent_arnString

The Amazon Resource Name (ARN) of a DataSync agent.

Returns:

  • (String)


117
118
119
120
121
122
123
# File 'lib/aws-sdk-datasync/types.rb', line 117

class AgentListEntry < Struct.new(
  :agent_arn,
  :name,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of an agent.

Returns:

  • (String)


117
118
119
120
121
122
123
# File 'lib/aws-sdk-datasync/types.rb', line 117

class AgentListEntry < Struct.new(
  :agent_arn,
  :name,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of an agent. For more information, see [DataSync agent statuses].

[1]: docs.aws.amazon.com/datasync/latest/userguide/understand-agent-statuses.html

Returns:

  • (String)


117
118
119
120
121
122
123
# File 'lib/aws-sdk-datasync/types.rb', line 117

class AgentListEntry < Struct.new(
  :agent_arn,
  :name,
  :status)
  SENSITIVE = []
  include Aws::Structure
end