Class: Aws::DataSync::Types::AgentListEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::AgentListEntry
- Defined in:
- gems/aws-sdk-datasync/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_arn ⇒ String
The Amazon Resource Name (ARN) of a DataSync agent.
-
#name ⇒ String
The name of an agent.
-
#platform ⇒ Types::Platform
The platform-related details about the agent, such as the version number.
-
#status ⇒ String
The status of an agent.
Instance Attribute Details
#agent_arn ⇒ String
The Amazon Resource Name (ARN) of a DataSync agent.
51 52 53 54 55 56 57 58 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 51 class AgentListEntry < Struct.new( :agent_arn, :name, :status, :platform) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of an agent.
51 52 53 54 55 56 57 58 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 51 class AgentListEntry < Struct.new( :agent_arn, :name, :status, :platform) SENSITIVE = [] include Aws::Structure end |
#platform ⇒ Types::Platform
The platform-related details about the agent, such as the version number.
51 52 53 54 55 56 57 58 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 51 class AgentListEntry < Struct.new( :agent_arn, :name, :status, :platform) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of an agent.
If the status is
ONLINE, the agent is configured properly and ready to use.If the status is
OFFLINE, the agent has been out of contact with DataSync for five minutes or longer. This can happen for a few reasons. For more information, see What do I do if my agent is offline?
51 52 53 54 55 56 57 58 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 51 class AgentListEntry < Struct.new( :agent_arn, :name, :status, :platform) SENSITIVE = [] include Aws::Structure end |