interface RoleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AuditManager.CfnAssessmentPropsMixin.RoleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsauditmanager#CfnAssessmentPropsMixin_RoleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.auditmanager.CfnAssessmentPropsMixin.RoleProperty |
Python | aws_cdk.cfn_property_mixins.aws_auditmanager.CfnAssessmentPropsMixin.RoleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_auditmanager » CfnAssessmentPropsMixin » RoleProperty |
The Role property type specifies the wrapper that contains AWS Audit Manager role information, such as the role type and IAM Amazon Resource Name (ARN).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_auditmanager as auditmanager } from '@aws-cdk/cfn-property-mixins';
const roleProperty: auditmanager.CfnAssessmentPropsMixin.RoleProperty = {
roleArn: 'roleArn',
roleType: 'roleType',
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | The Amazon Resource Name (ARN) of the IAM role. |
| role | string | The type of customer persona. |
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role.
roleType?
Type:
string
(optional)
The type of customer persona.
In
CreateAssessment,roleTypecan only bePROCESS_OWNER.In
UpdateSettings,roleTypecan only bePROCESS_OWNER.In
BatchCreateDelegationByAssessment,roleTypecan only beRESOURCE_OWNER.

.NET
Go
Java
Python
TypeScript