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
1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1619 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
1619 1620 1621 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1619 def unknown @unknown end |