Class: Aws::BedrockAgent::Types::DayOfMonth
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::DayOfMonth
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
DayOfMonth is a union - when making an API calls you must set exactly one of the members.
DayOfMonth is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DayOfMonth corresponding to the set member.
The day of the month on which a monthly sync runs. Specify exactly one
of dayNumber or lastDayOfMonth.
Defined Under Namespace
Classes: DayNumber, LastDayOfMonth, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#day_number ⇒ Integer
A specific day of the month, from 1 to 28.
-
#last_day_of_month ⇒ Types::LastDayOfMonth
Set this option to run the monthly sync on the last calendar day of each month.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#day_number ⇒ Integer
A specific day of the month, from 1 to 28. Values are capped at 28, so a monthly sync runs in every month, including February.
3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3236 class DayOfMonth < Struct.new( :day_number, :last_day_of_month, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DayNumber < DayOfMonth; end class LastDayOfMonth < DayOfMonth; end class Unknown < DayOfMonth; end end |
#last_day_of_month ⇒ Types::LastDayOfMonth
Set this option to run the monthly sync on the last calendar day of each month.
3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3236 class DayOfMonth < Struct.new( :day_number, :last_day_of_month, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DayNumber < DayOfMonth; end class LastDayOfMonth < DayOfMonth; end class Unknown < DayOfMonth; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3236 3237 3238 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3236 def unknown @unknown end |