Class: Aws::Inspector2::Types::PeriodicScanConfiguration

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

Overview

Configuration settings for periodic scans that run on a scheduled basis.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#frequencyString

The frequency at which periodic scans are performed (such as weekly or monthly).

If you don't provide the frequencyExpression Amazon Inspector chooses day for the scan to run. If you provide the frequencyExpression, the schedule must match the specified frequency.

Returns:

  • (String)


7160
7161
7162
7163
7164
7165
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 7160

class PeriodicScanConfiguration < Struct.new(
  :frequency,
  :frequency_expression)
  SENSITIVE = []
  include Aws::Structure
end

#frequency_expressionString

The schedule expression for periodic scans, in cron format.

Returns:

  • (String)


7160
7161
7162
7163
7164
7165
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 7160

class PeriodicScanConfiguration < Struct.new(
  :frequency,
  :frequency_expression)
  SENSITIVE = []
  include Aws::Structure
end