Interface CfnAssessment.ScopeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssessment.ScopeProperty.Jsii$Proxy
- Enclosing class:
- CfnAssessment
@Stability(Stable)
public static interface CfnAssessment.ScopeProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.auditmanager.*;
ScopeProperty scopeProperty = ScopeProperty.builder()
.awsAccounts(List.of(AWSAccountProperty.builder()
.emailAddress("emailAddress")
.id("id")
.name("name")
.build()))
.awsServices(List.of(AWSServiceProperty.builder()
.serviceName("serviceName")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssessment.ScopePropertystatic final classAn implementation forCfnAssessment.ScopeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsAccounts
The AWS accounts that are included in the scope of the assessment. -
getAwsServices
The AWS services that are included in the scope of the assessment. -
builder
-