interface ScopeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AuditManager.CfnAssessment.ScopeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsauditmanager#CfnAssessment_ScopeProperty |
Java | software.amazon.awscdk.services.auditmanager.CfnAssessment.ScopeProperty |
Python | aws_cdk.aws_auditmanager.CfnAssessment.ScopeProperty |
TypeScript | aws-cdk-lib » 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 { aws_auditmanager as auditmanager } from 'aws-cdk-lib';
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.
This API parameter is no longer supported. If you use this parameter to specify one or more AWS services , Audit Manager ignores this input. Instead, the value for
awsServiceswill show as empty.

.NET
Go
Java
Python
TypeScript