interface EbsVolumeDetailsItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.EbsVolumeDetailsItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_EbsVolumeDetailsItem |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.EbsVolumeDetailsItem |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.EbsVolumeDetailsItem |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป EbsVolumeDetailsItem |
Type definition for EbsVolumeDetailsItem.
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 ebsVolumeDetailsItem: guardduty_events.DetectorEvents.GuardDutyFinding.EbsVolumeDetailsItem = {
deviceName: ['deviceName'],
encryptionType: ['encryptionType'],
kmsKeyArn: ['kmsKeyArn'],
snapshotArn: ['snapshotArn'],
volumeArn: ['volumeArn'],
volumeSizeInGb: ['volumeSizeInGb'],
volumeType: ['volumeType'],
};
Properties
| Name | Type | Description |
|---|---|---|
| device | string[] | deviceName property. |
| encryption | string[] | encryptionType property. |
| kms | string[] | kmsKeyArn property. |
| snapshot | string[] | snapshotArn property. |
| volume | string[] | volumeArn property. |
| volume | string[] | volumeSizeInGB property. |
| volume | string[] | volumeType property. |
deviceName?
Type:
string[]
(optional, default: Do not filter on this field)
deviceName property.
Specify an array of string values to match this event if the actual value of deviceName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
encryptionType?
Type:
string[]
(optional, default: Do not filter on this field)
encryptionType property.
Specify an array of string values to match this event if the actual value of encryptionType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
kmsKeyArn?
Type:
string[]
(optional, default: Do not filter on this field)
kmsKeyArn property.
Specify an array of string values to match this event if the actual value of kmsKeyArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
snapshotArn?
Type:
string[]
(optional, default: Do not filter on this field)
snapshotArn property.
Specify an array of string values to match this event if the actual value of snapshotArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
volumeArn?
Type:
string[]
(optional, default: Do not filter on this field)
volumeArn property.
Specify an array of string values to match this event if the actual value of volumeArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
volumeSizeInGb?
Type:
string[]
(optional, default: Do not filter on this field)
volumeSizeInGB property.
Specify an array of string values to match this event if the actual value of volumeSizeInGB is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
volumeType?
Type:
string[]
(optional, default: Do not filter on this field)
volumeType property.
Specify an array of string values to match this event if the actual value of volumeType 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