Interface DetectorEvents.GuardDutyFinding.InstanceDetailsItem
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DetectorEvents.GuardDutyFinding.InstanceDetailsItem.Jsii$Proxy
- Enclosing class:
DetectorEvents.GuardDutyFinding
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.guardduty.events.*;
Object ipv6Addresses;
InstanceDetailsItem instanceDetailsItem = InstanceDetailsItem.builder()
.ipv6Addresses(List.of(ipv6Addresses))
.networkInterfaceId(List.of("networkInterfaceId"))
.privateDnsName(List.of("privateDnsName"))
.privateIpAddress(List.of("privateIpAddress"))
.privateIpAddresses(List.of(InstanceDetailsItemItem.builder()
.privateDnsName(List.of("privateDnsName"))
.privateIpAddress(List.of("privateIpAddress"))
.build()))
.publicDnsName(List.of("publicDnsName"))
.publicIp(List.of("publicIp"))
.securityGroups(List.of(InstanceDetailsItemItem1.builder()
.groupId(List.of("groupId"))
.groupName(List.of("groupName"))
.build()))
.subnetId(List.of("subnetId"))
.vpcId(List.of("vpcId"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDetectorEvents.GuardDutyFinding.InstanceDetailsItemstatic final classAn implementation forDetectorEvents.GuardDutyFinding.InstanceDetailsItem -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) ipv6Addresses property.(experimental) networkInterfaceId property.(experimental) privateDnsName property.(experimental) privateIpAddress property.(experimental) privateIpAddresses property.(experimental) publicDnsName property.(experimental) publicIp property.(experimental) securityGroups property.(experimental) subnetId property.getVpcId()(experimental) vpcId property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIpv6Addresses
(experimental) ipv6Addresses property.Specify an array of string values to match this event if the actual value of ipv6Addresses is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getNetworkInterfaceId
(experimental) networkInterfaceId property.Specify an array of string values to match this event if the actual value of networkInterfaceId is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getPrivateDnsName
(experimental) privateDnsName property.Specify an array of string values to match this event if the actual value of privateDnsName is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getPrivateIpAddress
(experimental) privateIpAddress property.Specify an array of string values to match this event if the actual value of privateIpAddress is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getPrivateIpAddresses
@Stability(Experimental) @Nullable default List<DetectorEvents.GuardDutyFinding.InstanceDetailsItemItem> getPrivateIpAddresses()(experimental) privateIpAddresses property.Specify an array of string values to match this event if the actual value of privateIpAddresses is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getPublicDnsName
(experimental) publicDnsName property.Specify an array of string values to match this event if the actual value of publicDnsName is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getPublicIp
(experimental) publicIp property.Specify an array of string values to match this event if the actual value of publicIp is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getSecurityGroups
@Stability(Experimental) @Nullable default List<DetectorEvents.GuardDutyFinding.InstanceDetailsItemItem1> getSecurityGroups()(experimental) securityGroups property.Specify an array of string values to match this event if the actual value of securityGroups is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getSubnetId
(experimental) subnetId property.Specify an array of string values to match this event if the actual value of subnetId is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getVpcId
(experimental) vpcId property.Specify an array of string values to match this event if the actual value of vpcId is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
@Stability(Experimental) static DetectorEvents.GuardDutyFinding.InstanceDetailsItem.Builder builder()
-