Show / Hide Table of Contents

Class CfnInsightPropsMixin.DateFilterProperty

A date filter for querying findings.

Inheritance
object
CfnInsightPropsMixin.DateFilterProperty
Implements
CfnInsightPropsMixin.IDateFilterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnInsightPropsMixin.DateFilterProperty : CfnInsightPropsMixin.IDateFilterProperty
Syntax (vb)
Public Class CfnInsightPropsMixin.DateFilterProperty Implements CfnInsightPropsMixin.IDateFilterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-datefilter.html

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.CfnPropertyMixins.AWS.SecurityHub;

             var dateFilterProperty = new DateFilterProperty {
                 DateRange = new DateRangeProperty {
                     Unit = "unit",
                     Value = 123
                 },
                 End = "end",
                 Start = "start"
             };

Synopsis

Constructors

DateFilterProperty()

A date filter for querying findings.

Properties

DateRange

A date range for the date filter.

End

A timestamp that provides the end date for the date filter.

Start

A timestamp that provides the start date for the date filter.

Constructors

DateFilterProperty()

A date filter for querying findings.

public DateFilterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-datefilter.html

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.CfnPropertyMixins.AWS.SecurityHub;

             var dateFilterProperty = new DateFilterProperty {
                 DateRange = new DateRangeProperty {
                     Unit = "unit",
                     Value = 123
                 },
                 End = "end",
                 Start = "start"
             };

Properties

DateRange

A date range for the date filter.

public object? DateRange { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-datefilter.html#cfn-securityhub-insight-datefilter-daterange

Type union: either IResolvable or CfnInsightPropsMixin.IDateRangeProperty

End

A timestamp that provides the end date for the date filter.

public string? End { get; set; }
Property Value

string

Remarks

For more information about the validation and formatting of timestamp fields in AWS Security Hub CSPM , see Timestamps .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-datefilter.html#cfn-securityhub-insight-datefilter-end

Start

A timestamp that provides the start date for the date filter.

public string? Start { get; set; }
Property Value

string

Remarks

For more information about the validation and formatting of timestamp fields in AWS Security Hub CSPM , see Timestamps .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-datefilter.html#cfn-securityhub-insight-datefilter-start

Implements

CfnInsightPropsMixin.IDateFilterProperty
Back to top Generated by DocFX