Interface MonthlySchedule.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MonthlySchedule.Builder,MonthlySchedule>,SdkBuilder<MonthlySchedule.Builder,MonthlySchedule>,SdkPojo
- Enclosing class:
- MonthlySchedule
public static interface MonthlySchedule.Builder extends SdkPojo, CopyableBuilder<MonthlySchedule.Builder,MonthlySchedule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MonthlySchedule.BuilderdayOfMonth(Integer dayOfMonth)The numeric day of the month when Amazon Macie runs the job.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
dayOfMonth
MonthlySchedule.Builder dayOfMonth(Integer dayOfMonth)
The numeric day of the month when Amazon Macie runs the job. This value can be an integer from 1 through 31.
If this value exceeds the number of days in a certain month, Macie doesn't run the job that month. Macie runs the job only during months that have the specified day. For example, if this value is 31 and a month has only 30 days, Macie doesn't run the job that month. To run the job every month, specify a value that's less than 29.
- Parameters:
dayOfMonth- The numeric day of the month when Amazon Macie runs the job. This value can be an integer from 1 through 31.If this value exceeds the number of days in a certain month, Macie doesn't run the job that month. Macie runs the job only during months that have the specified day. For example, if this value is 31 and a month has only 30 days, Macie doesn't run the job that month. To run the job every month, specify a value that's less than 29.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-