interface ResourceScanReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFormation.ResourceScanReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudformation#ResourceScanReference |
Java | software.amazon.awscdk.interfaces.cloudformation.ResourceScanReference |
Python | aws_cdk.interfaces.aws_cloudformation.ResourceScanReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudformation » ResourceScanReference |
A reference to a ResourceScan resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as interfaces_cloudformation } from 'aws-cdk-lib/interfaces';
const resourceScanReference: interfaces_cloudformation.ResourceScanReference = {
resourceScanId: 'resourceScanId',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The ResourceScanId of the ResourceScan resource. |
resourceScanId
Type:
string
The ResourceScanId of the ResourceScan resource.

.NET
Go
Java
Python
TypeScript