Class: Aws::STS::Types::GetAccessKeyInfoRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::STS::Types::GetAccessKeyInfoRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sts/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
The identifier of an access key.
Method Summary
Methods included from Aws::Structure
#empty?, included, #initialize, #key?, new, #to_h, #to_s
Instance Attribute Details
#access_key_id ⇒ String
The identifier of an access key.
This parameter allows (through its regex pattern) a string of characters that can consist of any upper- or lowercase letter or digit.
1028 1029 1030 1031 1032 |
# File 'lib/aws-sdk-sts/types.rb', line 1028 class GetAccessKeyInfoRequest < Struct.new( :access_key_id) SENSITIVE = [] include Aws::Structure end |