interface CfnAssessmentTargetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Inspector.Mixins.CfnAssessmentTargetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinspector/mixins#CfnAssessmentTargetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.inspector.mixins.CfnAssessmentTargetMixinProps |
Python | aws_cdk.mixins_preview.aws_inspector.mixins.CfnAssessmentTargetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_inspector » mixins » CfnAssessmentTargetMixinProps |
Properties for CfnAssessmentTargetPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as inspector_mixins } from '@aws-cdk/mixins-preview/aws-inspector';
const cfnAssessmentTargetMixinProps: inspector_mixins.CfnAssessmentTargetMixinProps = {
assessmentTargetName: 'assessmentTargetName',
resourceGroupArn: 'resourceGroupArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| assessment | string | The name of the Amazon Inspector assessment target. |
| resource | string | The ARN that specifies the resource group that is used to create the assessment target. |
assessmentTargetName?
Type:
string
(optional)
The name of the Amazon Inspector assessment target.
The name must be unique within the AWS account .
resourceGroupArn?
Type:
string
(optional)
The ARN that specifies the resource group that is used to create the assessment target.
If resourceGroupArn is not specified, all EC2 instances in the current AWS account and Region are included in the assessment target.

.NET
Go
Java
Python
TypeScript