interface Organization4
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.Organization4 |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_Organization4 |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.Organization4 |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.Organization4 |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป Organization4 |
Type definition for Organization_4.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as guardduty_events } from '@aws-cdk/mixins-preview/aws-guardduty';
const organization4: guardduty_events.DetectorEvents.GuardDutyFinding.Organization4 = {
asn: ['asn'],
asnOrg: ['asnOrg'],
isp: ['isp'],
org: ['org'],
};
Properties
| Name | Type | Description |
|---|---|---|
| asn? | string[] | asn property. |
| asn | string[] | asnOrg property. |
| isp? | string[] | isp property. |
| org? | string[] | org property. |
asn?
Type:
string[]
(optional, default: Do not filter on this field)
asn property.
Specify an array of string values to match this event if the actual value of asn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
asnOrg?
Type:
string[]
(optional, default: Do not filter on this field)
asnOrg property.
Specify an array of string values to match this event if the actual value of asnOrg is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
isp?
Type:
string[]
(optional, default: Do not filter on this field)
isp property.
Specify an array of string values to match this event if the actual value of isp is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
org?
Type:
string[]
(optional, default: Do not filter on this field)
org property.
Specify an array of string values to match this event if the actual value of org is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript