Class: Aws::Macie2::Types::JobScheduleFrequency
- Inherits:
-
Struct
- Object
- Struct
- Aws::Macie2::Types::JobScheduleFrequency
- Defined in:
- gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb
Overview
Note:
When making an API call, you may pass JobScheduleFrequency data as a hash:
{
daily_schedule: {
},
monthly_schedule: {
day_of_month: 1,
},
weekly_schedule: {
day_of_week: "SUNDAY", # accepts SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
},
}
Specifies the recurrence pattern for running a classification job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#daily_schedule ⇒ Types::DailySchedule
Specifies that a classification job runs once a day, every day.
-
#monthly_schedule ⇒ Types::MonthlySchedule
Specifies a monthly recurrence pattern for running a classification job.
-
#weekly_schedule ⇒ Types::WeeklySchedule
Specifies a weekly recurrence pattern for running a classification job.
Instance Attribute Details
#daily_schedule ⇒ Types::DailySchedule
Specifies that a classification job runs once a day, every day. This is an empty object.
3266 3267 3268 3269 3270 3271 3272 |
# File 'gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb', line 3266 class JobScheduleFrequency < Struct.new( :daily_schedule, :monthly_schedule, :weekly_schedule) SENSITIVE = [] include Aws::Structure end |
#monthly_schedule ⇒ Types::MonthlySchedule
Specifies a monthly recurrence pattern for running a classification job.
3266 3267 3268 3269 3270 3271 3272 |
# File 'gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb', line 3266 class JobScheduleFrequency < Struct.new( :daily_schedule, :monthly_schedule, :weekly_schedule) SENSITIVE = [] include Aws::Structure end |
#weekly_schedule ⇒ Types::WeeklySchedule
Specifies a weekly recurrence pattern for running a classification job.
3266 3267 3268 3269 3270 3271 3272 |
# File 'gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb', line 3266 class JobScheduleFrequency < Struct.new( :daily_schedule, :monthly_schedule, :weekly_schedule) SENSITIVE = [] include Aws::Structure end |