interface AccessScopePathRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnNetworkInsightsAccessScopePropsMixin.AccessScopePathRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnNetworkInsightsAccessScopePropsMixin_AccessScopePathRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnNetworkInsightsAccessScopePropsMixin.AccessScopePathRequestProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkInsightsAccessScopePropsMixin.AccessScopePathRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnNetworkInsightsAccessScopePropsMixin » AccessScopePathRequestProperty |
Describes a path.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const accessScopePathRequestProperty: ec2_mixins.CfnNetworkInsightsAccessScopePropsMixin.AccessScopePathRequestProperty = {
destination: {
packetHeaderStatement: {
destinationAddresses: ['destinationAddresses'],
destinationPorts: ['destinationPorts'],
destinationPrefixLists: ['destinationPrefixLists'],
protocols: ['protocols'],
sourceAddresses: ['sourceAddresses'],
sourcePorts: ['sourcePorts'],
sourcePrefixLists: ['sourcePrefixLists'],
},
resourceStatement: {
resources: ['resources'],
resourceTypes: ['resourceTypes'],
},
},
source: {
packetHeaderStatement: {
destinationAddresses: ['destinationAddresses'],
destinationPorts: ['destinationPorts'],
destinationPrefixLists: ['destinationPrefixLists'],
protocols: ['protocols'],
sourceAddresses: ['sourceAddresses'],
sourcePorts: ['sourcePorts'],
sourcePrefixLists: ['sourcePrefixLists'],
},
resourceStatement: {
resources: ['resources'],
resourceTypes: ['resourceTypes'],
},
},
throughResources: [{
resourceStatement: {
resources: ['resources'],
resourceTypes: ['resourceTypes'],
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destination? | IResolvable | Path | The destination. |
| source? | IResolvable | Path | The source. |
| through | IResolvable | (IResolvable | Through)[] | The through resources. |
destination?
Type:
IResolvable | Path
(optional)
The destination.
source?
Type:
IResolvable | Path
(optional)
The source.
throughResources?
Type:
IResolvable | (IResolvable | Through)[]
(optional)
The through resources.

.NET
Go
Java
Python
TypeScript