@Stability(value=Stable)
public static interface CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty
extends software.amazon.jsii.JsiiSerializable
Reflects any changes made by a component as traffic passes through. The fields of an inbound header are null except for the first component of a path.
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.ec2.*;
AnalysisPacketHeaderProperty analysisPacketHeaderProperty = AnalysisPacketHeaderProperty.builder()
.destinationAddresses(List.of("destinationAddresses"))
.destinationPortRanges(List.of(PortRangeProperty.builder()
.from(123)
.to(123)
.build()))
.protocol("protocol")
.sourceAddresses(List.of("sourceAddresses"))
.sourcePortRanges(List.of(PortRangeProperty.builder()
.from(123)
.to(123)
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty.Builder
A builder for
CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty |
static class |
CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty.Jsii$Proxy
An implementation for
CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty.Builder |
builder() |
default List<String> |
getDestinationAddresses()
The destination addresses.
|
default Object |
getDestinationPortRanges()
The destination port ranges.
|
default String |
getProtocol()
The protocol.
|
default List<String> |
getSourceAddresses()
The source addresses.
|
default Object |
getSourcePortRanges()
The source port ranges.
|
@Stability(value=Stable) @Nullable default List<String> getDestinationAddresses()
@Stability(value=Stable) @Nullable default Object getDestinationPortRanges()
@Stability(value=Stable) @Nullable default String getProtocol()
@Stability(value=Stable) @Nullable default List<String> getSourceAddresses()
@Stability(value=Stable) @Nullable default Object getSourcePortRanges()
@Stability(value=Stable) static CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty.Builder builder()
Copyright © 2022. All rights reserved.