Class: Aws::AuditManager::Types::Role
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::Role
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-auditmanager/types.rb
Overview
The wrapper that contains the Audit Manager role information of the current user. This includes the role type and IAM Amazon Resource Name (ARN).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role.
-
#role_type ⇒ String
The type of customer persona.
Instance Attribute Details
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role.
3977 3978 3979 3980 3981 3982 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 3977 class Role < Struct.new( :role_type, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_type ⇒ String
The type of customer persona.
<note markdown=“1”> In ‘CreateAssessment`, `roleType` can only be `PROCESS_OWNER`.
In `UpdateSettings`, `roleType` can only be `PROCESS_OWNER`.
In `BatchCreateDelegationByAssessment`, `roleType` can only be
‘RESOURCE_OWNER`.
</note>
3977 3978 3979 3980 3981 3982 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 3977 class Role < Struct.new( :role_type, :role_arn) SENSITIVE = [] include Aws::Structure end |