Class: Aws::LocationService::Types::UpdateKeyResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::UpdateKeyResponse
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:update_time]
Instance Attribute Summary collapse
-
#key_arn ⇒ String
The Amazon Resource Name (ARN) for the API key resource.
-
#key_name ⇒ String
The name of the API key resource.
-
#update_time ⇒ Time
The timestamp for when the API key resource was last updated in [ ISO 8601][1] format:
YYYY-MM-DDThh:mm:ss.sssZ
.
Instance Attribute Details
#key_arn ⇒ String
The Amazon Resource Name (ARN) for the API key resource. Used when you need to specify a resource across all Amazon Web Services.
- Format example:
arn:aws:geo:region:account-id:key/ExampleKey
^
6836 6837 6838 6839 6840 6841 6842 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 6836 class UpdateKeyResponse < Struct.new( :key_arn, :key_name, :update_time) SENSITIVE = [:update_time] include Aws::Structure end |
#key_name ⇒ String
The name of the API key resource.
6836 6837 6838 6839 6840 6841 6842 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 6836 class UpdateKeyResponse < Struct.new( :key_arn, :key_name, :update_time) SENSITIVE = [:update_time] include Aws::Structure end |
#update_time ⇒ Time
The timestamp for when the API key resource was last updated in
ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
6836 6837 6838 6839 6840 6841 6842 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 6836 class UpdateKeyResponse < Struct.new( :key_arn, :key_name, :update_time) SENSITIVE = [:update_time] include Aws::Structure end |