interface AWSAccountProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AuditManager.Mixins.CfnAssessmentPropsMixin.AWSAccountProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsauditmanager/mixins#CfnAssessmentPropsMixin_AWSAccountProperty |
Java | software.amazon.awscdk.mixins.preview.services.auditmanager.mixins.CfnAssessmentPropsMixin.AWSAccountProperty |
Python | aws_cdk.mixins_preview.aws_auditmanager.mixins.CfnAssessmentPropsMixin.AWSAccountProperty |
TypeScript | @aws-cdk/mixins-preview » aws_auditmanager » mixins » CfnAssessmentPropsMixin » AWSAccountProperty |
The AWSAccount property type specifies the wrapper of the AWS account details, such as account ID, email address, and so on.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as auditmanager_mixins } from '@aws-cdk/mixins-preview/aws-auditmanager';
const aWSAccountProperty: auditmanager_mixins.CfnAssessmentPropsMixin.AWSAccountProperty = {
emailAddress: 'emailAddress',
id: 'id',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| email | string | The email address that's associated with the AWS account . |
| id? | string | The identifier for the AWS account . |
| name? | string | The name of the AWS account . |
emailAddress?
Type:
string
(optional)
The email address that's associated with the AWS account .
id?
Type:
string
(optional)
The identifier for the AWS account .
name?
Type:
string
(optional)
The name of the AWS account .

.NET
Go
Java
Python
TypeScript