Class: Aws::LocationService::Types::DeleteKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::DeleteKeyRequest
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#force_delete ⇒ Boolean
ForceDelete bypasses an API key's expiry conditions and deletes the key.
-
#key_name ⇒ String
The name of the API key to delete.
Instance Attribute Details
#force_delete ⇒ Boolean
ForceDelete bypasses an API key's expiry conditions and deletes the
key. Set the parameter true to delete the key or to false to not
preemptively delete the API key.
Valid values: true, or false.
Required: No
2301 2302 2303 2304 2305 2306 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 2301 class DeleteKeyRequest < Struct.new( :key_name, :force_delete) SENSITIVE = [] include Aws::Structure end |
#key_name ⇒ String
The name of the API key to delete.
2301 2302 2303 2304 2305 2306 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 2301 class DeleteKeyRequest < Struct.new( :key_name, :force_delete) SENSITIVE = [] include Aws::Structure end |