interface DateRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnInsightPropsMixin.DateRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnInsightPropsMixin_DateRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnInsightPropsMixin.DateRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnInsightPropsMixin.DateRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » CfnInsightPropsMixin » DateRangeProperty |
A date range for the date filter.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityhub as securityhub } from '@aws-cdk/cfn-property-mixins';
const dateRangeProperty: securityhub.CfnInsightPropsMixin.DateRangeProperty = {
unit: 'unit',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| unit? | string | A date range unit for the date filter. |
| value? | number | A date range value for the date filter. |
unit?
Type:
string
(optional)
A date range unit for the date filter.
value?
Type:
number
(optional)
A date range value for the date filter.

.NET
Go
Java
Python
TypeScript