interface ApproverProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MPA.Mixins.CfnApprovalTeamPropsMixin.ApproverProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmpa/mixins#CfnApprovalTeamPropsMixin_ApproverProperty |
Java | software.amazon.awscdk.mixins.preview.services.mpa.mixins.CfnApprovalTeamPropsMixin.ApproverProperty |
Python | aws_cdk.mixins_preview.aws_mpa.mixins.CfnApprovalTeamPropsMixin.ApproverProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mpa » mixins » CfnApprovalTeamPropsMixin » ApproverProperty |
Contains details for an approver.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mpa_mixins } from '@aws-cdk/mixins-preview/aws-mpa';
const approverProperty: mpa_mixins.CfnApprovalTeamPropsMixin.ApproverProperty = {
approverId: 'approverId',
primaryIdentityId: 'primaryIdentityId',
primaryIdentitySourceArn: 'primaryIdentitySourceArn',
primaryIdentityStatus: 'primaryIdentityStatus',
responseTime: 'responseTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| approver | string | ID for the approver. |
| primary | string | ID for the user. |
| primary | string | Amazon Resource Name (ARN) for the identity source. |
| primary | string | Status for the identity source. |
| response | string | Timestamp when the approver responded to an approval team invitation. |
approverId?
Type:
string
(optional)
ID for the approver.
primaryIdentityId?
Type:
string
(optional)
ID for the user.
primaryIdentitySourceArn?
Type:
string
(optional)
Amazon Resource Name (ARN) for the identity source.
The identity source manages the user authentication for approvers.
primaryIdentityStatus?
Type:
string
(optional)
Status for the identity source.
For example, if an approver has accepted a team invitation with a user authentication method managed by the identity source.
responseTime?
Type:
string
(optional)
Timestamp when the approver responded to an approval team invitation.

.NET
Go
Java
Python
TypeScript