interface ScopeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AuditManager.CfnAssessment.ScopeProperty |
Java | software.amazon.awscdk.services.auditmanager.CfnAssessment.ScopeProperty |
Python | aws_cdk.aws_auditmanager.CfnAssessment.ScopeProperty |
TypeScript | @aws-cdk/aws-auditmanager » CfnAssessment » ScopeProperty |
The Scope property type specifies the wrapper that contains the AWS accounts and services that are in scope for the assessment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as auditmanager from '@aws-cdk/aws-auditmanager';
const scopeProperty: auditmanager.CfnAssessment.ScopeProperty = {
awsAccounts: [{
emailAddress: 'emailAddress',
id: 'id',
name: 'name',
}],
awsServices: [{
serviceName: 'serviceName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | IResolvable | IResolvable | AWSAccount[] | The AWS accounts that are included in the scope of the assessment. |
| aws | IResolvable | IResolvable | AWSService[] | The AWS services that are included in the scope of the assessment. |
awsAccounts?
Type:
IResolvable | IResolvable | AWSAccount[]
(optional)
The AWS accounts that are included in the scope of the assessment.
awsServices?
Type:
IResolvable | IResolvable | AWSService[]
(optional)
The AWS services that are included in the scope of the assessment.

.NET
Java
Python
TypeScript