Class: Aws::GuardDuty::Types::AccessKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::AccessKey
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Contains information about the access keys.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#principal_id ⇒ String
Principal ID of the user.
-
#user_name ⇒ String
Name of the user.
-
#user_type ⇒ String
Type of the user.
Instance Attribute Details
#principal_id ⇒ String
Principal ID of the user.
133 134 135 136 137 138 139 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 133 class AccessKey < Struct.new( :principal_id, :user_name, :user_type) SENSITIVE = [] include Aws::Structure end |