Class: Aws::LocationService::Types::UpdateTrackerResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::UpdateTrackerResponse
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:update_time]
Instance Attribute Summary collapse
-
#tracker_arn ⇒ String
The Amazon Resource Name (ARN) of the updated tracker resource.
-
#tracker_name ⇒ String
The name of the updated tracker resource.
-
#update_time ⇒ Time
The timestamp for when the tracker resource was last updated in [ ISO 8601][1] format:
YYYY-MM-DDThh:mm:ss.sssZ
.
Instance Attribute Details
#tracker_arn ⇒ String
The Amazon Resource Name (ARN) of the updated tracker resource. Used to specify a resource across AWS.
- Format example:
arn:aws:geo:region:account-id:tracker/ExampleTracker
^
7130 7131 7132 7133 7134 7135 7136 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 7130 class UpdateTrackerResponse < Struct.new( :tracker_name, :tracker_arn, :update_time) SENSITIVE = [:update_time] include Aws::Structure end |
#tracker_name ⇒ String
The name of the updated tracker resource.
7130 7131 7132 7133 7134 7135 7136 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 7130 class UpdateTrackerResponse < Struct.new( :tracker_name, :tracker_arn, :update_time) SENSITIVE = [:update_time] include Aws::Structure end |
#update_time ⇒ Time
The timestamp for when the tracker resource was last updated in
ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
7130 7131 7132 7133 7134 7135 7136 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 7130 class UpdateTrackerResponse < Struct.new( :tracker_name, :tracker_arn, :update_time) SENSITIVE = [:update_time] include Aws::Structure end |