1. Packages
  2. AWS Classic
  3. API Docs
  4. securityhub
  5. Insight

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

aws.securityhub.Insight

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

    Provides a Security Hub custom insight resource. See the Managing custom insights section of the AWS User Guide for more information.

    Example Usage

    Filter by AWS account ID

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.securityhub.Account("example", {});
    const exampleInsight = new aws.securityhub.Insight("example", {
        filters: {
            awsAccountIds: [
                {
                    comparison: "EQUALS",
                    value: "1234567890",
                },
                {
                    comparison: "EQUALS",
                    value: "09876543210",
                },
            ],
        },
        groupByAttribute: "AwsAccountId",
        name: "example-insight",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.securityhub.Account("example")
    example_insight = aws.securityhub.Insight("example",
        filters=aws.securityhub.InsightFiltersArgs(
            aws_account_ids=[
                aws.securityhub.InsightFiltersAwsAccountIdArgs(
                    comparison="EQUALS",
                    value="1234567890",
                ),
                aws.securityhub.InsightFiltersAwsAccountIdArgs(
                    comparison="EQUALS",
                    value="09876543210",
                ),
            ],
        ),
        group_by_attribute="AwsAccountId",
        name="example-insight")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/securityhub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := securityhub.NewAccount(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		_, err = securityhub.NewInsight(ctx, "example", &securityhub.InsightArgs{
    			Filters: &securityhub.InsightFiltersArgs{
    				AwsAccountIds: securityhub.InsightFiltersAwsAccountIdArray{
    					&securityhub.InsightFiltersAwsAccountIdArgs{
    						Comparison: pulumi.String("EQUALS"),
    						Value:      pulumi.String("1234567890"),
    					},
    					&securityhub.InsightFiltersAwsAccountIdArgs{
    						Comparison: pulumi.String("EQUALS"),
    						Value:      pulumi.String("09876543210"),
    					},
    				},
    			},
    			GroupByAttribute: pulumi.String("AwsAccountId"),
    			Name:             pulumi.String("example-insight"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.SecurityHub.Account("example");
    
        var exampleInsight = new Aws.SecurityHub.Insight("example", new()
        {
            Filters = new Aws.SecurityHub.Inputs.InsightFiltersArgs
            {
                AwsAccountIds = new[]
                {
                    new Aws.SecurityHub.Inputs.InsightFiltersAwsAccountIdArgs
                    {
                        Comparison = "EQUALS",
                        Value = "1234567890",
                    },
                    new Aws.SecurityHub.Inputs.InsightFiltersAwsAccountIdArgs
                    {
                        Comparison = "EQUALS",
                        Value = "09876543210",
                    },
                },
            },
            GroupByAttribute = "AwsAccountId",
            Name = "example-insight",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.securityhub.Account;
    import com.pulumi.aws.securityhub.Insight;
    import com.pulumi.aws.securityhub.InsightArgs;
    import com.pulumi.aws.securityhub.inputs.InsightFiltersArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Account("example");
    
            var exampleInsight = new Insight("exampleInsight", InsightArgs.builder()        
                .filters(InsightFiltersArgs.builder()
                    .awsAccountIds(                
                        InsightFiltersAwsAccountIdArgs.builder()
                            .comparison("EQUALS")
                            .value("1234567890")
                            .build(),
                        InsightFiltersAwsAccountIdArgs.builder()
                            .comparison("EQUALS")
                            .value("09876543210")
                            .build())
                    .build())
                .groupByAttribute("AwsAccountId")
                .name("example-insight")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:securityhub:Account
      exampleInsight:
        type: aws:securityhub:Insight
        name: example
        properties:
          filters:
            awsAccountIds:
              - comparison: EQUALS
                value: '1234567890'
              - comparison: EQUALS
                value: '09876543210'
          groupByAttribute: AwsAccountId
          name: example-insight
    

    Filter by date range

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.securityhub.Account("example", {});
    const exampleInsight = new aws.securityhub.Insight("example", {
        filters: {
            createdAts: [{
                dateRange: {
                    unit: "DAYS",
                    value: 5,
                },
            }],
        },
        groupByAttribute: "CreatedAt",
        name: "example-insight",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.securityhub.Account("example")
    example_insight = aws.securityhub.Insight("example",
        filters=aws.securityhub.InsightFiltersArgs(
            created_ats=[aws.securityhub.InsightFiltersCreatedAtArgs(
                date_range=aws.securityhub.InsightFiltersCreatedAtDateRangeArgs(
                    unit="DAYS",
                    value=5,
                ),
            )],
        ),
        group_by_attribute="CreatedAt",
        name="example-insight")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/securityhub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := securityhub.NewAccount(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		_, err = securityhub.NewInsight(ctx, "example", &securityhub.InsightArgs{
    			Filters: &securityhub.InsightFiltersArgs{
    				CreatedAts: securityhub.InsightFiltersCreatedAtArray{
    					&securityhub.InsightFiltersCreatedAtArgs{
    						DateRange: &securityhub.InsightFiltersCreatedAtDateRangeArgs{
    							Unit:  pulumi.String("DAYS"),
    							Value: pulumi.Int(5),
    						},
    					},
    				},
    			},
    			GroupByAttribute: pulumi.String("CreatedAt"),
    			Name:             pulumi.String("example-insight"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.SecurityHub.Account("example");
    
        var exampleInsight = new Aws.SecurityHub.Insight("example", new()
        {
            Filters = new Aws.SecurityHub.Inputs.InsightFiltersArgs
            {
                CreatedAts = new[]
                {
                    new Aws.SecurityHub.Inputs.InsightFiltersCreatedAtArgs
                    {
                        DateRange = new Aws.SecurityHub.Inputs.InsightFiltersCreatedAtDateRangeArgs
                        {
                            Unit = "DAYS",
                            Value = 5,
                        },
                    },
                },
            },
            GroupByAttribute = "CreatedAt",
            Name = "example-insight",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.securityhub.Account;
    import com.pulumi.aws.securityhub.Insight;
    import com.pulumi.aws.securityhub.InsightArgs;
    import com.pulumi.aws.securityhub.inputs.InsightFiltersArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Account("example");
    
            var exampleInsight = new Insight("exampleInsight", InsightArgs.builder()        
                .filters(InsightFiltersArgs.builder()
                    .createdAts(InsightFiltersCreatedAtArgs.builder()
                        .dateRange(InsightFiltersCreatedAtDateRangeArgs.builder()
                            .unit("DAYS")
                            .value(5)
                            .build())
                        .build())
                    .build())
                .groupByAttribute("CreatedAt")
                .name("example-insight")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:securityhub:Account
      exampleInsight:
        type: aws:securityhub:Insight
        name: example
        properties:
          filters:
            createdAts:
              - dateRange:
                  unit: DAYS
                  value: 5
          groupByAttribute: CreatedAt
          name: example-insight
    

    Filter by destination IPv4 address

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.securityhub.Account("example", {});
    const exampleInsight = new aws.securityhub.Insight("example", {
        filters: {
            networkDestinationIpv4s: [{
                cidr: "10.0.0.0/16",
            }],
        },
        groupByAttribute: "NetworkDestinationIpV4",
        name: "example-insight",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.securityhub.Account("example")
    example_insight = aws.securityhub.Insight("example",
        filters=aws.securityhub.InsightFiltersArgs(
            network_destination_ipv4s=[aws.securityhub.InsightFiltersNetworkDestinationIpv4Args(
                cidr="10.0.0.0/16",
            )],
        ),
        group_by_attribute="NetworkDestinationIpV4",
        name="example-insight")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/securityhub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := securityhub.NewAccount(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		_, err = securityhub.NewInsight(ctx, "example", &securityhub.InsightArgs{
    			Filters: &securityhub.InsightFiltersArgs{
    				NetworkDestinationIpv4s: securityhub.InsightFiltersNetworkDestinationIpv4Array{
    					&securityhub.InsightFiltersNetworkDestinationIpv4Args{
    						Cidr: pulumi.String("10.0.0.0/16"),
    					},
    				},
    			},
    			GroupByAttribute: pulumi.String("NetworkDestinationIpV4"),
    			Name:             pulumi.String("example-insight"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.SecurityHub.Account("example");
    
        var exampleInsight = new Aws.SecurityHub.Insight("example", new()
        {
            Filters = new Aws.SecurityHub.Inputs.InsightFiltersArgs
            {
                NetworkDestinationIpv4s = new[]
                {
                    new Aws.SecurityHub.Inputs.InsightFiltersNetworkDestinationIpv4Args
                    {
                        Cidr = "10.0.0.0/16",
                    },
                },
            },
            GroupByAttribute = "NetworkDestinationIpV4",
            Name = "example-insight",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.securityhub.Account;
    import com.pulumi.aws.securityhub.Insight;
    import com.pulumi.aws.securityhub.InsightArgs;
    import com.pulumi.aws.securityhub.inputs.InsightFiltersArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Account("example");
    
            var exampleInsight = new Insight("exampleInsight", InsightArgs.builder()        
                .filters(InsightFiltersArgs.builder()
                    .networkDestinationIpv4s(InsightFiltersNetworkDestinationIpv4Args.builder()
                        .cidr("10.0.0.0/16")
                        .build())
                    .build())
                .groupByAttribute("NetworkDestinationIpV4")
                .name("example-insight")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:securityhub:Account
      exampleInsight:
        type: aws:securityhub:Insight
        name: example
        properties:
          filters:
            networkDestinationIpv4s:
              - cidr: 10.0.0.0/16
          groupByAttribute: NetworkDestinationIpV4
          name: example-insight
    

    Filter by finding’s confidence

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.securityhub.Account("example", {});
    const exampleInsight = new aws.securityhub.Insight("example", {
        filters: {
            confidences: [{
                gte: "80",
            }],
        },
        groupByAttribute: "Confidence",
        name: "example-insight",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.securityhub.Account("example")
    example_insight = aws.securityhub.Insight("example",
        filters=aws.securityhub.InsightFiltersArgs(
            confidences=[aws.securityhub.InsightFiltersConfidenceArgs(
                gte="80",
            )],
        ),
        group_by_attribute="Confidence",
        name="example-insight")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/securityhub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := securityhub.NewAccount(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		_, err = securityhub.NewInsight(ctx, "example", &securityhub.InsightArgs{
    			Filters: &securityhub.InsightFiltersArgs{
    				Confidences: securityhub.InsightFiltersConfidenceArray{
    					&securityhub.InsightFiltersConfidenceArgs{
    						Gte: pulumi.String("80"),
    					},
    				},
    			},
    			GroupByAttribute: pulumi.String("Confidence"),
    			Name:             pulumi.String("example-insight"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.SecurityHub.Account("example");
    
        var exampleInsight = new Aws.SecurityHub.Insight("example", new()
        {
            Filters = new Aws.SecurityHub.Inputs.InsightFiltersArgs
            {
                Confidences = new[]
                {
                    new Aws.SecurityHub.Inputs.InsightFiltersConfidenceArgs
                    {
                        Gte = "80",
                    },
                },
            },
            GroupByAttribute = "Confidence",
            Name = "example-insight",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.securityhub.Account;
    import com.pulumi.aws.securityhub.Insight;
    import com.pulumi.aws.securityhub.InsightArgs;
    import com.pulumi.aws.securityhub.inputs.InsightFiltersArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Account("example");
    
            var exampleInsight = new Insight("exampleInsight", InsightArgs.builder()        
                .filters(InsightFiltersArgs.builder()
                    .confidences(InsightFiltersConfidenceArgs.builder()
                        .gte("80")
                        .build())
                    .build())
                .groupByAttribute("Confidence")
                .name("example-insight")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:securityhub:Account
      exampleInsight:
        type: aws:securityhub:Insight
        name: example
        properties:
          filters:
            confidences:
              - gte: '80'
          groupByAttribute: Confidence
          name: example-insight
    

    Filter by resource tags

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.securityhub.Account("example", {});
    const exampleInsight = new aws.securityhub.Insight("example", {
        filters: {
            resourceTags: [{
                comparison: "EQUALS",
                key: "Environment",
                value: "Production",
            }],
        },
        groupByAttribute: "ResourceTags",
        name: "example-insight",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.securityhub.Account("example")
    example_insight = aws.securityhub.Insight("example",
        filters=aws.securityhub.InsightFiltersArgs(
            resource_tags=[aws.securityhub.InsightFiltersResourceTagArgs(
                comparison="EQUALS",
                key="Environment",
                value="Production",
            )],
        ),
        group_by_attribute="ResourceTags",
        name="example-insight")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/securityhub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := securityhub.NewAccount(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		_, err = securityhub.NewInsight(ctx, "example", &securityhub.InsightArgs{
    			Filters: &securityhub.InsightFiltersArgs{
    				ResourceTags: securityhub.InsightFiltersResourceTagArray{
    					&securityhub.InsightFiltersResourceTagArgs{
    						Comparison: pulumi.String("EQUALS"),
    						Key:        pulumi.String("Environment"),
    						Value:      pulumi.String("Production"),
    					},
    				},
    			},
    			GroupByAttribute: pulumi.String("ResourceTags"),
    			Name:             pulumi.String("example-insight"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.SecurityHub.Account("example");
    
        var exampleInsight = new Aws.SecurityHub.Insight("example", new()
        {
            Filters = new Aws.SecurityHub.Inputs.InsightFiltersArgs
            {
                ResourceTags = new[]
                {
                    new Aws.SecurityHub.Inputs.InsightFiltersResourceTagArgs
                    {
                        Comparison = "EQUALS",
                        Key = "Environment",
                        Value = "Production",
                    },
                },
            },
            GroupByAttribute = "ResourceTags",
            Name = "example-insight",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.securityhub.Account;
    import com.pulumi.aws.securityhub.Insight;
    import com.pulumi.aws.securityhub.InsightArgs;
    import com.pulumi.aws.securityhub.inputs.InsightFiltersArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Account("example");
    
            var exampleInsight = new Insight("exampleInsight", InsightArgs.builder()        
                .filters(InsightFiltersArgs.builder()
                    .resourceTags(InsightFiltersResourceTagArgs.builder()
                        .comparison("EQUALS")
                        .key("Environment")
                        .value("Production")
                        .build())
                    .build())
                .groupByAttribute("ResourceTags")
                .name("example-insight")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:securityhub:Account
      exampleInsight:
        type: aws:securityhub:Insight
        name: example
        properties:
          filters:
            resourceTags:
              - comparison: EQUALS
                key: Environment
                value: Production
          groupByAttribute: ResourceTags
          name: example-insight
    

    Create Insight Resource

    new Insight(name: string, args: InsightArgs, opts?: CustomResourceOptions);
    @overload
    def Insight(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                filters: Optional[InsightFiltersArgs] = None,
                group_by_attribute: Optional[str] = None,
                name: Optional[str] = None)
    @overload
    def Insight(resource_name: str,
                args: InsightArgs,
                opts: Optional[ResourceOptions] = None)
    func NewInsight(ctx *Context, name string, args InsightArgs, opts ...ResourceOption) (*Insight, error)
    public Insight(string name, InsightArgs args, CustomResourceOptions? opts = null)
    public Insight(String name, InsightArgs args)
    public Insight(String name, InsightArgs args, CustomResourceOptions options)
    
    type: aws:securityhub:Insight
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args InsightArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args InsightArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args InsightArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InsightArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InsightArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Insight Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Insight resource accepts the following input properties:

    Filters InsightFilters
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    GroupByAttribute string
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    Name string
    The name of the custom insight.
    Filters InsightFiltersArgs
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    GroupByAttribute string
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    Name string
    The name of the custom insight.
    filters InsightFilters
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    groupByAttribute String
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    name String
    The name of the custom insight.
    filters InsightFilters
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    groupByAttribute string
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    name string
    The name of the custom insight.
    filters InsightFiltersArgs
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    group_by_attribute str
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    name str
    The name of the custom insight.
    filters Property Map
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    groupByAttribute String
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    name String
    The name of the custom insight.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Insight resource produces the following output properties:

    Arn string
    ARN of the insight.
    Id string
    The provider-assigned unique ID for this managed resource.
    Arn string
    ARN of the insight.
    Id string
    The provider-assigned unique ID for this managed resource.
    arn String
    ARN of the insight.
    id String
    The provider-assigned unique ID for this managed resource.
    arn string
    ARN of the insight.
    id string
    The provider-assigned unique ID for this managed resource.
    arn str
    ARN of the insight.
    id str
    The provider-assigned unique ID for this managed resource.
    arn String
    ARN of the insight.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Insight Resource

    Get an existing Insight resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: InsightState, opts?: CustomResourceOptions): Insight
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            filters: Optional[InsightFiltersArgs] = None,
            group_by_attribute: Optional[str] = None,
            name: Optional[str] = None) -> Insight
    func GetInsight(ctx *Context, name string, id IDInput, state *InsightState, opts ...ResourceOption) (*Insight, error)
    public static Insight Get(string name, Input<string> id, InsightState? state, CustomResourceOptions? opts = null)
    public static Insight get(String name, Output<String> id, InsightState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    ARN of the insight.
    Filters InsightFilters
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    GroupByAttribute string
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    Name string
    The name of the custom insight.
    Arn string
    ARN of the insight.
    Filters InsightFiltersArgs
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    GroupByAttribute string
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    Name string
    The name of the custom insight.
    arn String
    ARN of the insight.
    filters InsightFilters
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    groupByAttribute String
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    name String
    The name of the custom insight.
    arn string
    ARN of the insight.
    filters InsightFilters
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    groupByAttribute string
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    name string
    The name of the custom insight.
    arn str
    ARN of the insight.
    filters InsightFiltersArgs
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    group_by_attribute str
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    name str
    The name of the custom insight.
    arn String
    ARN of the insight.
    filters Property Map
    A configuration block including one or more (up to 10 distinct) attributes used to filter the findings included in the insight. The insight only includes findings that match criteria defined in the filters. See filters below for more details.
    groupByAttribute String
    The attribute used to group the findings for the insight e.g., if an insight is grouped by ResourceId, then the insight produces a list of resource identifiers.
    name String
    The name of the custom insight.

    Supporting Types

    InsightFilters, InsightFiltersArgs

    AwsAccountIds List<InsightFiltersAwsAccountId>
    AWS account ID that a finding is generated in. See String_Filter below for more details.
    CompanyNames List<InsightFiltersCompanyName>
    The name of the findings provider (company) that owns the solution (product) that generates findings. See String_Filter below for more details.
    ComplianceStatuses List<InsightFiltersComplianceStatus>
    Exclusive to findings that are generated as the result of a check run against a specific rule in a supported standard, such as CIS AWS Foundations. Contains security standard-related finding details. See String Filter below for more details.
    Confidences List<InsightFiltersConfidence>
    A finding's confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    CreatedAts List<InsightFiltersCreatedAt>
    An ISO8601-formatted timestamp that indicates when the security-findings provider captured the potential security issue that a finding captured. See Date Filter below for more details.
    Criticalities List<InsightFiltersCriticality>
    The level of importance assigned to the resources associated with the finding. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    Descriptions List<InsightFiltersDescription>
    A finding's description. See String Filter below for more details.
    FindingProviderFieldsConfidences List<InsightFiltersFindingProviderFieldsConfidence>
    The finding provider value for the finding confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    FindingProviderFieldsCriticalities List<InsightFiltersFindingProviderFieldsCriticality>
    The finding provider value for the level of importance assigned to the resources associated with the findings. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    FindingProviderFieldsRelatedFindingsIds List<InsightFiltersFindingProviderFieldsRelatedFindingsId>
    The finding identifier of a related finding that is identified by the finding provider. See String Filter below for more details.
    FindingProviderFieldsRelatedFindingsProductArns List<InsightFiltersFindingProviderFieldsRelatedFindingsProductArn>
    The ARN of the solution that generated a related finding that is identified by the finding provider. See String Filter below for more details.
    FindingProviderFieldsSeverityLabels List<InsightFiltersFindingProviderFieldsSeverityLabel>
    The finding provider value for the severity label. See String Filter below for more details.
    FindingProviderFieldsSeverityOriginals List<InsightFiltersFindingProviderFieldsSeverityOriginal>
    The finding provider's original value for the severity. See String Filter below for more details.
    FindingProviderFieldsTypes List<InsightFiltersFindingProviderFieldsType>
    One or more finding types that the finding provider assigned to the finding. Uses the format of namespace/category/classifier that classify a finding. Valid namespace values include: Software and Configuration Checks, TTPs, Effects, Unusual Behaviors, and Sensitive Data Identifications. See String Filter below for more details.
    FirstObservedAts List<InsightFiltersFirstObservedAt>
    An ISO8601-formatted timestamp that indicates when the security-findings provider first observed the potential security issue that a finding captured. See Date Filter below for more details.
    GeneratorIds List<InsightFiltersGeneratorId>
    The identifier for the solution-specific component (a discrete unit of logic) that generated a finding. See String Filter below for more details.
    Ids List<InsightFiltersId>
    The security findings provider-specific identifier for a finding. See String Filter below for more details.
    Keywords List<InsightFiltersKeyword>
    A keyword for a finding. See Keyword Filter below for more details.
    LastObservedAts List<InsightFiltersLastObservedAt>
    An ISO8601-formatted timestamp that indicates when the security-findings provider most recently observed the potential security issue that a finding captured. See Date Filter below for more details.
    MalwareNames List<InsightFiltersMalwareName>
    The name of the malware that was observed. See String Filter below for more details.
    MalwarePaths List<InsightFiltersMalwarePath>
    The filesystem path of the malware that was observed. See String Filter below for more details.
    MalwareStates List<InsightFiltersMalwareState>
    The state of the malware that was observed. See String Filter below for more details.
    MalwareTypes List<InsightFiltersMalwareType>
    The type of the malware that was observed. See String Filter below for more details.
    NetworkDestinationDomains List<InsightFiltersNetworkDestinationDomain>
    The destination domain of network-related information about a finding. See String Filter below for more details.
    NetworkDestinationIpv4s List<InsightFiltersNetworkDestinationIpv4>
    The destination IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    NetworkDestinationIpv6s List<InsightFiltersNetworkDestinationIpv6>
    The destination IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    NetworkDestinationPorts List<InsightFiltersNetworkDestinationPort>
    The destination port of network-related information about a finding. See Number Filter below for more details.
    NetworkDirections List<InsightFiltersNetworkDirection>
    Indicates the direction of network traffic associated with a finding. See String Filter below for more details.
    NetworkProtocols List<InsightFiltersNetworkProtocol>
    The protocol of network-related information about a finding. See String Filter below for more details.
    NetworkSourceDomains List<InsightFiltersNetworkSourceDomain>
    The source domain of network-related information about a finding. See String Filter below for more details.
    NetworkSourceIpv4s List<InsightFiltersNetworkSourceIpv4>
    The source IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    NetworkSourceIpv6s List<InsightFiltersNetworkSourceIpv6>
    The source IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    NetworkSourceMacs List<InsightFiltersNetworkSourceMac>
    The source media access control (MAC) address of network-related information about a finding. See String Filter below for more details.
    NetworkSourcePorts List<InsightFiltersNetworkSourcePort>
    The source port of network-related information about a finding. See Number Filter below for more details.
    NoteTexts List<InsightFiltersNoteText>
    The text of a note. See String Filter below for more details.
    NoteUpdatedAts List<InsightFiltersNoteUpdatedAt>
    The timestamp of when the note was updated. See Date Filter below for more details.
    NoteUpdatedBies List<InsightFiltersNoteUpdatedBy>
    The principal that created a note. See String Filter below for more details.
    ProcessLaunchedAts List<InsightFiltersProcessLaunchedAt>
    The date/time that the process was launched. See Date Filter below for more details.
    ProcessNames List<InsightFiltersProcessName>
    The name of the process. See String Filter below for more details.
    ProcessParentPids List<InsightFiltersProcessParentPid>
    The parent process ID. See Number Filter below for more details.
    ProcessPaths List<InsightFiltersProcessPath>
    The path to the process executable. See String Filter below for more details.
    ProcessPids List<InsightFiltersProcessPid>
    The process ID. See Number Filter below for more details.
    ProcessTerminatedAts List<InsightFiltersProcessTerminatedAt>
    The date/time that the process was terminated. See Date Filter below for more details.
    ProductArns List<InsightFiltersProductArn>
    The ARN generated by Security Hub that uniquely identifies a third-party company (security findings provider) after this provider's product (solution that generates findings) is registered with Security Hub. See String Filter below for more details.
    ProductFields List<InsightFiltersProductField>
    A data type where security-findings providers can include additional solution-specific details that aren't part of the defined AwsSecurityFinding format. See Map Filter below for more details.
    ProductNames List<InsightFiltersProductName>
    The name of the solution (product) that generates findings. See String Filter below for more details.
    RecommendationTexts List<InsightFiltersRecommendationText>
    The recommendation of what to do about the issue described in a finding. See String Filter below for more details.
    RecordStates List<InsightFiltersRecordState>
    The updated record state for the finding. See String Filter below for more details.
    RelatedFindingsIds List<InsightFiltersRelatedFindingsId>
    The solution-generated identifier for a related finding. See String Filter below for more details.
    RelatedFindingsProductArns List<InsightFiltersRelatedFindingsProductArn>
    The ARN of the solution that generated a related finding. See String Filter below for more details.
    ResourceAwsEc2InstanceIamInstanceProfileArns List<InsightFiltersResourceAwsEc2InstanceIamInstanceProfileArn>
    The IAM profile ARN of the instance. See String Filter below for more details.
    ResourceAwsEc2InstanceImageIds List<InsightFiltersResourceAwsEc2InstanceImageId>
    The Amazon Machine Image (AMI) ID of the instance. See String Filter below for more details.
    ResourceAwsEc2InstanceIpv4Addresses List<InsightFiltersResourceAwsEc2InstanceIpv4Address>
    The IPv4 addresses associated with the instance. See Ip Filter below for more details.
    ResourceAwsEc2InstanceIpv6Addresses List<InsightFiltersResourceAwsEc2InstanceIpv6Address>
    The IPv6 addresses associated with the instance. See Ip Filter below for more details.
    ResourceAwsEc2InstanceKeyNames List<InsightFiltersResourceAwsEc2InstanceKeyName>
    The key name associated with the instance. See String Filter below for more details.
    ResourceAwsEc2InstanceLaunchedAts List<InsightFiltersResourceAwsEc2InstanceLaunchedAt>
    The date and time the instance was launched. See Date Filter below for more details.
    ResourceAwsEc2InstanceSubnetIds List<InsightFiltersResourceAwsEc2InstanceSubnetId>
    The identifier of the subnet that the instance was launched in. See String Filter below for more details.
    ResourceAwsEc2InstanceTypes List<InsightFiltersResourceAwsEc2InstanceType>
    The instance type of the instance. See String Filter below for more details.
    ResourceAwsEc2InstanceVpcIds List<InsightFiltersResourceAwsEc2InstanceVpcId>
    The identifier of the VPC that the instance was launched in. See String Filter below for more details.
    ResourceAwsIamAccessKeyCreatedAts List<InsightFiltersResourceAwsIamAccessKeyCreatedAt>
    The creation date/time of the IAM access key related to a finding. See Date Filter below for more details.
    ResourceAwsIamAccessKeyStatuses List<InsightFiltersResourceAwsIamAccessKeyStatus>
    The status of the IAM access key related to a finding. See String Filter below for more details.
    ResourceAwsIamAccessKeyUserNames List<InsightFiltersResourceAwsIamAccessKeyUserName>
    The user associated with the IAM access key related to a finding. See String Filter below for more details.
    ResourceAwsS3BucketOwnerIds List<InsightFiltersResourceAwsS3BucketOwnerId>
    The canonical user ID of the owner of the S3 bucket. See String Filter below for more details.
    ResourceAwsS3BucketOwnerNames List<InsightFiltersResourceAwsS3BucketOwnerName>
    The display name of the owner of the S3 bucket. See String Filter below for more details.
    ResourceContainerImageIds List<InsightFiltersResourceContainerImageId>
    The identifier of the image related to a finding. See String Filter below for more details.
    ResourceContainerImageNames List<InsightFiltersResourceContainerImageName>
    The name of the image related to a finding. See String Filter below for more details.
    ResourceContainerLaunchedAts List<InsightFiltersResourceContainerLaunchedAt>
    The date/time that the container was started. See Date Filter below for more details.
    ResourceContainerNames List<InsightFiltersResourceContainerName>
    The name of the container related to a finding. See String Filter below for more details.
    ResourceDetailsOthers List<InsightFiltersResourceDetailsOther>
    The details of a resource that doesn't have a specific subfield for the resource type defined. See Map Filter below for more details.
    ResourceIds List<InsightFiltersResourceId>
    The canonical identifier for the given resource type. See String Filter below for more details.
    ResourcePartitions List<InsightFiltersResourcePartition>
    The canonical AWS partition name that the Region is assigned to. See String Filter below for more details.
    ResourceRegions List<InsightFiltersResourceRegion>
    The canonical AWS external Region name where this resource is located. See String Filter below for more details.
    ResourceTags List<InsightFiltersResourceTag>
    A list of AWS tags associated with a resource at the time the finding was processed. See Map Filter below for more details.
    ResourceTypes List<InsightFiltersResourceType>
    Specifies the type of the resource that details are provided for. See String Filter below for more details.
    SeverityLabels List<InsightFiltersSeverityLabel>
    The label of a finding's severity. See String Filter below for more details.
    SourceUrls List<InsightFiltersSourceUrl>
    A URL that links to a page about the current finding in the security-findings provider's solution. See String Filter below for more details.
    ThreatIntelIndicatorCategories List<InsightFiltersThreatIntelIndicatorCategory>
    The category of a threat intelligence indicator. See String Filter below for more details.
    ThreatIntelIndicatorLastObservedAts List<InsightFiltersThreatIntelIndicatorLastObservedAt>
    The date/time of the last observation of a threat intelligence indicator. See Date Filter below for more details.
    ThreatIntelIndicatorSourceUrls List<InsightFiltersThreatIntelIndicatorSourceUrl>
    The URL for more details from the source of the threat intelligence. See String Filter below for more details.
    ThreatIntelIndicatorSources List<InsightFiltersThreatIntelIndicatorSource>
    The source of the threat intelligence. See String Filter below for more details.
    ThreatIntelIndicatorTypes List<InsightFiltersThreatIntelIndicatorType>
    The type of a threat intelligence indicator. See String Filter below for more details.
    ThreatIntelIndicatorValues List<InsightFiltersThreatIntelIndicatorValue>
    The value of a threat intelligence indicator. See String Filter below for more details.
    Titles List<InsightFiltersTitle>
    A finding's title. See String Filter below for more details.
    Types List<InsightFiltersType>
    A finding type in the format of namespace/category/classifier that classifies a finding. See String Filter below for more details.
    UpdatedAts List<InsightFiltersUpdatedAt>
    An ISO8601-formatted timestamp that indicates when the security-findings provider last updated the finding record. See Date Filter below for more details.
    UserDefinedValues List<InsightFiltersUserDefinedValue>
    A list of name/value string pairs associated with the finding. These are custom, user-defined fields added to a finding. See Map Filter below for more details.
    VerificationStates List<InsightFiltersVerificationState>
    The veracity of a finding. See String Filter below for more details.
    WorkflowStatuses List<InsightFiltersWorkflowStatus>
    The status of the investigation into a finding. See Workflow Status Filter below for more details.
    AwsAccountIds []InsightFiltersAwsAccountId
    AWS account ID that a finding is generated in. See String_Filter below for more details.
    CompanyNames []InsightFiltersCompanyName
    The name of the findings provider (company) that owns the solution (product) that generates findings. See String_Filter below for more details.
    ComplianceStatuses []InsightFiltersComplianceStatus
    Exclusive to findings that are generated as the result of a check run against a specific rule in a supported standard, such as CIS AWS Foundations. Contains security standard-related finding details. See String Filter below for more details.
    Confidences []InsightFiltersConfidence
    A finding's confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    CreatedAts []InsightFiltersCreatedAt
    An ISO8601-formatted timestamp that indicates when the security-findings provider captured the potential security issue that a finding captured. See Date Filter below for more details.
    Criticalities []InsightFiltersCriticality
    The level of importance assigned to the resources associated with the finding. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    Descriptions []InsightFiltersDescription
    A finding's description. See String Filter below for more details.
    FindingProviderFieldsConfidences []InsightFiltersFindingProviderFieldsConfidence
    The finding provider value for the finding confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    FindingProviderFieldsCriticalities []InsightFiltersFindingProviderFieldsCriticality
    The finding provider value for the level of importance assigned to the resources associated with the findings. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    FindingProviderFieldsRelatedFindingsIds []InsightFiltersFindingProviderFieldsRelatedFindingsId
    The finding identifier of a related finding that is identified by the finding provider. See String Filter below for more details.
    FindingProviderFieldsRelatedFindingsProductArns []InsightFiltersFindingProviderFieldsRelatedFindingsProductArn
    The ARN of the solution that generated a related finding that is identified by the finding provider. See String Filter below for more details.
    FindingProviderFieldsSeverityLabels []InsightFiltersFindingProviderFieldsSeverityLabel
    The finding provider value for the severity label. See String Filter below for more details.
    FindingProviderFieldsSeverityOriginals []InsightFiltersFindingProviderFieldsSeverityOriginal
    The finding provider's original value for the severity. See String Filter below for more details.
    FindingProviderFieldsTypes []InsightFiltersFindingProviderFieldsType
    One or more finding types that the finding provider assigned to the finding. Uses the format of namespace/category/classifier that classify a finding. Valid namespace values include: Software and Configuration Checks, TTPs, Effects, Unusual Behaviors, and Sensitive Data Identifications. See String Filter below for more details.
    FirstObservedAts []InsightFiltersFirstObservedAt
    An ISO8601-formatted timestamp that indicates when the security-findings provider first observed the potential security issue that a finding captured. See Date Filter below for more details.
    GeneratorIds []InsightFiltersGeneratorId
    The identifier for the solution-specific component (a discrete unit of logic) that generated a finding. See String Filter below for more details.
    Ids []InsightFiltersId
    The security findings provider-specific identifier for a finding. See String Filter below for more details.
    Keywords []InsightFiltersKeyword
    A keyword for a finding. See Keyword Filter below for more details.
    LastObservedAts []InsightFiltersLastObservedAt
    An ISO8601-formatted timestamp that indicates when the security-findings provider most recently observed the potential security issue that a finding captured. See Date Filter below for more details.
    MalwareNames []InsightFiltersMalwareName
    The name of the malware that was observed. See String Filter below for more details.
    MalwarePaths []InsightFiltersMalwarePath
    The filesystem path of the malware that was observed. See String Filter below for more details.
    MalwareStates []InsightFiltersMalwareState
    The state of the malware that was observed. See String Filter below for more details.
    MalwareTypes []InsightFiltersMalwareType
    The type of the malware that was observed. See String Filter below for more details.
    NetworkDestinationDomains []InsightFiltersNetworkDestinationDomain
    The destination domain of network-related information about a finding. See String Filter below for more details.
    NetworkDestinationIpv4s []InsightFiltersNetworkDestinationIpv4
    The destination IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    NetworkDestinationIpv6s []InsightFiltersNetworkDestinationIpv6
    The destination IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    NetworkDestinationPorts []InsightFiltersNetworkDestinationPort
    The destination port of network-related information about a finding. See Number Filter below for more details.
    NetworkDirections []InsightFiltersNetworkDirection
    Indicates the direction of network traffic associated with a finding. See String Filter below for more details.
    NetworkProtocols []InsightFiltersNetworkProtocol
    The protocol of network-related information about a finding. See String Filter below for more details.
    NetworkSourceDomains []InsightFiltersNetworkSourceDomain
    The source domain of network-related information about a finding. See String Filter below for more details.
    NetworkSourceIpv4s []InsightFiltersNetworkSourceIpv4
    The source IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    NetworkSourceIpv6s []InsightFiltersNetworkSourceIpv6
    The source IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    NetworkSourceMacs []InsightFiltersNetworkSourceMac
    The source media access control (MAC) address of network-related information about a finding. See String Filter below for more details.
    NetworkSourcePorts []InsightFiltersNetworkSourcePort
    The source port of network-related information about a finding. See Number Filter below for more details.
    NoteTexts []InsightFiltersNoteText
    The text of a note. See String Filter below for more details.
    NoteUpdatedAts []InsightFiltersNoteUpdatedAt
    The timestamp of when the note was updated. See Date Filter below for more details.
    NoteUpdatedBies []InsightFiltersNoteUpdatedBy
    The principal that created a note. See String Filter below for more details.
    ProcessLaunchedAts []InsightFiltersProcessLaunchedAt
    The date/time that the process was launched. See Date Filter below for more details.
    ProcessNames []InsightFiltersProcessName
    The name of the process. See String Filter below for more details.
    ProcessParentPids []InsightFiltersProcessParentPid
    The parent process ID. See Number Filter below for more details.
    ProcessPaths []InsightFiltersProcessPath
    The path to the process executable. See String Filter below for more details.
    ProcessPids []InsightFiltersProcessPid
    The process ID. See Number Filter below for more details.
    ProcessTerminatedAts []InsightFiltersProcessTerminatedAt
    The date/time that the process was terminated. See Date Filter below for more details.
    ProductArns []InsightFiltersProductArn
    The ARN generated by Security Hub that uniquely identifies a third-party company (security findings provider) after this provider's product (solution that generates findings) is registered with Security Hub. See String Filter below for more details.
    ProductFields []InsightFiltersProductField
    A data type where security-findings providers can include additional solution-specific details that aren't part of the defined AwsSecurityFinding format. See Map Filter below for more details.
    ProductNames []InsightFiltersProductName
    The name of the solution (product) that generates findings. See String Filter below for more details.
    RecommendationTexts []InsightFiltersRecommendationText
    The recommendation of what to do about the issue described in a finding. See String Filter below for more details.
    RecordStates []InsightFiltersRecordState
    The updated record state for the finding. See String Filter below for more details.
    RelatedFindingsIds []InsightFiltersRelatedFindingsId
    The solution-generated identifier for a related finding. See String Filter below for more details.
    RelatedFindingsProductArns []InsightFiltersRelatedFindingsProductArn
    The ARN of the solution that generated a related finding. See String Filter below for more details.
    ResourceAwsEc2InstanceIamInstanceProfileArns []InsightFiltersResourceAwsEc2InstanceIamInstanceProfileArn
    The IAM profile ARN of the instance. See String Filter below for more details.
    ResourceAwsEc2InstanceImageIds []InsightFiltersResourceAwsEc2InstanceImageId
    The Amazon Machine Image (AMI) ID of the instance. See String Filter below for more details.
    ResourceAwsEc2InstanceIpv4Addresses []InsightFiltersResourceAwsEc2InstanceIpv4Address
    The IPv4 addresses associated with the instance. See Ip Filter below for more details.
    ResourceAwsEc2InstanceIpv6Addresses []InsightFiltersResourceAwsEc2InstanceIpv6Address
    The IPv6 addresses associated with the instance. See Ip Filter below for more details.
    ResourceAwsEc2InstanceKeyNames []InsightFiltersResourceAwsEc2InstanceKeyName
    The key name associated with the instance. See String Filter below for more details.
    ResourceAwsEc2InstanceLaunchedAts []InsightFiltersResourceAwsEc2InstanceLaunchedAt
    The date and time the instance was launched. See Date Filter below for more details.
    ResourceAwsEc2InstanceSubnetIds []InsightFiltersResourceAwsEc2InstanceSubnetId
    The identifier of the subnet that the instance was launched in. See String Filter below for more details.
    ResourceAwsEc2InstanceTypes []InsightFiltersResourceAwsEc2InstanceType
    The instance type of the instance. See String Filter below for more details.
    ResourceAwsEc2InstanceVpcIds []InsightFiltersResourceAwsEc2InstanceVpcId
    The identifier of the VPC that the instance was launched in. See String Filter below for more details.
    ResourceAwsIamAccessKeyCreatedAts []InsightFiltersResourceAwsIamAccessKeyCreatedAt
    The creation date/time of the IAM access key related to a finding. See Date Filter below for more details.
    ResourceAwsIamAccessKeyStatuses []InsightFiltersResourceAwsIamAccessKeyStatus
    The status of the IAM access key related to a finding. See String Filter below for more details.
    ResourceAwsIamAccessKeyUserNames []InsightFiltersResourceAwsIamAccessKeyUserName
    The user associated with the IAM access key related to a finding. See String Filter below for more details.
    ResourceAwsS3BucketOwnerIds []InsightFiltersResourceAwsS3BucketOwnerId
    The canonical user ID of the owner of the S3 bucket. See String Filter below for more details.
    ResourceAwsS3BucketOwnerNames []InsightFiltersResourceAwsS3BucketOwnerName
    The display name of the owner of the S3 bucket. See String Filter below for more details.
    ResourceContainerImageIds []InsightFiltersResourceContainerImageId
    The identifier of the image related to a finding. See String Filter below for more details.
    ResourceContainerImageNames []InsightFiltersResourceContainerImageName
    The name of the image related to a finding. See String Filter below for more details.
    ResourceContainerLaunchedAts []InsightFiltersResourceContainerLaunchedAt
    The date/time that the container was started. See Date Filter below for more details.
    ResourceContainerNames []InsightFiltersResourceContainerName
    The name of the container related to a finding. See String Filter below for more details.
    ResourceDetailsOthers []InsightFiltersResourceDetailsOther
    The details of a resource that doesn't have a specific subfield for the resource type defined. See Map Filter below for more details.
    ResourceIds []InsightFiltersResourceId
    The canonical identifier for the given resource type. See String Filter below for more details.
    ResourcePartitions []InsightFiltersResourcePartition
    The canonical AWS partition name that the Region is assigned to. See String Filter below for more details.
    ResourceRegions []InsightFiltersResourceRegion
    The canonical AWS external Region name where this resource is located. See String Filter below for more details.
    ResourceTags []InsightFiltersResourceTag
    A list of AWS tags associated with a resource at the time the finding was processed. See Map Filter below for more details.
    ResourceTypes []InsightFiltersResourceType
    Specifies the type of the resource that details are provided for. See String Filter below for more details.
    SeverityLabels []InsightFiltersSeverityLabel
    The label of a finding's severity. See String Filter below for more details.
    SourceUrls []InsightFiltersSourceUrl
    A URL that links to a page about the current finding in the security-findings provider's solution. See String Filter below for more details.
    ThreatIntelIndicatorCategories []InsightFiltersThreatIntelIndicatorCategory
    The category of a threat intelligence indicator. See String Filter below for more details.
    ThreatIntelIndicatorLastObservedAts []InsightFiltersThreatIntelIndicatorLastObservedAt
    The date/time of the last observation of a threat intelligence indicator. See Date Filter below for more details.
    ThreatIntelIndicatorSourceUrls []InsightFiltersThreatIntelIndicatorSourceUrl
    The URL for more details from the source of the threat intelligence. See String Filter below for more details.
    ThreatIntelIndicatorSources []InsightFiltersThreatIntelIndicatorSource
    The source of the threat intelligence. See String Filter below for more details.
    ThreatIntelIndicatorTypes []InsightFiltersThreatIntelIndicatorType
    The type of a threat intelligence indicator. See String Filter below for more details.
    ThreatIntelIndicatorValues []InsightFiltersThreatIntelIndicatorValue
    The value of a threat intelligence indicator. See String Filter below for more details.
    Titles []InsightFiltersTitle
    A finding's title. See String Filter below for more details.
    Types []InsightFiltersType
    A finding type in the format of namespace/category/classifier that classifies a finding. See String Filter below for more details.
    UpdatedAts []InsightFiltersUpdatedAt
    An ISO8601-formatted timestamp that indicates when the security-findings provider last updated the finding record. See Date Filter below for more details.
    UserDefinedValues []InsightFiltersUserDefinedValue
    A list of name/value string pairs associated with the finding. These are custom, user-defined fields added to a finding. See Map Filter below for more details.
    VerificationStates []InsightFiltersVerificationState
    The veracity of a finding. See String Filter below for more details.
    WorkflowStatuses []InsightFiltersWorkflowStatus
    The status of the investigation into a finding. See Workflow Status Filter below for more details.
    awsAccountIds List<InsightFiltersAwsAccountId>
    AWS account ID that a finding is generated in. See String_Filter below for more details.
    companyNames List<InsightFiltersCompanyName>
    The name of the findings provider (company) that owns the solution (product) that generates findings. See String_Filter below for more details.
    complianceStatuses List<InsightFiltersComplianceStatus>
    Exclusive to findings that are generated as the result of a check run against a specific rule in a supported standard, such as CIS AWS Foundations. Contains security standard-related finding details. See String Filter below for more details.
    confidences List<InsightFiltersConfidence>
    A finding's confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    createdAts List<InsightFiltersCreatedAt>
    An ISO8601-formatted timestamp that indicates when the security-findings provider captured the potential security issue that a finding captured. See Date Filter below for more details.
    criticalities List<InsightFiltersCriticality>
    The level of importance assigned to the resources associated with the finding. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    descriptions List<InsightFiltersDescription>
    A finding's description. See String Filter below for more details.
    findingProviderFieldsConfidences List<InsightFiltersFindingProviderFieldsConfidence>
    The finding provider value for the finding confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    findingProviderFieldsCriticalities List<InsightFiltersFindingProviderFieldsCriticality>
    The finding provider value for the level of importance assigned to the resources associated with the findings. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    findingProviderFieldsRelatedFindingsIds List<InsightFiltersFindingProviderFieldsRelatedFindingsId>
    The finding identifier of a related finding that is identified by the finding provider. See String Filter below for more details.
    findingProviderFieldsRelatedFindingsProductArns List<InsightFiltersFindingProviderFieldsRelatedFindingsProductArn>
    The ARN of the solution that generated a related finding that is identified by the finding provider. See String Filter below for more details.
    findingProviderFieldsSeverityLabels List<InsightFiltersFindingProviderFieldsSeverityLabel>
    The finding provider value for the severity label. See String Filter below for more details.
    findingProviderFieldsSeverityOriginals List<InsightFiltersFindingProviderFieldsSeverityOriginal>
    The finding provider's original value for the severity. See String Filter below for more details.
    findingProviderFieldsTypes List<InsightFiltersFindingProviderFieldsType>
    One or more finding types that the finding provider assigned to the finding. Uses the format of namespace/category/classifier that classify a finding. Valid namespace values include: Software and Configuration Checks, TTPs, Effects, Unusual Behaviors, and Sensitive Data Identifications. See String Filter below for more details.
    firstObservedAts List<InsightFiltersFirstObservedAt>
    An ISO8601-formatted timestamp that indicates when the security-findings provider first observed the potential security issue that a finding captured. See Date Filter below for more details.
    generatorIds List<InsightFiltersGeneratorId>
    The identifier for the solution-specific component (a discrete unit of logic) that generated a finding. See String Filter below for more details.
    ids List<InsightFiltersId>
    The security findings provider-specific identifier for a finding. See String Filter below for more details.
    keywords List<InsightFiltersKeyword>
    A keyword for a finding. See Keyword Filter below for more details.
    lastObservedAts List<InsightFiltersLastObservedAt>
    An ISO8601-formatted timestamp that indicates when the security-findings provider most recently observed the potential security issue that a finding captured. See Date Filter below for more details.
    malwareNames List<InsightFiltersMalwareName>
    The name of the malware that was observed. See String Filter below for more details.
    malwarePaths List<InsightFiltersMalwarePath>
    The filesystem path of the malware that was observed. See String Filter below for more details.
    malwareStates List<InsightFiltersMalwareState>
    The state of the malware that was observed. See String Filter below for more details.
    malwareTypes List<InsightFiltersMalwareType>
    The type of the malware that was observed. See String Filter below for more details.
    networkDestinationDomains List<InsightFiltersNetworkDestinationDomain>
    The destination domain of network-related information about a finding. See String Filter below for more details.
    networkDestinationIpv4s List<InsightFiltersNetworkDestinationIpv4>
    The destination IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    networkDestinationIpv6s List<InsightFiltersNetworkDestinationIpv6>
    The destination IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    networkDestinationPorts List<InsightFiltersNetworkDestinationPort>
    The destination port of network-related information about a finding. See Number Filter below for more details.
    networkDirections List<InsightFiltersNetworkDirection>
    Indicates the direction of network traffic associated with a finding. See String Filter below for more details.
    networkProtocols List<InsightFiltersNetworkProtocol>
    The protocol of network-related information about a finding. See String Filter below for more details.
    networkSourceDomains List<InsightFiltersNetworkSourceDomain>
    The source domain of network-related information about a finding. See String Filter below for more details.
    networkSourceIpv4s List<InsightFiltersNetworkSourceIpv4>
    The source IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    networkSourceIpv6s List<InsightFiltersNetworkSourceIpv6>
    The source IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    networkSourceMacs List<InsightFiltersNetworkSourceMac>
    The source media access control (MAC) address of network-related information about a finding. See String Filter below for more details.
    networkSourcePorts List<InsightFiltersNetworkSourcePort>
    The source port of network-related information about a finding. See Number Filter below for more details.
    noteTexts List<InsightFiltersNoteText>
    The text of a note. See String Filter below for more details.
    noteUpdatedAts List<InsightFiltersNoteUpdatedAt>
    The timestamp of when the note was updated. See Date Filter below for more details.
    noteUpdatedBies List<InsightFiltersNoteUpdatedBy>
    The principal that created a note. See String Filter below for more details.
    processLaunchedAts List<InsightFiltersProcessLaunchedAt>
    The date/time that the process was launched. See Date Filter below for more details.
    processNames List<InsightFiltersProcessName>
    The name of the process. See String Filter below for more details.
    processParentPids List<InsightFiltersProcessParentPid>
    The parent process ID. See Number Filter below for more details.
    processPaths List<InsightFiltersProcessPath>
    The path to the process executable. See String Filter below for more details.
    processPids List<InsightFiltersProcessPid>
    The process ID. See Number Filter below for more details.
    processTerminatedAts List<InsightFiltersProcessTerminatedAt>
    The date/time that the process was terminated. See Date Filter below for more details.
    productArns List<InsightFiltersProductArn>
    The ARN generated by Security Hub that uniquely identifies a third-party company (security findings provider) after this provider's product (solution that generates findings) is registered with Security Hub. See String Filter below for more details.
    productFields List<InsightFiltersProductField>
    A data type where security-findings providers can include additional solution-specific details that aren't part of the defined AwsSecurityFinding format. See Map Filter below for more details.
    productNames List<InsightFiltersProductName>
    The name of the solution (product) that generates findings. See String Filter below for more details.
    recommendationTexts List<InsightFiltersRecommendationText>
    The recommendation of what to do about the issue described in a finding. See String Filter below for more details.
    recordStates List<InsightFiltersRecordState>
    The updated record state for the finding. See String Filter below for more details.
    relatedFindingsIds List<InsightFiltersRelatedFindingsId>
    The solution-generated identifier for a related finding. See String Filter below for more details.
    relatedFindingsProductArns List<InsightFiltersRelatedFindingsProductArn>
    The ARN of the solution that generated a related finding. See String Filter below for more details.
    resourceAwsEc2InstanceIamInstanceProfileArns List<InsightFiltersResourceAwsEc2InstanceIamInstanceProfileArn>
    The IAM profile ARN of the instance. See String Filter below for more details.
    resourceAwsEc2InstanceImageIds List<InsightFiltersResourceAwsEc2InstanceImageId>
    The Amazon Machine Image (AMI) ID of the instance. See String Filter below for more details.
    resourceAwsEc2InstanceIpv4Addresses List<InsightFiltersResourceAwsEc2InstanceIpv4Address>
    The IPv4 addresses associated with the instance. See Ip Filter below for more details.
    resourceAwsEc2InstanceIpv6Addresses List<InsightFiltersResourceAwsEc2InstanceIpv6Address>
    The IPv6 addresses associated with the instance. See Ip Filter below for more details.
    resourceAwsEc2InstanceKeyNames List<InsightFiltersResourceAwsEc2InstanceKeyName>
    The key name associated with the instance. See String Filter below for more details.
    resourceAwsEc2InstanceLaunchedAts List<InsightFiltersResourceAwsEc2InstanceLaunchedAt>
    The date and time the instance was launched. See Date Filter below for more details.
    resourceAwsEc2InstanceSubnetIds List<InsightFiltersResourceAwsEc2InstanceSubnetId>
    The identifier of the subnet that the instance was launched in. See String Filter below for more details.
    resourceAwsEc2InstanceTypes List<InsightFiltersResourceAwsEc2InstanceType>
    The instance type of the instance. See String Filter below for more details.
    resourceAwsEc2InstanceVpcIds List<InsightFiltersResourceAwsEc2InstanceVpcId>
    The identifier of the VPC that the instance was launched in. See String Filter below for more details.
    resourceAwsIamAccessKeyCreatedAts List<InsightFiltersResourceAwsIamAccessKeyCreatedAt>
    The creation date/time of the IAM access key related to a finding. See Date Filter below for more details.
    resourceAwsIamAccessKeyStatuses List<InsightFiltersResourceAwsIamAccessKeyStatus>
    The status of the IAM access key related to a finding. See String Filter below for more details.
    resourceAwsIamAccessKeyUserNames List<InsightFiltersResourceAwsIamAccessKeyUserName>
    The user associated with the IAM access key related to a finding. See String Filter below for more details.
    resourceAwsS3BucketOwnerIds List<InsightFiltersResourceAwsS3BucketOwnerId>
    The canonical user ID of the owner of the S3 bucket. See String Filter below for more details.
    resourceAwsS3BucketOwnerNames List<InsightFiltersResourceAwsS3BucketOwnerName>
    The display name of the owner of the S3 bucket. See String Filter below for more details.
    resourceContainerImageIds List<InsightFiltersResourceContainerImageId>
    The identifier of the image related to a finding. See String Filter below for more details.
    resourceContainerImageNames List<InsightFiltersResourceContainerImageName>
    The name of the image related to a finding. See String Filter below for more details.
    resourceContainerLaunchedAts List<InsightFiltersResourceContainerLaunchedAt>
    The date/time that the container was started. See Date Filter below for more details.
    resourceContainerNames List<InsightFiltersResourceContainerName>
    The name of the container related to a finding. See String Filter below for more details.
    resourceDetailsOthers List<InsightFiltersResourceDetailsOther>
    The details of a resource that doesn't have a specific subfield for the resource type defined. See Map Filter below for more details.
    resourceIds List<InsightFiltersResourceId>
    The canonical identifier for the given resource type. See String Filter below for more details.
    resourcePartitions List<InsightFiltersResourcePartition>
    The canonical AWS partition name that the Region is assigned to. See String Filter below for more details.
    resourceRegions List<InsightFiltersResourceRegion>
    The canonical AWS external Region name where this resource is located. See String Filter below for more details.
    resourceTags List<InsightFiltersResourceTag>
    A list of AWS tags associated with a resource at the time the finding was processed. See Map Filter below for more details.
    resourceTypes List<InsightFiltersResourceType>
    Specifies the type of the resource that details are provided for. See String Filter below for more details.
    severityLabels List<InsightFiltersSeverityLabel>
    The label of a finding's severity. See String Filter below for more details.
    sourceUrls List<InsightFiltersSourceUrl>
    A URL that links to a page about the current finding in the security-findings provider's solution. See String Filter below for more details.
    threatIntelIndicatorCategories List<InsightFiltersThreatIntelIndicatorCategory>
    The category of a threat intelligence indicator. See String Filter below for more details.
    threatIntelIndicatorLastObservedAts List<InsightFiltersThreatIntelIndicatorLastObservedAt>
    The date/time of the last observation of a threat intelligence indicator. See Date Filter below for more details.
    threatIntelIndicatorSourceUrls List<InsightFiltersThreatIntelIndicatorSourceUrl>
    The URL for more details from the source of the threat intelligence. See String Filter below for more details.
    threatIntelIndicatorSources List<InsightFiltersThreatIntelIndicatorSource>
    The source of the threat intelligence. See String Filter below for more details.
    threatIntelIndicatorTypes List<InsightFiltersThreatIntelIndicatorType>
    The type of a threat intelligence indicator. See String Filter below for more details.
    threatIntelIndicatorValues List<InsightFiltersThreatIntelIndicatorValue>
    The value of a threat intelligence indicator. See String Filter below for more details.
    titles List<InsightFiltersTitle>
    A finding's title. See String Filter below for more details.
    types List<InsightFiltersType>
    A finding type in the format of namespace/category/classifier that classifies a finding. See String Filter below for more details.
    updatedAts List<InsightFiltersUpdatedAt>
    An ISO8601-formatted timestamp that indicates when the security-findings provider last updated the finding record. See Date Filter below for more details.
    userDefinedValues List<InsightFiltersUserDefinedValue>
    A list of name/value string pairs associated with the finding. These are custom, user-defined fields added to a finding. See Map Filter below for more details.
    verificationStates List<InsightFiltersVerificationState>
    The veracity of a finding. See String Filter below for more details.
    workflowStatuses List<InsightFiltersWorkflowStatus>
    The status of the investigation into a finding. See Workflow Status Filter below for more details.
    awsAccountIds InsightFiltersAwsAccountId[]
    AWS account ID that a finding is generated in. See String_Filter below for more details.
    companyNames InsightFiltersCompanyName[]
    The name of the findings provider (company) that owns the solution (product) that generates findings. See String_Filter below for more details.
    complianceStatuses InsightFiltersComplianceStatus[]
    Exclusive to findings that are generated as the result of a check run against a specific rule in a supported standard, such as CIS AWS Foundations. Contains security standard-related finding details. See String Filter below for more details.
    confidences InsightFiltersConfidence[]
    A finding's confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    createdAts InsightFiltersCreatedAt[]
    An ISO8601-formatted timestamp that indicates when the security-findings provider captured the potential security issue that a finding captured. See Date Filter below for more details.
    criticalities InsightFiltersCriticality[]
    The level of importance assigned to the resources associated with the finding. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    descriptions InsightFiltersDescription[]
    A finding's description. See String Filter below for more details.
    findingProviderFieldsConfidences InsightFiltersFindingProviderFieldsConfidence[]
    The finding provider value for the finding confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    findingProviderFieldsCriticalities InsightFiltersFindingProviderFieldsCriticality[]
    The finding provider value for the level of importance assigned to the resources associated with the findings. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    findingProviderFieldsRelatedFindingsIds InsightFiltersFindingProviderFieldsRelatedFindingsId[]
    The finding identifier of a related finding that is identified by the finding provider. See String Filter below for more details.
    findingProviderFieldsRelatedFindingsProductArns InsightFiltersFindingProviderFieldsRelatedFindingsProductArn[]
    The ARN of the solution that generated a related finding that is identified by the finding provider. See String Filter below for more details.
    findingProviderFieldsSeverityLabels InsightFiltersFindingProviderFieldsSeverityLabel[]
    The finding provider value for the severity label. See String Filter below for more details.
    findingProviderFieldsSeverityOriginals InsightFiltersFindingProviderFieldsSeverityOriginal[]
    The finding provider's original value for the severity. See String Filter below for more details.
    findingProviderFieldsTypes InsightFiltersFindingProviderFieldsType[]
    One or more finding types that the finding provider assigned to the finding. Uses the format of namespace/category/classifier that classify a finding. Valid namespace values include: Software and Configuration Checks, TTPs, Effects, Unusual Behaviors, and Sensitive Data Identifications. See String Filter below for more details.
    firstObservedAts InsightFiltersFirstObservedAt[]
    An ISO8601-formatted timestamp that indicates when the security-findings provider first observed the potential security issue that a finding captured. See Date Filter below for more details.
    generatorIds InsightFiltersGeneratorId[]
    The identifier for the solution-specific component (a discrete unit of logic) that generated a finding. See String Filter below for more details.
    ids InsightFiltersId[]
    The security findings provider-specific identifier for a finding. See String Filter below for more details.
    keywords InsightFiltersKeyword[]
    A keyword for a finding. See Keyword Filter below for more details.
    lastObservedAts InsightFiltersLastObservedAt[]
    An ISO8601-formatted timestamp that indicates when the security-findings provider most recently observed the potential security issue that a finding captured. See Date Filter below for more details.
    malwareNames InsightFiltersMalwareName[]
    The name of the malware that was observed. See String Filter below for more details.
    malwarePaths InsightFiltersMalwarePath[]
    The filesystem path of the malware that was observed. See String Filter below for more details.
    malwareStates InsightFiltersMalwareState[]
    The state of the malware that was observed. See String Filter below for more details.
    malwareTypes InsightFiltersMalwareType[]
    The type of the malware that was observed. See String Filter below for more details.
    networkDestinationDomains InsightFiltersNetworkDestinationDomain[]
    The destination domain of network-related information about a finding. See String Filter below for more details.
    networkDestinationIpv4s InsightFiltersNetworkDestinationIpv4[]
    The destination IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    networkDestinationIpv6s InsightFiltersNetworkDestinationIpv6[]
    The destination IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    networkDestinationPorts InsightFiltersNetworkDestinationPort[]
    The destination port of network-related information about a finding. See Number Filter below for more details.
    networkDirections InsightFiltersNetworkDirection[]
    Indicates the direction of network traffic associated with a finding. See String Filter below for more details.
    networkProtocols InsightFiltersNetworkProtocol[]
    The protocol of network-related information about a finding. See String Filter below for more details.
    networkSourceDomains InsightFiltersNetworkSourceDomain[]
    The source domain of network-related information about a finding. See String Filter below for more details.
    networkSourceIpv4s InsightFiltersNetworkSourceIpv4[]
    The source IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    networkSourceIpv6s InsightFiltersNetworkSourceIpv6[]
    The source IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    networkSourceMacs InsightFiltersNetworkSourceMac[]
    The source media access control (MAC) address of network-related information about a finding. See String Filter below for more details.
    networkSourcePorts InsightFiltersNetworkSourcePort[]
    The source port of network-related information about a finding. See Number Filter below for more details.
    noteTexts InsightFiltersNoteText[]
    The text of a note. See String Filter below for more details.
    noteUpdatedAts InsightFiltersNoteUpdatedAt[]
    The timestamp of when the note was updated. See Date Filter below for more details.
    noteUpdatedBies InsightFiltersNoteUpdatedBy[]
    The principal that created a note. See String Filter below for more details.
    processLaunchedAts InsightFiltersProcessLaunchedAt[]
    The date/time that the process was launched. See Date Filter below for more details.
    processNames InsightFiltersProcessName[]
    The name of the process. See String Filter below for more details.
    processParentPids InsightFiltersProcessParentPid[]
    The parent process ID. See Number Filter below for more details.
    processPaths InsightFiltersProcessPath[]
    The path to the process executable. See String Filter below for more details.
    processPids InsightFiltersProcessPid[]
    The process ID. See Number Filter below for more details.
    processTerminatedAts InsightFiltersProcessTerminatedAt[]
    The date/time that the process was terminated. See Date Filter below for more details.
    productArns InsightFiltersProductArn[]
    The ARN generated by Security Hub that uniquely identifies a third-party company (security findings provider) after this provider's product (solution that generates findings) is registered with Security Hub. See String Filter below for more details.
    productFields InsightFiltersProductField[]
    A data type where security-findings providers can include additional solution-specific details that aren't part of the defined AwsSecurityFinding format. See Map Filter below for more details.
    productNames InsightFiltersProductName[]
    The name of the solution (product) that generates findings. See String Filter below for more details.
    recommendationTexts InsightFiltersRecommendationText[]
    The recommendation of what to do about the issue described in a finding. See String Filter below for more details.
    recordStates InsightFiltersRecordState[]
    The updated record state for the finding. See String Filter below for more details.
    relatedFindingsIds InsightFiltersRelatedFindingsId[]
    The solution-generated identifier for a related finding. See String Filter below for more details.
    relatedFindingsProductArns InsightFiltersRelatedFindingsProductArn[]
    The ARN of the solution that generated a related finding. See String Filter below for more details.
    resourceAwsEc2InstanceIamInstanceProfileArns InsightFiltersResourceAwsEc2InstanceIamInstanceProfileArn[]
    The IAM profile ARN of the instance. See String Filter below for more details.
    resourceAwsEc2InstanceImageIds InsightFiltersResourceAwsEc2InstanceImageId[]
    The Amazon Machine Image (AMI) ID of the instance. See String Filter below for more details.
    resourceAwsEc2InstanceIpv4Addresses InsightFiltersResourceAwsEc2InstanceIpv4Address[]
    The IPv4 addresses associated with the instance. See Ip Filter below for more details.
    resourceAwsEc2InstanceIpv6Addresses InsightFiltersResourceAwsEc2InstanceIpv6Address[]
    The IPv6 addresses associated with the instance. See Ip Filter below for more details.
    resourceAwsEc2InstanceKeyNames InsightFiltersResourceAwsEc2InstanceKeyName[]
    The key name associated with the instance. See String Filter below for more details.
    resourceAwsEc2InstanceLaunchedAts InsightFiltersResourceAwsEc2InstanceLaunchedAt[]
    The date and time the instance was launched. See Date Filter below for more details.
    resourceAwsEc2InstanceSubnetIds InsightFiltersResourceAwsEc2InstanceSubnetId[]
    The identifier of the subnet that the instance was launched in. See String Filter below for more details.
    resourceAwsEc2InstanceTypes InsightFiltersResourceAwsEc2InstanceType[]
    The instance type of the instance. See String Filter below for more details.
    resourceAwsEc2InstanceVpcIds InsightFiltersResourceAwsEc2InstanceVpcId[]
    The identifier of the VPC that the instance was launched in. See String Filter below for more details.
    resourceAwsIamAccessKeyCreatedAts InsightFiltersResourceAwsIamAccessKeyCreatedAt[]
    The creation date/time of the IAM access key related to a finding. See Date Filter below for more details.
    resourceAwsIamAccessKeyStatuses InsightFiltersResourceAwsIamAccessKeyStatus[]
    The status of the IAM access key related to a finding. See String Filter below for more details.
    resourceAwsIamAccessKeyUserNames InsightFiltersResourceAwsIamAccessKeyUserName[]
    The user associated with the IAM access key related to a finding. See String Filter below for more details.
    resourceAwsS3BucketOwnerIds InsightFiltersResourceAwsS3BucketOwnerId[]
    The canonical user ID of the owner of the S3 bucket. See String Filter below for more details.
    resourceAwsS3BucketOwnerNames InsightFiltersResourceAwsS3BucketOwnerName[]
    The display name of the owner of the S3 bucket. See String Filter below for more details.
    resourceContainerImageIds InsightFiltersResourceContainerImageId[]
    The identifier of the image related to a finding. See String Filter below for more details.
    resourceContainerImageNames InsightFiltersResourceContainerImageName[]
    The name of the image related to a finding. See String Filter below for more details.
    resourceContainerLaunchedAts InsightFiltersResourceContainerLaunchedAt[]
    The date/time that the container was started. See Date Filter below for more details.
    resourceContainerNames InsightFiltersResourceContainerName[]
    The name of the container related to a finding. See String Filter below for more details.
    resourceDetailsOthers InsightFiltersResourceDetailsOther[]
    The details of a resource that doesn't have a specific subfield for the resource type defined. See Map Filter below for more details.
    resourceIds InsightFiltersResourceId[]
    The canonical identifier for the given resource type. See String Filter below for more details.
    resourcePartitions InsightFiltersResourcePartition[]
    The canonical AWS partition name that the Region is assigned to. See String Filter below for more details.
    resourceRegions InsightFiltersResourceRegion[]
    The canonical AWS external Region name where this resource is located. See String Filter below for more details.
    resourceTags InsightFiltersResourceTag[]
    A list of AWS tags associated with a resource at the time the finding was processed. See Map Filter below for more details.
    resourceTypes InsightFiltersResourceType[]
    Specifies the type of the resource that details are provided for. See String Filter below for more details.
    severityLabels InsightFiltersSeverityLabel[]
    The label of a finding's severity. See String Filter below for more details.
    sourceUrls InsightFiltersSourceUrl[]
    A URL that links to a page about the current finding in the security-findings provider's solution. See String Filter below for more details.
    threatIntelIndicatorCategories InsightFiltersThreatIntelIndicatorCategory[]
    The category of a threat intelligence indicator. See String Filter below for more details.
    threatIntelIndicatorLastObservedAts InsightFiltersThreatIntelIndicatorLastObservedAt[]
    The date/time of the last observation of a threat intelligence indicator. See Date Filter below for more details.
    threatIntelIndicatorSourceUrls InsightFiltersThreatIntelIndicatorSourceUrl[]
    The URL for more details from the source of the threat intelligence. See String Filter below for more details.
    threatIntelIndicatorSources InsightFiltersThreatIntelIndicatorSource[]
    The source of the threat intelligence. See String Filter below for more details.
    threatIntelIndicatorTypes InsightFiltersThreatIntelIndicatorType[]
    The type of a threat intelligence indicator. See String Filter below for more details.
    threatIntelIndicatorValues InsightFiltersThreatIntelIndicatorValue[]
    The value of a threat intelligence indicator. See String Filter below for more details.
    titles InsightFiltersTitle[]
    A finding's title. See String Filter below for more details.
    types InsightFiltersType[]
    A finding type in the format of namespace/category/classifier that classifies a finding. See String Filter below for more details.
    updatedAts InsightFiltersUpdatedAt[]
    An ISO8601-formatted timestamp that indicates when the security-findings provider last updated the finding record. See Date Filter below for more details.
    userDefinedValues InsightFiltersUserDefinedValue[]
    A list of name/value string pairs associated with the finding. These are custom, user-defined fields added to a finding. See Map Filter below for more details.
    verificationStates InsightFiltersVerificationState[]
    The veracity of a finding. See String Filter below for more details.
    workflowStatuses InsightFiltersWorkflowStatus[]
    The status of the investigation into a finding. See Workflow Status Filter below for more details.
    aws_account_ids Sequence[InsightFiltersAwsAccountId]
    AWS account ID that a finding is generated in. See String_Filter below for more details.
    company_names Sequence[InsightFiltersCompanyName]
    The name of the findings provider (company) that owns the solution (product) that generates findings. See String_Filter below for more details.
    compliance_statuses Sequence[InsightFiltersComplianceStatus]
    Exclusive to findings that are generated as the result of a check run against a specific rule in a supported standard, such as CIS AWS Foundations. Contains security standard-related finding details. See String Filter below for more details.
    confidences Sequence[InsightFiltersConfidence]
    A finding's confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    created_ats Sequence[InsightFiltersCreatedAt]
    An ISO8601-formatted timestamp that indicates when the security-findings provider captured the potential security issue that a finding captured. See Date Filter below for more details.
    criticalities Sequence[InsightFiltersCriticality]
    The level of importance assigned to the resources associated with the finding. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    descriptions Sequence[InsightFiltersDescription]
    A finding's description. See String Filter below for more details.
    finding_provider_fields_confidences Sequence[InsightFiltersFindingProviderFieldsConfidence]
    The finding provider value for the finding confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    finding_provider_fields_criticalities Sequence[InsightFiltersFindingProviderFieldsCriticality]
    The finding provider value for the level of importance assigned to the resources associated with the findings. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    finding_provider_fields_related_findings_ids Sequence[InsightFiltersFindingProviderFieldsRelatedFindingsId]
    The finding identifier of a related finding that is identified by the finding provider. See String Filter below for more details.
    finding_provider_fields_related_findings_product_arns Sequence[InsightFiltersFindingProviderFieldsRelatedFindingsProductArn]
    The ARN of the solution that generated a related finding that is identified by the finding provider. See String Filter below for more details.
    finding_provider_fields_severity_labels Sequence[InsightFiltersFindingProviderFieldsSeverityLabel]
    The finding provider value for the severity label. See String Filter below for more details.
    finding_provider_fields_severity_originals Sequence[InsightFiltersFindingProviderFieldsSeverityOriginal]
    The finding provider's original value for the severity. See String Filter below for more details.
    finding_provider_fields_types Sequence[InsightFiltersFindingProviderFieldsType]
    One or more finding types that the finding provider assigned to the finding. Uses the format of namespace/category/classifier that classify a finding. Valid namespace values include: Software and Configuration Checks, TTPs, Effects, Unusual Behaviors, and Sensitive Data Identifications. See String Filter below for more details.
    first_observed_ats Sequence[InsightFiltersFirstObservedAt]
    An ISO8601-formatted timestamp that indicates when the security-findings provider first observed the potential security issue that a finding captured. See Date Filter below for more details.
    generator_ids Sequence[InsightFiltersGeneratorId]
    The identifier for the solution-specific component (a discrete unit of logic) that generated a finding. See String Filter below for more details.
    ids Sequence[InsightFiltersId]
    The security findings provider-specific identifier for a finding. See String Filter below for more details.
    keywords Sequence[InsightFiltersKeyword]
    A keyword for a finding. See Keyword Filter below for more details.
    last_observed_ats Sequence[InsightFiltersLastObservedAt]
    An ISO8601-formatted timestamp that indicates when the security-findings provider most recently observed the potential security issue that a finding captured. See Date Filter below for more details.
    malware_names Sequence[InsightFiltersMalwareName]
    The name of the malware that was observed. See String Filter below for more details.
    malware_paths Sequence[InsightFiltersMalwarePath]
    The filesystem path of the malware that was observed. See String Filter below for more details.
    malware_states Sequence[InsightFiltersMalwareState]
    The state of the malware that was observed. See String Filter below for more details.
    malware_types Sequence[InsightFiltersMalwareType]
    The type of the malware that was observed. See String Filter below for more details.
    network_destination_domains Sequence[InsightFiltersNetworkDestinationDomain]
    The destination domain of network-related information about a finding. See String Filter below for more details.
    network_destination_ipv4s Sequence[InsightFiltersNetworkDestinationIpv4]
    The destination IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    network_destination_ipv6s Sequence[InsightFiltersNetworkDestinationIpv6]
    The destination IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    network_destination_ports Sequence[InsightFiltersNetworkDestinationPort]
    The destination port of network-related information about a finding. See Number Filter below for more details.
    network_directions Sequence[InsightFiltersNetworkDirection]
    Indicates the direction of network traffic associated with a finding. See String Filter below for more details.
    network_protocols Sequence[InsightFiltersNetworkProtocol]
    The protocol of network-related information about a finding. See String Filter below for more details.
    network_source_domains Sequence[InsightFiltersNetworkSourceDomain]
    The source domain of network-related information about a finding. See String Filter below for more details.
    network_source_ipv4s Sequence[InsightFiltersNetworkSourceIpv4]
    The source IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    network_source_ipv6s Sequence[InsightFiltersNetworkSourceIpv6]
    The source IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    network_source_macs Sequence[InsightFiltersNetworkSourceMac]
    The source media access control (MAC) address of network-related information about a finding. See String Filter below for more details.
    network_source_ports Sequence[InsightFiltersNetworkSourcePort]
    The source port of network-related information about a finding. See Number Filter below for more details.
    note_texts Sequence[InsightFiltersNoteText]
    The text of a note. See String Filter below for more details.
    note_updated_ats Sequence[InsightFiltersNoteUpdatedAt]
    The timestamp of when the note was updated. See Date Filter below for more details.
    note_updated_bies Sequence[InsightFiltersNoteUpdatedBy]
    The principal that created a note. See String Filter below for more details.
    process_launched_ats Sequence[InsightFiltersProcessLaunchedAt]
    The date/time that the process was launched. See Date Filter below for more details.
    process_names Sequence[InsightFiltersProcessName]
    The name of the process. See String Filter below for more details.
    process_parent_pids Sequence[InsightFiltersProcessParentPid]
    The parent process ID. See Number Filter below for more details.
    process_paths Sequence[InsightFiltersProcessPath]
    The path to the process executable. See String Filter below for more details.
    process_pids Sequence[InsightFiltersProcessPid]
    The process ID. See Number Filter below for more details.
    process_terminated_ats Sequence[InsightFiltersProcessTerminatedAt]
    The date/time that the process was terminated. See Date Filter below for more details.
    product_arns Sequence[InsightFiltersProductArn]
    The ARN generated by Security Hub that uniquely identifies a third-party company (security findings provider) after this provider's product (solution that generates findings) is registered with Security Hub. See String Filter below for more details.
    product_fields Sequence[InsightFiltersProductField]
    A data type where security-findings providers can include additional solution-specific details that aren't part of the defined AwsSecurityFinding format. See Map Filter below for more details.
    product_names Sequence[InsightFiltersProductName]
    The name of the solution (product) that generates findings. See String Filter below for more details.
    recommendation_texts Sequence[InsightFiltersRecommendationText]
    The recommendation of what to do about the issue described in a finding. See String Filter below for more details.
    record_states Sequence[InsightFiltersRecordState]
    The updated record state for the finding. See String Filter below for more details.
    related_findings_ids Sequence[InsightFiltersRelatedFindingsId]
    The solution-generated identifier for a related finding. See String Filter below for more details.
    related_findings_product_arns Sequence[InsightFiltersRelatedFindingsProductArn]
    The ARN of the solution that generated a related finding. See String Filter below for more details.
    resource_aws_ec2_instance_iam_instance_profile_arns Sequence[InsightFiltersResourceAwsEc2InstanceIamInstanceProfileArn]
    The IAM profile ARN of the instance. See String Filter below for more details.
    resource_aws_ec2_instance_image_ids Sequence[InsightFiltersResourceAwsEc2InstanceImageId]
    The Amazon Machine Image (AMI) ID of the instance. See String Filter below for more details.
    resource_aws_ec2_instance_ipv4_addresses Sequence[InsightFiltersResourceAwsEc2InstanceIpv4Address]
    The IPv4 addresses associated with the instance. See Ip Filter below for more details.
    resource_aws_ec2_instance_ipv6_addresses Sequence[InsightFiltersResourceAwsEc2InstanceIpv6Address]
    The IPv6 addresses associated with the instance. See Ip Filter below for more details.
    resource_aws_ec2_instance_key_names Sequence[InsightFiltersResourceAwsEc2InstanceKeyName]
    The key name associated with the instance. See String Filter below for more details.
    resource_aws_ec2_instance_launched_ats Sequence[InsightFiltersResourceAwsEc2InstanceLaunchedAt]
    The date and time the instance was launched. See Date Filter below for more details.
    resource_aws_ec2_instance_subnet_ids Sequence[InsightFiltersResourceAwsEc2InstanceSubnetId]
    The identifier of the subnet that the instance was launched in. See String Filter below for more details.
    resource_aws_ec2_instance_types Sequence[InsightFiltersResourceAwsEc2InstanceType]
    The instance type of the instance. See String Filter below for more details.
    resource_aws_ec2_instance_vpc_ids Sequence[InsightFiltersResourceAwsEc2InstanceVpcId]
    The identifier of the VPC that the instance was launched in. See String Filter below for more details.
    resource_aws_iam_access_key_created_ats Sequence[InsightFiltersResourceAwsIamAccessKeyCreatedAt]
    The creation date/time of the IAM access key related to a finding. See Date Filter below for more details.
    resource_aws_iam_access_key_statuses Sequence[InsightFiltersResourceAwsIamAccessKeyStatus]
    The status of the IAM access key related to a finding. See String Filter below for more details.
    resource_aws_iam_access_key_user_names Sequence[InsightFiltersResourceAwsIamAccessKeyUserName]
    The user associated with the IAM access key related to a finding. See String Filter below for more details.
    resource_aws_s3_bucket_owner_ids Sequence[InsightFiltersResourceAwsS3BucketOwnerId]
    The canonical user ID of the owner of the S3 bucket. See String Filter below for more details.
    resource_aws_s3_bucket_owner_names Sequence[InsightFiltersResourceAwsS3BucketOwnerName]
    The display name of the owner of the S3 bucket. See String Filter below for more details.
    resource_container_image_ids Sequence[InsightFiltersResourceContainerImageId]
    The identifier of the image related to a finding. See String Filter below for more details.
    resource_container_image_names Sequence[InsightFiltersResourceContainerImageName]
    The name of the image related to a finding. See String Filter below for more details.
    resource_container_launched_ats Sequence[InsightFiltersResourceContainerLaunchedAt]
    The date/time that the container was started. See Date Filter below for more details.
    resource_container_names Sequence[InsightFiltersResourceContainerName]
    The name of the container related to a finding. See String Filter below for more details.
    resource_details_others Sequence[InsightFiltersResourceDetailsOther]
    The details of a resource that doesn't have a specific subfield for the resource type defined. See Map Filter below for more details.
    resource_ids Sequence[InsightFiltersResourceId]
    The canonical identifier for the given resource type. See String Filter below for more details.
    resource_partitions Sequence[InsightFiltersResourcePartition]
    The canonical AWS partition name that the Region is assigned to. See String Filter below for more details.
    resource_regions Sequence[InsightFiltersResourceRegion]
    The canonical AWS external Region name where this resource is located. See String Filter below for more details.
    resource_tags Sequence[InsightFiltersResourceTag]
    A list of AWS tags associated with a resource at the time the finding was processed. See Map Filter below for more details.
    resource_types Sequence[InsightFiltersResourceType]
    Specifies the type of the resource that details are provided for. See String Filter below for more details.
    severity_labels Sequence[InsightFiltersSeverityLabel]
    The label of a finding's severity. See String Filter below for more details.
    source_urls Sequence[InsightFiltersSourceUrl]
    A URL that links to a page about the current finding in the security-findings provider's solution. See String Filter below for more details.
    threat_intel_indicator_categories Sequence[InsightFiltersThreatIntelIndicatorCategory]
    The category of a threat intelligence indicator. See String Filter below for more details.
    threat_intel_indicator_last_observed_ats Sequence[InsightFiltersThreatIntelIndicatorLastObservedAt]
    The date/time of the last observation of a threat intelligence indicator. See Date Filter below for more details.
    threat_intel_indicator_source_urls Sequence[InsightFiltersThreatIntelIndicatorSourceUrl]
    The URL for more details from the source of the threat intelligence. See String Filter below for more details.
    threat_intel_indicator_sources Sequence[InsightFiltersThreatIntelIndicatorSource]
    The source of the threat intelligence. See String Filter below for more details.
    threat_intel_indicator_types Sequence[InsightFiltersThreatIntelIndicatorType]
    The type of a threat intelligence indicator. See String Filter below for more details.
    threat_intel_indicator_values Sequence[InsightFiltersThreatIntelIndicatorValue]
    The value of a threat intelligence indicator. See String Filter below for more details.
    titles Sequence[InsightFiltersTitle]
    A finding's title. See String Filter below for more details.
    types Sequence[InsightFiltersType]
    A finding type in the format of namespace/category/classifier that classifies a finding. See String Filter below for more details.
    updated_ats Sequence[InsightFiltersUpdatedAt]
    An ISO8601-formatted timestamp that indicates when the security-findings provider last updated the finding record. See Date Filter below for more details.
    user_defined_values Sequence[InsightFiltersUserDefinedValue]
    A list of name/value string pairs associated with the finding. These are custom, user-defined fields added to a finding. See Map Filter below for more details.
    verification_states Sequence[InsightFiltersVerificationState]
    The veracity of a finding. See String Filter below for more details.
    workflow_statuses Sequence[InsightFiltersWorkflowStatus]
    The status of the investigation into a finding. See Workflow Status Filter below for more details.
    awsAccountIds List<Property Map>
    AWS account ID that a finding is generated in. See String_Filter below for more details.
    companyNames List<Property Map>
    The name of the findings provider (company) that owns the solution (product) that generates findings. See String_Filter below for more details.
    complianceStatuses List<Property Map>
    Exclusive to findings that are generated as the result of a check run against a specific rule in a supported standard, such as CIS AWS Foundations. Contains security standard-related finding details. See String Filter below for more details.
    confidences List<Property Map>
    A finding's confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    createdAts List<Property Map>
    An ISO8601-formatted timestamp that indicates when the security-findings provider captured the potential security issue that a finding captured. See Date Filter below for more details.
    criticalities List<Property Map>
    The level of importance assigned to the resources associated with the finding. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    descriptions List<Property Map>
    A finding's description. See String Filter below for more details.
    findingProviderFieldsConfidences List<Property Map>
    The finding provider value for the finding confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence. See Number Filter below for more details.
    findingProviderFieldsCriticalities List<Property Map>
    The finding provider value for the level of importance assigned to the resources associated with the findings. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources. See Number Filter below for more details.
    findingProviderFieldsRelatedFindingsIds List<Property Map>
    The finding identifier of a related finding that is identified by the finding provider. See String Filter below for more details.
    findingProviderFieldsRelatedFindingsProductArns List<Property Map>
    The ARN of the solution that generated a related finding that is identified by the finding provider. See String Filter below for more details.
    findingProviderFieldsSeverityLabels List<Property Map>
    The finding provider value for the severity label. See String Filter below for more details.
    findingProviderFieldsSeverityOriginals List<Property Map>
    The finding provider's original value for the severity. See String Filter below for more details.
    findingProviderFieldsTypes List<Property Map>
    One or more finding types that the finding provider assigned to the finding. Uses the format of namespace/category/classifier that classify a finding. Valid namespace values include: Software and Configuration Checks, TTPs, Effects, Unusual Behaviors, and Sensitive Data Identifications. See String Filter below for more details.
    firstObservedAts List<Property Map>
    An ISO8601-formatted timestamp that indicates when the security-findings provider first observed the potential security issue that a finding captured. See Date Filter below for more details.
    generatorIds List<Property Map>
    The identifier for the solution-specific component (a discrete unit of logic) that generated a finding. See String Filter below for more details.
    ids List<Property Map>
    The security findings provider-specific identifier for a finding. See String Filter below for more details.
    keywords List<Property Map>
    A keyword for a finding. See Keyword Filter below for more details.
    lastObservedAts List<Property Map>
    An ISO8601-formatted timestamp that indicates when the security-findings provider most recently observed the potential security issue that a finding captured. See Date Filter below for more details.
    malwareNames List<Property Map>
    The name of the malware that was observed. See String Filter below for more details.
    malwarePaths List<Property Map>
    The filesystem path of the malware that was observed. See String Filter below for more details.
    malwareStates List<Property Map>
    The state of the malware that was observed. See String Filter below for more details.
    malwareTypes List<Property Map>
    The type of the malware that was observed. See String Filter below for more details.
    networkDestinationDomains List<Property Map>
    The destination domain of network-related information about a finding. See String Filter below for more details.
    networkDestinationIpv4s List<Property Map>
    The destination IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    networkDestinationIpv6s List<Property Map>
    The destination IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    networkDestinationPorts List<Property Map>
    The destination port of network-related information about a finding. See Number Filter below for more details.
    networkDirections List<Property Map>
    Indicates the direction of network traffic associated with a finding. See String Filter below for more details.
    networkProtocols List<Property Map>
    The protocol of network-related information about a finding. See String Filter below for more details.
    networkSourceDomains List<Property Map>
    The source domain of network-related information about a finding. See String Filter below for more details.
    networkSourceIpv4s List<Property Map>
    The source IPv4 address of network-related information about a finding. See Ip Filter below for more details.
    networkSourceIpv6s List<Property Map>
    The source IPv6 address of network-related information about a finding. See Ip Filter below for more details.
    networkSourceMacs List<Property Map>
    The source media access control (MAC) address of network-related information about a finding. See String Filter below for more details.
    networkSourcePorts List<Property Map>
    The source port of network-related information about a finding. See Number Filter below for more details.
    noteTexts List<Property Map>
    The text of a note. See String Filter below for more details.
    noteUpdatedAts List<Property Map>
    The timestamp of when the note was updated. See Date Filter below for more details.
    noteUpdatedBies List<Property Map>
    The principal that created a note. See String Filter below for more details.
    processLaunchedAts List<Property Map>
    The date/time that the process was launched. See Date Filter below for more details.
    processNames List<Property Map>
    The name of the process. See String Filter below for more details.
    processParentPids List<Property Map>
    The parent process ID. See Number Filter below for more details.
    processPaths List<Property Map>
    The path to the process executable. See String Filter below for more details.
    processPids List<Property Map>
    The process ID. See Number Filter below for more details.
    processTerminatedAts List<Property Map>
    The date/time that the process was terminated. See Date Filter below for more details.
    productArns List<Property Map>
    The ARN generated by Security Hub that uniquely identifies a third-party company (security findings provider) after this provider's product (solution that generates findings) is registered with Security Hub. See String Filter below for more details.
    productFields List<Property Map>
    A data type where security-findings providers can include additional solution-specific details that aren't part of the defined AwsSecurityFinding format. See Map Filter below for more details.
    productNames List<Property Map>
    The name of the solution (product) that generates findings. See String Filter below for more details.
    recommendationTexts List<Property Map>
    The recommendation of what to do about the issue described in a finding. See String Filter below for more details.
    recordStates List<Property Map>
    The updated record state for the finding. See String Filter below for more details.
    relatedFindingsIds List<Property Map>
    The solution-generated identifier for a related finding. See String Filter below for more details.
    relatedFindingsProductArns List<Property Map>
    The ARN of the solution that generated a related finding. See String Filter below for more details.
    resourceAwsEc2InstanceIamInstanceProfileArns List<Property Map>
    The IAM profile ARN of the instance. See String Filter below for more details.
    resourceAwsEc2InstanceImageIds List<Property Map>
    The Amazon Machine Image (AMI) ID of the instance. See String Filter below for more details.
    resourceAwsEc2InstanceIpv4Addresses List<Property Map>
    The IPv4 addresses associated with the instance. See Ip Filter below for more details.
    resourceAwsEc2InstanceIpv6Addresses List<Property Map>
    The IPv6 addresses associated with the instance. See Ip Filter below for more details.
    resourceAwsEc2InstanceKeyNames List<Property Map>
    The key name associated with the instance. See String Filter below for more details.
    resourceAwsEc2InstanceLaunchedAts List<Property Map>
    The date and time the instance was launched. See Date Filter below for more details.
    resourceAwsEc2InstanceSubnetIds List<Property Map>
    The identifier of the subnet that the instance was launched in. See String Filter below for more details.
    resourceAwsEc2InstanceTypes List<Property Map>
    The instance type of the instance. See String Filter below for more details.
    resourceAwsEc2InstanceVpcIds List<Property Map>
    The identifier of the VPC that the instance was launched in. See String Filter below for more details.
    resourceAwsIamAccessKeyCreatedAts List<Property Map>
    The creation date/time of the IAM access key related to a finding. See Date Filter below for more details.
    resourceAwsIamAccessKeyStatuses List<Property Map>
    The status of the IAM access key related to a finding. See String Filter below for more details.
    resourceAwsIamAccessKeyUserNames List<Property Map>
    The user associated with the IAM access key related to a finding. See String Filter below for more details.
    resourceAwsS3BucketOwnerIds List<Property Map>
    The canonical user ID of the owner of the S3 bucket. See String Filter below for more details.
    resourceAwsS3BucketOwnerNames List<Property Map>
    The display name of the owner of the S3 bucket. See String Filter below for more details.
    resourceContainerImageIds List<Property Map>
    The identifier of the image related to a finding. See String Filter below for more details.
    resourceContainerImageNames List<Property Map>
    The name of the image related to a finding. See String Filter below for more details.
    resourceContainerLaunchedAts List<Property Map>
    The date/time that the container was started. See Date Filter below for more details.
    resourceContainerNames List<Property Map>
    The name of the container related to a finding. See String Filter below for more details.
    resourceDetailsOthers List<Property Map>
    The details of a resource that doesn't have a specific subfield for the resource type defined. See Map Filter below for more details.
    resourceIds List<Property Map>
    The canonical identifier for the given resource type. See String Filter below for more details.
    resourcePartitions List<Property Map>
    The canonical AWS partition name that the Region is assigned to. See String Filter below for more details.
    resourceRegions List<Property Map>
    The canonical AWS external Region name where this resource is located. See String Filter below for more details.
    resourceTags List<Property Map>
    A list of AWS tags associated with a resource at the time the finding was processed. See Map Filter below for more details.
    resourceTypes List<Property Map>
    Specifies the type of the resource that details are provided for. See String Filter below for more details.
    severityLabels List<Property Map>
    The label of a finding's severity. See String Filter below for more details.
    sourceUrls List<Property Map>
    A URL that links to a page about the current finding in the security-findings provider's solution. See String Filter below for more details.
    threatIntelIndicatorCategories List<Property Map>
    The category of a threat intelligence indicator. See String Filter below for more details.
    threatIntelIndicatorLastObservedAts List<Property Map>
    The date/time of the last observation of a threat intelligence indicator. See Date Filter below for more details.
    threatIntelIndicatorSourceUrls List<Property Map>
    The URL for more details from the source of the threat intelligence. See String Filter below for more details.
    threatIntelIndicatorSources List<Property Map>
    The source of the threat intelligence. See String Filter below for more details.
    threatIntelIndicatorTypes List<Property Map>
    The type of a threat intelligence indicator. See String Filter below for more details.
    threatIntelIndicatorValues List<Property Map>
    The value of a threat intelligence indicator. See String Filter below for more details.
    titles List<Property Map>
    A finding's title. See String Filter below for more details.
    types List<Property Map>
    A finding type in the format of namespace/category/classifier that classifies a finding. See String Filter below for more details.
    updatedAts List<Property Map>
    An ISO8601-formatted timestamp that indicates when the security-findings provider last updated the finding record. See Date Filter below for more details.
    userDefinedValues List<Property Map>
    A list of name/value string pairs associated with the finding. These are custom, user-defined fields added to a finding. See Map Filter below for more details.
    verificationStates List<Property Map>
    The veracity of a finding. See String Filter below for more details.
    workflowStatuses List<Property Map>
    The status of the investigation into a finding. See Workflow Status Filter below for more details.

    InsightFiltersAwsAccountId, InsightFiltersAwsAccountIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersCompanyName, InsightFiltersCompanyNameArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersComplianceStatus, InsightFiltersComplianceStatusArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersConfidence, InsightFiltersConfidenceArgs

    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq str
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte str
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte str
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.

    InsightFiltersCreatedAt, InsightFiltersCreatedAtArgs

    DateRange InsightFiltersCreatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersCreatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersCreatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersCreatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersCreatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersCreatedAtDateRange, InsightFiltersCreatedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersCriticality, InsightFiltersCriticalityArgs

    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq str
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte str
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte str
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.

    InsightFiltersDescription, InsightFiltersDescriptionArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersFindingProviderFieldsConfidence, InsightFiltersFindingProviderFieldsConfidenceArgs

    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq str
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte str
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte str
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.

    InsightFiltersFindingProviderFieldsCriticality, InsightFiltersFindingProviderFieldsCriticalityArgs

    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq str
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte str
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte str
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.

    InsightFiltersFindingProviderFieldsRelatedFindingsId, InsightFiltersFindingProviderFieldsRelatedFindingsIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersFindingProviderFieldsRelatedFindingsProductArn, InsightFiltersFindingProviderFieldsRelatedFindingsProductArnArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersFindingProviderFieldsSeverityLabel, InsightFiltersFindingProviderFieldsSeverityLabelArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersFindingProviderFieldsSeverityOriginal, InsightFiltersFindingProviderFieldsSeverityOriginalArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersFindingProviderFieldsType, InsightFiltersFindingProviderFieldsTypeArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersFirstObservedAt, InsightFiltersFirstObservedAtArgs

    DateRange InsightFiltersFirstObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersFirstObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersFirstObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersFirstObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersFirstObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersFirstObservedAtDateRange, InsightFiltersFirstObservedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersGeneratorId, InsightFiltersGeneratorIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersId, InsightFiltersIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersKeyword, InsightFiltersKeywordArgs

    Value string
    A value for the keyword.
    Value string
    A value for the keyword.
    value String
    A value for the keyword.
    value string
    A value for the keyword.
    value str
    A value for the keyword.
    value String
    A value for the keyword.

    InsightFiltersLastObservedAt, InsightFiltersLastObservedAtArgs

    DateRange InsightFiltersLastObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersLastObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersLastObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersLastObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersLastObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersLastObservedAtDateRange, InsightFiltersLastObservedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersMalwareName, InsightFiltersMalwareNameArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersMalwarePath, InsightFiltersMalwarePathArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersMalwareState, InsightFiltersMalwareStateArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersMalwareType, InsightFiltersMalwareTypeArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersNetworkDestinationDomain, InsightFiltersNetworkDestinationDomainArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersNetworkDestinationIpv4, InsightFiltersNetworkDestinationIpv4Args

    Cidr string
    A finding's CIDR value.
    Cidr string
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.
    cidr string
    A finding's CIDR value.
    cidr str
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.

    InsightFiltersNetworkDestinationIpv6, InsightFiltersNetworkDestinationIpv6Args

    Cidr string
    A finding's CIDR value.
    Cidr string
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.
    cidr string
    A finding's CIDR value.
    cidr str
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.

    InsightFiltersNetworkDestinationPort, InsightFiltersNetworkDestinationPortArgs

    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq str
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte str
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte str
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.

    InsightFiltersNetworkDirection, InsightFiltersNetworkDirectionArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersNetworkProtocol, InsightFiltersNetworkProtocolArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersNetworkSourceDomain, InsightFiltersNetworkSourceDomainArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersNetworkSourceIpv4, InsightFiltersNetworkSourceIpv4Args

    Cidr string
    A finding's CIDR value.
    Cidr string
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.
    cidr string
    A finding's CIDR value.
    cidr str
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.

    InsightFiltersNetworkSourceIpv6, InsightFiltersNetworkSourceIpv6Args

    Cidr string
    A finding's CIDR value.
    Cidr string
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.
    cidr string
    A finding's CIDR value.
    cidr str
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.

    InsightFiltersNetworkSourceMac, InsightFiltersNetworkSourceMacArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersNetworkSourcePort, InsightFiltersNetworkSourcePortArgs

    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq str
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte str
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte str
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.

    InsightFiltersNoteText, InsightFiltersNoteTextArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersNoteUpdatedAt, InsightFiltersNoteUpdatedAtArgs

    DateRange InsightFiltersNoteUpdatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersNoteUpdatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersNoteUpdatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersNoteUpdatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersNoteUpdatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersNoteUpdatedAtDateRange, InsightFiltersNoteUpdatedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersNoteUpdatedBy, InsightFiltersNoteUpdatedByArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersProcessLaunchedAt, InsightFiltersProcessLaunchedAtArgs

    DateRange InsightFiltersProcessLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersProcessLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersProcessLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersProcessLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersProcessLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersProcessLaunchedAtDateRange, InsightFiltersProcessLaunchedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersProcessName, InsightFiltersProcessNameArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersProcessParentPid, InsightFiltersProcessParentPidArgs

    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq str
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte str
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte str
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.

    InsightFiltersProcessPath, InsightFiltersProcessPathArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersProcessPid, InsightFiltersProcessPidArgs

    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    Gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    Lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq string
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte string
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte string
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq str
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte str
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte str
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    eq String
    The equal-to condition to be applied to a single field when querying for findings, provided as a String.
    gte String
    The greater-than-equal condition to be applied to a single field when querying for findings, provided as a String.
    lte String
    The less-than-equal condition to be applied to a single field when querying for findings, provided as a String.

    InsightFiltersProcessTerminatedAt, InsightFiltersProcessTerminatedAtArgs

    DateRange InsightFiltersProcessTerminatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersProcessTerminatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersProcessTerminatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersProcessTerminatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersProcessTerminatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersProcessTerminatedAtDateRange, InsightFiltersProcessTerminatedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersProductArn, InsightFiltersProductArnArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersProductField, InsightFiltersProductFieldArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key String
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key str
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key String
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersProductName, InsightFiltersProductNameArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersRecommendationText, InsightFiltersRecommendationTextArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersRecordState, InsightFiltersRecordStateArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersRelatedFindingsId, InsightFiltersRelatedFindingsIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersRelatedFindingsProductArn, InsightFiltersRelatedFindingsProductArnArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsEc2InstanceIamInstanceProfileArn, InsightFiltersResourceAwsEc2InstanceIamInstanceProfileArnArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsEc2InstanceImageId, InsightFiltersResourceAwsEc2InstanceImageIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsEc2InstanceIpv4Address, InsightFiltersResourceAwsEc2InstanceIpv4AddressArgs

    Cidr string
    A finding's CIDR value.
    Cidr string
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.
    cidr string
    A finding's CIDR value.
    cidr str
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.

    InsightFiltersResourceAwsEc2InstanceIpv6Address, InsightFiltersResourceAwsEc2InstanceIpv6AddressArgs

    Cidr string
    A finding's CIDR value.
    Cidr string
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.
    cidr string
    A finding's CIDR value.
    cidr str
    A finding's CIDR value.
    cidr String
    A finding's CIDR value.

    InsightFiltersResourceAwsEc2InstanceKeyName, InsightFiltersResourceAwsEc2InstanceKeyNameArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsEc2InstanceLaunchedAt, InsightFiltersResourceAwsEc2InstanceLaunchedAtArgs

    DateRange InsightFiltersResourceAwsEc2InstanceLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersResourceAwsEc2InstanceLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersResourceAwsEc2InstanceLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersResourceAwsEc2InstanceLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersResourceAwsEc2InstanceLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersResourceAwsEc2InstanceLaunchedAtDateRange, InsightFiltersResourceAwsEc2InstanceLaunchedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsEc2InstanceSubnetId, InsightFiltersResourceAwsEc2InstanceSubnetIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsEc2InstanceType, InsightFiltersResourceAwsEc2InstanceTypeArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsEc2InstanceVpcId, InsightFiltersResourceAwsEc2InstanceVpcIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsIamAccessKeyCreatedAt, InsightFiltersResourceAwsIamAccessKeyCreatedAtArgs

    DateRange InsightFiltersResourceAwsIamAccessKeyCreatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersResourceAwsIamAccessKeyCreatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersResourceAwsIamAccessKeyCreatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersResourceAwsIamAccessKeyCreatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersResourceAwsIamAccessKeyCreatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersResourceAwsIamAccessKeyCreatedAtDateRange, InsightFiltersResourceAwsIamAccessKeyCreatedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsIamAccessKeyStatus, InsightFiltersResourceAwsIamAccessKeyStatusArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsIamAccessKeyUserName, InsightFiltersResourceAwsIamAccessKeyUserNameArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsS3BucketOwnerId, InsightFiltersResourceAwsS3BucketOwnerIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceAwsS3BucketOwnerName, InsightFiltersResourceAwsS3BucketOwnerNameArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceContainerImageId, InsightFiltersResourceContainerImageIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceContainerImageName, InsightFiltersResourceContainerImageNameArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceContainerLaunchedAt, InsightFiltersResourceContainerLaunchedAtArgs

    DateRange InsightFiltersResourceContainerLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersResourceContainerLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersResourceContainerLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersResourceContainerLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersResourceContainerLaunchedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersResourceContainerLaunchedAtDateRange, InsightFiltersResourceContainerLaunchedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceContainerName, InsightFiltersResourceContainerNameArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceDetailsOther, InsightFiltersResourceDetailsOtherArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key String
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key str
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key String
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceId, InsightFiltersResourceIdArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourcePartition, InsightFiltersResourcePartitionArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceRegion, InsightFiltersResourceRegionArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceTag, InsightFiltersResourceTagArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key String
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key str
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key String
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersResourceType, InsightFiltersResourceTypeArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersSeverityLabel, InsightFiltersSeverityLabelArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersSourceUrl, InsightFiltersSourceUrlArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersThreatIntelIndicatorCategory, InsightFiltersThreatIntelIndicatorCategoryArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersThreatIntelIndicatorLastObservedAt, InsightFiltersThreatIntelIndicatorLastObservedAtArgs

    DateRange InsightFiltersThreatIntelIndicatorLastObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersThreatIntelIndicatorLastObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersThreatIntelIndicatorLastObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersThreatIntelIndicatorLastObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersThreatIntelIndicatorLastObservedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersThreatIntelIndicatorLastObservedAtDateRange, InsightFiltersThreatIntelIndicatorLastObservedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersThreatIntelIndicatorSource, InsightFiltersThreatIntelIndicatorSourceArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersThreatIntelIndicatorSourceUrl, InsightFiltersThreatIntelIndicatorSourceUrlArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersThreatIntelIndicatorType, InsightFiltersThreatIntelIndicatorTypeArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersThreatIntelIndicatorValue, InsightFiltersThreatIntelIndicatorValueArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersTitle, InsightFiltersTitleArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersType, InsightFiltersTypeArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersUpdatedAt, InsightFiltersUpdatedAtArgs

    DateRange InsightFiltersUpdatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    DateRange InsightFiltersUpdatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    End string
    An end date for the date filter. Required with start if date_range is not specified.
    Start string
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersUpdatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange InsightFiltersUpdatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end string
    An end date for the date filter. Required with start if date_range is not specified.
    start string
    A start date for the date filter. Required with end if date_range is not specified.
    date_range InsightFiltersUpdatedAtDateRange
    A configuration block of the date range for the date filter. See date_range below for more details.
    end str
    An end date for the date filter. Required with start if date_range is not specified.
    start str
    A start date for the date filter. Required with end if date_range is not specified.
    dateRange Property Map
    A configuration block of the date range for the date filter. See date_range below for more details.
    end String
    An end date for the date filter. Required with start if date_range is not specified.
    start String
    A start date for the date filter. Required with end if date_range is not specified.

    InsightFiltersUpdatedAtDateRange, InsightFiltersUpdatedAtDateRangeArgs

    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    Unit string
    A date range unit for the date filter. Valid values: DAYS.
    Value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Integer
    A date range value for the date filter, provided as an Integer.
    unit string
    A date range unit for the date filter. Valid values: DAYS.
    value number
    A date range value for the date filter, provided as an Integer.
    unit str
    A date range unit for the date filter. Valid values: DAYS.
    value int
    A date range value for the date filter, provided as an Integer.
    unit String
    A date range unit for the date filter. Valid values: DAYS.
    value Number
    A date range value for the date filter, provided as an Integer.

    InsightFiltersUserDefinedValue, InsightFiltersUserDefinedValueArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key String
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key string
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key str
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    key String
    The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersVerificationState, InsightFiltersVerificationStateArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    InsightFiltersWorkflowStatus, InsightFiltersWorkflowStatusArgs

    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    Comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    Value string
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.
    comparison string
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value string
    A date range value for the date filter, provided as an Integer.
    comparison str
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value str
    A date range value for the date filter, provided as an Integer.
    comparison String
    The condition to apply to a string value when querying for findings. Valid values include: EQUALS and NOT_EQUALS.
    value String
    A date range value for the date filter, provided as an Integer.

    Import

    Using pulumi import, import Security Hub insights using the ARN. For example:

    $ pulumi import aws:securityhub/insight:Insight example arn:aws:securityhub:us-west-2:1234567890:insight/1234567890/custom/91299ed7-abd0-4e44-a858-d0b15e37141a
    

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi