Class: Aws::ConnectCampaignsV2::Types::RestrictedPeriods
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCampaignsV2::Types::RestrictedPeriods
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connectcampaignsv2/types.rb
Overview
Note:
RestrictedPeriods is a union - when making an API calls you must set exactly one of the members.
Note:
RestrictedPeriods is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RestrictedPeriods corresponding to the set member.
Restricted period config
Direct Known Subclasses
Defined Under Namespace
Classes: RestrictedPeriodList, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#restricted_period_list ⇒ Array<Types::RestrictedPeriod>
List of restricted period.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#restricted_period_list ⇒ Array<Types::RestrictedPeriod>
List of restricted period
1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1800 class RestrictedPeriods < Struct.new( :restricted_period_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RestrictedPeriodList < RestrictedPeriods; end class Unknown < RestrictedPeriods; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1800 1801 1802 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1800 def unknown @unknown end |