Documentation ¶
Index ¶
- func CfnFilter_CFN_RESOURCE_TYPE_NAME() *string
- func CfnFilter_IsCfnElement(x interface{}) *bool
- func CfnFilter_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnFilter_IsConstruct(x interface{}) *bool
- func NewCfnFilter_Override(c CfnFilter, scope constructs.Construct, id *string, props *CfnFilterProps)
- type CfnFilter
- type CfnFilterProps
- type CfnFilter_DateFilterProperty
- type CfnFilter_FilterCriteriaProperty
- type CfnFilter_MapFilterProperty
- type CfnFilter_NumberFilterProperty
- type CfnFilter_PackageFilterProperty
- type CfnFilter_PortRangeFilterProperty
- type CfnFilter_StringFilterProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnFilter_CFN_RESOURCE_TYPE_NAME ¶
func CfnFilter_CFN_RESOURCE_TYPE_NAME() *string
func CfnFilter_IsCfnElement ¶
func CfnFilter_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnFilter_IsCfnResource ¶
func CfnFilter_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnFilter_IsConstruct ¶
func CfnFilter_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead.
func NewCfnFilter_Override ¶
func NewCfnFilter_Override(c CfnFilter, scope constructs.Construct, id *string, props *CfnFilterProps)
Create a new `AWS::InspectorV2::Filter`.
Types ¶
type CfnFilter ¶
type CfnFilter interface { awscdk.CfnResource awscdk.IInspectable AttrArn() *string // Options for this resource, such as condition, update policy etc. CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} // AWS resource type. CfnResourceType() *string // Returns: the stack trace of the point where this Resource was created from, sourced // from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most // node +internal+ entries filtered. CreationStack() *[]*string // `AWS::InspectorV2::Filter.Description`. Description() *string SetDescription(val *string) // `AWS::InspectorV2::Filter.FilterAction`. FilterAction() *string SetFilterAction(val *string) // `AWS::InspectorV2::Filter.FilterCriteria`. FilterCriteria() interface{} SetFilterCriteria(val interface{}) // The logical ID for this CloudFormation stack element. // // The logical ID of the element // is calculated from the path of the resource node in the construct tree. // // To override this value, use `overrideLogicalId(newLogicalId)`. // // Returns: the logical ID as a stringified token. This value will only get // resolved during synthesis. LogicalId() *string // `AWS::InspectorV2::Filter.Name`. Name() *string SetName(val *string) // The tree node. Node() constructs.Node // Return a string that will be resolved to a CloudFormation `{ Ref }` for this element. // // If, by any chance, the intrinsic reference of a resource is not a string, you could // coerce it to an IResolvable through `Lazy.any({ produce: resource.ref })`. Ref() *string // The stack in which this element is defined. // // CfnElements must be defined within a stack scope (directly or indirectly). Stack() awscdk.Stack // Return properties modified after initiation. // // Resources that expose mutable properties should override this function to // collect and return the properties object for this resource. UpdatedProperites() *map[string]interface{} // Syntactic sugar for `addOverride(path, undefined)`. AddDeletionOverride(path *string) // Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned. // // This can be used for resources across stacks (or nested stack) boundaries // and the dependency will automatically be transferred to the relevant scope. AddDependsOn(target awscdk.CfnResource) // Add a value to the CloudFormation Resource Metadata. // See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html // // Note that this is a different set of metadata from CDK node metadata; this // metadata ends up in the stack template under the resource, whereas CDK // node metadata ends up in the Cloud Assembly. // AddMetadata(key *string, value interface{}) // Adds an override to the synthesized CloudFormation resource. // // To add a // property override, either use `addPropertyOverride` or prefix `path` with // "Properties." (i.e. `Properties.TopicName`). // // If the override is nested, separate each nested level using a dot (.) in the path parameter. // If there is an array as part of the nesting, specify the index in the path. // // To include a literal `.` in the property name, prefix with a `\`. In most // programming languages you will need to write this as `"\\."` because the // `\` itself will need to be escaped. // // For example, // “`typescript // cfnResource.addOverride('Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes', ['myattribute']); // cfnResource.addOverride('Properties.GlobalSecondaryIndexes.1.ProjectionType', 'INCLUDE'); // “` // would add the overrides // “`json // "Properties": { // "GlobalSecondaryIndexes": [ // { // "Projection": { // "NonKeyAttributes": [ "myattribute" ] // ... // } // ... // }, // { // "ProjectionType": "INCLUDE" // ... // }, // ] // ... // } // “` // // The `value` argument to `addOverride` will not be processed or translated // in any way. Pass raw JSON values in here with the correct capitalization // for CloudFormation. If you pass CDK classes or structs, they will be // rendered with lowercased key names, and CloudFormation will reject the // template. AddOverride(path *string, value interface{}) // Adds an override that deletes the value of a property from the resource definition. AddPropertyDeletionOverride(propertyPath *string) // Adds an override to a resource property. // // Syntactic sugar for `addOverride("Properties.<...>", value)`. AddPropertyOverride(propertyPath *string, value interface{}) // Sets the deletion policy of the resource based on the removal policy specified. // // The Removal Policy controls what happens to this resource when it stops // being managed by CloudFormation, either because you've removed it from the // CDK application or because you've made a change that requires the resource // to be replaced. // // The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS // account for data recovery and cleanup later (`RemovalPolicy.RETAIN`). ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) // Returns a token for an runtime attribute of this resource. // // Ideally, use generated attribute accessors (e.g. `resource.arn`), but this can be used for future compatibility // in case there is no generated attribute. GetAtt(attributeName *string) awscdk.Reference // Retrieve a value value from the CloudFormation Resource Metadata. // See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html // // Note that this is a different set of metadata from CDK node metadata; this // metadata ends up in the stack template under the resource, whereas CDK // node metadata ends up in the Cloud Assembly. // GetMetadata(key *string) interface{} // Examines the CloudFormation resource and discloses attributes. Inspect(inspector awscdk.TreeInspector) // Overrides the auto-generated logical ID with a specific ID. OverrideLogicalId(newLogicalId *string) RenderProperties(props *map[string]interface{}) *map[string]interface{} // Can be overridden by subclasses to determine if this resource will be rendered into the cloudformation template. // // Returns: `true` if the resource should be included or `false` is the resource // should be omitted. ShouldSynthesize() *bool // Returns a string representation of this construct. // // Returns: a string representation of this resource. ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::InspectorV2::Filter`.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import "github.com/aws/aws-cdk-go/awscdk" cfnFilter := awscdk.Aws_inspectorv2.NewCfnFilter(this, jsii.String("MyCfnFilter"), &cfnFilterProps{ filterAction: jsii.String("filterAction"), filterCriteria: &filterCriteriaProperty{ awsAccountId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, componentId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, componentType: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ec2InstanceImageId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ec2InstanceSubnetId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ec2InstanceVpcId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageArchitecture: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageHash: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImagePushedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, ecrImageRegistry: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageRepositoryName: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageTags: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, findingArn: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, findingStatus: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, findingType: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, firstObservedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, inspectorScore: []interface{}{ &numberFilterProperty{ lowerInclusive: jsii.Number(123), upperInclusive: jsii.Number(123), }, }, lastObservedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, networkProtocol: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, portRange: []interface{}{ &portRangeFilterProperty{ beginInclusive: jsii.Number(123), endInclusive: jsii.Number(123), }, }, relatedVulnerabilities: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, resourceId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, resourceTags: []interface{}{ &mapFilterProperty{ comparison: jsii.String("comparison"), // the properties below are optional key: jsii.String("key"), value: jsii.String("value"), }, }, resourceType: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, severity: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, title: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, updatedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, vendorSeverity: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, vulnerabilityId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, vulnerabilitySource: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, vulnerablePackages: []interface{}{ &packageFilterProperty{ architecture: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, epoch: &numberFilterProperty{ lowerInclusive: jsii.Number(123), upperInclusive: jsii.Number(123), }, name: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, release: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, sourceLayerHash: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, version: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, }, }, name: jsii.String("name"), // the properties below are optional description: jsii.String("description"), })
func NewCfnFilter ¶
func NewCfnFilter(scope constructs.Construct, id *string, props *CfnFilterProps) CfnFilter
Create a new `AWS::InspectorV2::Filter`.
type CfnFilterProps ¶
type CfnFilterProps struct { // `AWS::InspectorV2::Filter.FilterAction`. FilterAction *string `field:"required" json:"filterAction" yaml:"filterAction"` // `AWS::InspectorV2::Filter.FilterCriteria`. FilterCriteria interface{} `field:"required" json:"filterCriteria" yaml:"filterCriteria"` // `AWS::InspectorV2::Filter.Name`. Name *string `field:"required" json:"name" yaml:"name"` // `AWS::InspectorV2::Filter.Description`. Description *string `field:"optional" json:"description" yaml:"description"` }
Properties for defining a `CfnFilter`.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import "github.com/aws/aws-cdk-go/awscdk" cfnFilterProps := &cfnFilterProps{ filterAction: jsii.String("filterAction"), filterCriteria: &filterCriteriaProperty{ awsAccountId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, componentId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, componentType: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ec2InstanceImageId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ec2InstanceSubnetId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ec2InstanceVpcId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageArchitecture: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageHash: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImagePushedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, ecrImageRegistry: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageRepositoryName: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageTags: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, findingArn: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, findingStatus: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, findingType: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, firstObservedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, inspectorScore: []interface{}{ &numberFilterProperty{ lowerInclusive: jsii.Number(123), upperInclusive: jsii.Number(123), }, }, lastObservedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, networkProtocol: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, portRange: []interface{}{ &portRangeFilterProperty{ beginInclusive: jsii.Number(123), endInclusive: jsii.Number(123), }, }, relatedVulnerabilities: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, resourceId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, resourceTags: []interface{}{ &mapFilterProperty{ comparison: jsii.String("comparison"), // the properties below are optional key: jsii.String("key"), value: jsii.String("value"), }, }, resourceType: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, severity: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, title: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, updatedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, vendorSeverity: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, vulnerabilityId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, vulnerabilitySource: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, vulnerablePackages: []interface{}{ &packageFilterProperty{ architecture: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, epoch: &numberFilterProperty{ lowerInclusive: jsii.Number(123), upperInclusive: jsii.Number(123), }, name: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, release: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, sourceLayerHash: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, version: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, }, }, name: jsii.String("name"), // the properties below are optional description: jsii.String("description"), }
type CfnFilter_DateFilterProperty ¶
type CfnFilter_DateFilterProperty struct { // `CfnFilter.DateFilterProperty.EndInclusive`. EndInclusive *float64 `field:"optional" json:"endInclusive" yaml:"endInclusive"` // `CfnFilter.DateFilterProperty.StartInclusive`. StartInclusive *float64 `field:"optional" json:"startInclusive" yaml:"startInclusive"` }
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import "github.com/aws/aws-cdk-go/awscdk" dateFilterProperty := &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }
type CfnFilter_FilterCriteriaProperty ¶
type CfnFilter_FilterCriteriaProperty struct { // `CfnFilter.FilterCriteriaProperty.AwsAccountId`. AwsAccountId interface{} `field:"optional" json:"awsAccountId" yaml:"awsAccountId"` // `CfnFilter.FilterCriteriaProperty.ComponentId`. ComponentId interface{} `field:"optional" json:"componentId" yaml:"componentId"` // `CfnFilter.FilterCriteriaProperty.ComponentType`. ComponentType interface{} `field:"optional" json:"componentType" yaml:"componentType"` // `CfnFilter.FilterCriteriaProperty.Ec2InstanceImageId`. Ec2InstanceImageId interface{} `field:"optional" json:"ec2InstanceImageId" yaml:"ec2InstanceImageId"` // `CfnFilter.FilterCriteriaProperty.Ec2InstanceSubnetId`. Ec2InstanceSubnetId interface{} `field:"optional" json:"ec2InstanceSubnetId" yaml:"ec2InstanceSubnetId"` // `CfnFilter.FilterCriteriaProperty.Ec2InstanceVpcId`. Ec2InstanceVpcId interface{} `field:"optional" json:"ec2InstanceVpcId" yaml:"ec2InstanceVpcId"` // `CfnFilter.FilterCriteriaProperty.EcrImageArchitecture`. EcrImageArchitecture interface{} `field:"optional" json:"ecrImageArchitecture" yaml:"ecrImageArchitecture"` // `CfnFilter.FilterCriteriaProperty.EcrImageHash`. EcrImageHash interface{} `field:"optional" json:"ecrImageHash" yaml:"ecrImageHash"` // `CfnFilter.FilterCriteriaProperty.EcrImagePushedAt`. EcrImagePushedAt interface{} `field:"optional" json:"ecrImagePushedAt" yaml:"ecrImagePushedAt"` // `CfnFilter.FilterCriteriaProperty.EcrImageRegistry`. EcrImageRegistry interface{} `field:"optional" json:"ecrImageRegistry" yaml:"ecrImageRegistry"` // `CfnFilter.FilterCriteriaProperty.EcrImageRepositoryName`. EcrImageRepositoryName interface{} `field:"optional" json:"ecrImageRepositoryName" yaml:"ecrImageRepositoryName"` // `CfnFilter.FilterCriteriaProperty.EcrImageTags`. EcrImageTags interface{} `field:"optional" json:"ecrImageTags" yaml:"ecrImageTags"` // `CfnFilter.FilterCriteriaProperty.FindingArn`. FindingArn interface{} `field:"optional" json:"findingArn" yaml:"findingArn"` // `CfnFilter.FilterCriteriaProperty.FindingStatus`. FindingStatus interface{} `field:"optional" json:"findingStatus" yaml:"findingStatus"` // `CfnFilter.FilterCriteriaProperty.FindingType`. FindingType interface{} `field:"optional" json:"findingType" yaml:"findingType"` // `CfnFilter.FilterCriteriaProperty.FirstObservedAt`. FirstObservedAt interface{} `field:"optional" json:"firstObservedAt" yaml:"firstObservedAt"` // `CfnFilter.FilterCriteriaProperty.InspectorScore`. InspectorScore interface{} `field:"optional" json:"inspectorScore" yaml:"inspectorScore"` // `CfnFilter.FilterCriteriaProperty.LastObservedAt`. LastObservedAt interface{} `field:"optional" json:"lastObservedAt" yaml:"lastObservedAt"` // `CfnFilter.FilterCriteriaProperty.NetworkProtocol`. NetworkProtocol interface{} `field:"optional" json:"networkProtocol" yaml:"networkProtocol"` // `CfnFilter.FilterCriteriaProperty.PortRange`. PortRange interface{} `field:"optional" json:"portRange" yaml:"portRange"` // `CfnFilter.FilterCriteriaProperty.RelatedVulnerabilities`. RelatedVulnerabilities interface{} `field:"optional" json:"relatedVulnerabilities" yaml:"relatedVulnerabilities"` // `CfnFilter.FilterCriteriaProperty.ResourceId`. ResourceId interface{} `field:"optional" json:"resourceId" yaml:"resourceId"` // `CfnFilter.FilterCriteriaProperty.ResourceTags`. ResourceTags interface{} `field:"optional" json:"resourceTags" yaml:"resourceTags"` // `CfnFilter.FilterCriteriaProperty.ResourceType`. ResourceType interface{} `field:"optional" json:"resourceType" yaml:"resourceType"` // `CfnFilter.FilterCriteriaProperty.Severity`. Severity interface{} `field:"optional" json:"severity" yaml:"severity"` // `CfnFilter.FilterCriteriaProperty.Title`. Title interface{} `field:"optional" json:"title" yaml:"title"` // `CfnFilter.FilterCriteriaProperty.UpdatedAt`. UpdatedAt interface{} `field:"optional" json:"updatedAt" yaml:"updatedAt"` // `CfnFilter.FilterCriteriaProperty.VendorSeverity`. VendorSeverity interface{} `field:"optional" json:"vendorSeverity" yaml:"vendorSeverity"` // `CfnFilter.FilterCriteriaProperty.VulnerabilityId`. VulnerabilityId interface{} `field:"optional" json:"vulnerabilityId" yaml:"vulnerabilityId"` // `CfnFilter.FilterCriteriaProperty.VulnerabilitySource`. VulnerabilitySource interface{} `field:"optional" json:"vulnerabilitySource" yaml:"vulnerabilitySource"` // `CfnFilter.FilterCriteriaProperty.VulnerablePackages`. VulnerablePackages interface{} `field:"optional" json:"vulnerablePackages" yaml:"vulnerablePackages"` }
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import "github.com/aws/aws-cdk-go/awscdk" filterCriteriaProperty := &filterCriteriaProperty{ awsAccountId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, componentId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, componentType: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ec2InstanceImageId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ec2InstanceSubnetId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ec2InstanceVpcId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageArchitecture: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageHash: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImagePushedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, ecrImageRegistry: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageRepositoryName: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, ecrImageTags: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, findingArn: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, findingStatus: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, findingType: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, firstObservedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, inspectorScore: []interface{}{ &numberFilterProperty{ lowerInclusive: jsii.Number(123), upperInclusive: jsii.Number(123), }, }, lastObservedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, networkProtocol: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, portRange: []interface{}{ &portRangeFilterProperty{ beginInclusive: jsii.Number(123), endInclusive: jsii.Number(123), }, }, relatedVulnerabilities: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, resourceId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, resourceTags: []interface{}{ &mapFilterProperty{ comparison: jsii.String("comparison"), // the properties below are optional key: jsii.String("key"), value: jsii.String("value"), }, }, resourceType: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, severity: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, title: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, updatedAt: []interface{}{ &dateFilterProperty{ endInclusive: jsii.Number(123), startInclusive: jsii.Number(123), }, }, vendorSeverity: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, vulnerabilityId: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, vulnerabilitySource: []interface{}{ &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, vulnerablePackages: []interface{}{ &packageFilterProperty{ architecture: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, epoch: &numberFilterProperty{ lowerInclusive: jsii.Number(123), upperInclusive: jsii.Number(123), }, name: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, release: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, sourceLayerHash: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, version: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }, }, }
type CfnFilter_MapFilterProperty ¶
type CfnFilter_MapFilterProperty struct { // `CfnFilter.MapFilterProperty.Comparison`. Comparison *string `field:"required" json:"comparison" yaml:"comparison"` // `CfnFilter.MapFilterProperty.Key`. Key *string `field:"optional" json:"key" yaml:"key"` // `CfnFilter.MapFilterProperty.Value`. Value *string `field:"optional" json:"value" yaml:"value"` }
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import "github.com/aws/aws-cdk-go/awscdk" mapFilterProperty := &mapFilterProperty{ comparison: jsii.String("comparison"), // the properties below are optional key: jsii.String("key"), value: jsii.String("value"), }
type CfnFilter_NumberFilterProperty ¶
type CfnFilter_NumberFilterProperty struct { // `CfnFilter.NumberFilterProperty.LowerInclusive`. LowerInclusive *float64 `field:"optional" json:"lowerInclusive" yaml:"lowerInclusive"` // `CfnFilter.NumberFilterProperty.UpperInclusive`. UpperInclusive *float64 `field:"optional" json:"upperInclusive" yaml:"upperInclusive"` }
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import "github.com/aws/aws-cdk-go/awscdk" numberFilterProperty := &numberFilterProperty{ lowerInclusive: jsii.Number(123), upperInclusive: jsii.Number(123), }
type CfnFilter_PackageFilterProperty ¶
type CfnFilter_PackageFilterProperty struct { // `CfnFilter.PackageFilterProperty.Architecture`. Architecture interface{} `field:"optional" json:"architecture" yaml:"architecture"` // `CfnFilter.PackageFilterProperty.Epoch`. Epoch interface{} `field:"optional" json:"epoch" yaml:"epoch"` // `CfnFilter.PackageFilterProperty.Name`. Name interface{} `field:"optional" json:"name" yaml:"name"` // `CfnFilter.PackageFilterProperty.Release`. Release interface{} `field:"optional" json:"release" yaml:"release"` // `CfnFilter.PackageFilterProperty.SourceLayerHash`. SourceLayerHash interface{} `field:"optional" json:"sourceLayerHash" yaml:"sourceLayerHash"` // `CfnFilter.PackageFilterProperty.Version`. Version interface{} `field:"optional" json:"version" yaml:"version"` }
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import "github.com/aws/aws-cdk-go/awscdk" packageFilterProperty := &packageFilterProperty{ architecture: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, epoch: &numberFilterProperty{ lowerInclusive: jsii.Number(123), upperInclusive: jsii.Number(123), }, name: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, release: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, sourceLayerHash: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, version: &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }, }
type CfnFilter_PortRangeFilterProperty ¶
type CfnFilter_PortRangeFilterProperty struct { // `CfnFilter.PortRangeFilterProperty.BeginInclusive`. BeginInclusive *float64 `field:"optional" json:"beginInclusive" yaml:"beginInclusive"` // `CfnFilter.PortRangeFilterProperty.EndInclusive`. EndInclusive *float64 `field:"optional" json:"endInclusive" yaml:"endInclusive"` }
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import "github.com/aws/aws-cdk-go/awscdk" portRangeFilterProperty := &portRangeFilterProperty{ beginInclusive: jsii.Number(123), endInclusive: jsii.Number(123), }
type CfnFilter_StringFilterProperty ¶
type CfnFilter_StringFilterProperty struct { // `CfnFilter.StringFilterProperty.Comparison`. Comparison *string `field:"required" json:"comparison" yaml:"comparison"` // `CfnFilter.StringFilterProperty.Value`. Value *string `field:"required" json:"value" yaml:"value"` }
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import "github.com/aws/aws-cdk-go/awscdk" stringFilterProperty := &stringFilterProperty{ comparison: jsii.String("comparison"), value: jsii.String("value"), }