interface AWSAccountProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AuditManager.CfnAssessment.AWSAccountProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsauditmanager#CfnAssessment_AWSAccountProperty |
Java | software.amazon.awscdk.services.auditmanager.CfnAssessment.AWSAccountProperty |
Python | aws_cdk.aws_auditmanager.CfnAssessment.AWSAccountProperty |
TypeScript | aws-cdk-lib » aws_auditmanager » CfnAssessment » 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 { aws_auditmanager as auditmanager } from 'aws-cdk-lib';
const aWSAccountProperty: auditmanager.CfnAssessment.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 .