Class: Aws::AuditManager::Types::CreateDelegationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::CreateDelegationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-auditmanager/types.rb
Overview
A collection of attributes that’s used to create a delegation for an assessment in Audit Manager.
Constant Summary collapse
- SENSITIVE =
[:comment]
Instance Attribute Summary collapse
-
#comment ⇒ String
A comment that’s related to the delegation request.
-
#control_set_id ⇒ String
The unique identifier for the control set.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role.
-
#role_type ⇒ String
The type of customer persona.
Instance Attribute Details
#comment ⇒ String
A comment that’s related to the delegation request.
1856 1857 1858 1859 1860 1861 1862 1863 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 1856 class CreateDelegationRequest < Struct.new( :comment, :control_set_id, :role_arn, :role_type) SENSITIVE = [:comment] include Aws::Structure end |
#control_set_id ⇒ String
The unique identifier for the control set.
1856 1857 1858 1859 1860 1861 1862 1863 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 1856 class CreateDelegationRequest < Struct.new( :comment, :control_set_id, :role_arn, :role_type) SENSITIVE = [:comment] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role.
1856 1857 1858 1859 1860 1861 1862 1863 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 1856 class CreateDelegationRequest < Struct.new( :comment, :control_set_id, :role_arn, :role_type) SENSITIVE = [:comment] 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>
1856 1857 1858 1859 1860 1861 1862 1863 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 1856 class CreateDelegationRequest < Struct.new( :comment, :control_set_id, :role_arn, :role_type) SENSITIVE = [:comment] include Aws::Structure end |