interface ThroughResourcesStatementRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnNetworkInsightsAccessScope.ThroughResourcesStatementRequestProperty |
Java | software.amazon.awscdk.services.ec2.CfnNetworkInsightsAccessScope.ThroughResourcesStatementRequestProperty |
Python | aws_cdk.aws_ec2.CfnNetworkInsightsAccessScope.ThroughResourcesStatementRequestProperty |
TypeScript | @aws-cdk/aws-ec2 » CfnNetworkInsightsAccessScope » ThroughResourcesStatementRequestProperty |
Describes a through resource statement.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const throughResourcesStatementRequestProperty: ec2.CfnNetworkInsightsAccessScope.ThroughResourcesStatementRequestProperty = {
resourceStatement: {
resources: ['resources'],
resourceTypes: ['resourceTypes'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | IResolvable | Resource | The resource statement. |
resourceStatement?
Type:
IResolvable | Resource
(optional)
The resource statement.

.NET
Java
Python
TypeScript