Class: Aws::Inspector::Types::DurationRange

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb

Overview

This data type is used in the AssessmentTemplateFilter data type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_secondsInteger

The maximum value of the duration range. Must be less than or equal to 604800 seconds (1 week).

Returns:

  • (Integer)


1159
1160
1161
1162
1163
1164
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 1159

class DurationRange < Struct.new(
  :min_seconds,
  :max_seconds)
  SENSITIVE = []
  include Aws::Structure
end

#min_secondsInteger

The minimum value of the duration range. Must be greater than zero.

Returns:

  • (Integer)


1159
1160
1161
1162
1163
1164
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 1159

class DurationRange < Struct.new(
  :min_seconds,
  :max_seconds)
  SENSITIVE = []
  include Aws::Structure
end