Show / Hide Table of Contents

Interface DetectorEvents.GuardDutyFinding.IInstanceDetailsItem

(experimental) Type definition for InstanceDetailsItem.

Namespace: Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface DetectorEvents.GuardDutyFinding.IInstanceDetailsItem
Syntax (vb)
Public Interface DetectorEvents.GuardDutyFinding.IInstanceDetailsItem
Remarks

Stability: Experimental

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events;

             var ipv6Addresses;

             var instanceDetailsItem = new InstanceDetailsItem {
                 Ipv6Addresses = new [] { ipv6Addresses },
                 NetworkInterfaceId = new [] { "networkInterfaceId" },
                 PrivateDnsName = new [] { "privateDnsName" },
                 PrivateIpAddress = new [] { "privateIpAddress" },
                 PrivateIpAddresses = new [] { new InstanceDetailsItemItem {
                     PrivateDnsName = new [] { "privateDnsName" },
                     PrivateIpAddress = new [] { "privateIpAddress" }
                 } },
                 PublicDnsName = new [] { "publicDnsName" },
                 PublicIp = new [] { "publicIp" },
                 SecurityGroups = new [] { new InstanceDetailsItemItem1 {
                     GroupId = new [] { "groupId" },
                     GroupName = new [] { "groupName" }
                 } },
                 SubnetId = new [] { "subnetId" },
                 VpcId = new [] { "vpcId" }
             };

Synopsis

Properties

Ipv6Addresses

(experimental) ipv6Addresses property.

NetworkInterfaceId

(experimental) networkInterfaceId property.

PrivateDnsName

(experimental) privateDnsName property.

PrivateIpAddress

(experimental) privateIpAddress property.

PrivateIpAddresses

(experimental) privateIpAddresses property.

PublicDnsName

(experimental) publicDnsName property.

PublicIp

(experimental) publicIp property.

SecurityGroups

(experimental) securityGroups property.

SubnetId

(experimental) subnetId property.

VpcId

(experimental) vpcId property.

Properties

Ipv6Addresses

(experimental) ipv6Addresses property.

object[]? Ipv6Addresses { get; }
Property Value

object[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

NetworkInterfaceId

(experimental) networkInterfaceId property.

string[]? NetworkInterfaceId { get; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

PrivateDnsName

(experimental) privateDnsName property.

string[]? PrivateDnsName { get; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

PrivateIpAddress

(experimental) privateIpAddress property.

string[]? PrivateIpAddress { get; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

PrivateIpAddresses

(experimental) privateIpAddresses property.

DetectorEvents.GuardDutyFinding.IInstanceDetailsItemItem[]? PrivateIpAddresses { get; }
Property Value

IInstanceDetailsItemItem[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

PublicDnsName

(experimental) publicDnsName property.

string[]? PublicDnsName { get; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

PublicIp

(experimental) publicIp property.

string[]? PublicIp { get; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

SecurityGroups

(experimental) securityGroups property.

DetectorEvents.GuardDutyFinding.IInstanceDetailsItemItem1[]? SecurityGroups { get; }
Property Value

IInstanceDetailsItemItem1[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

SubnetId

(experimental) subnetId property.

string[]? SubnetId { get; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

VpcId

(experimental) vpcId property.

string[]? VpcId { get; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Back to top Generated by DocFX