Class: AWSCDK::ConnectCampaignsv2::CfnCampaign::ProgressiveConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::ConnectCampaignsv2::CfnCampaign::ProgressiveConfigProperty
- Defined in:
- connect_campaignsv2/cfn_campaign.rb
Overview
Contains the progressive outbound mode configuration.
Instance Attribute Summary collapse
-
#bandwidth_allocation ⇒ Numeric
readonly
Bandwidth allocation for the progressive outbound mode.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(bandwidth_allocation:) ⇒ ProgressiveConfigProperty
constructor
A new instance of ProgressiveConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(bandwidth_allocation:) ⇒ ProgressiveConfigProperty
Returns a new instance of ProgressiveConfigProperty.
1397 1398 1399 1400 |
# File 'connect_campaignsv2/cfn_campaign.rb', line 1397 def initialize(bandwidth_allocation:) @bandwidth_allocation = bandwidth_allocation Jsii::Type.check_type(@bandwidth_allocation, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJudW1iZXIifQ==")), "bandwidthAllocation") end |
Instance Attribute Details
#bandwidth_allocation ⇒ Numeric (readonly)
Bandwidth allocation for the progressive outbound mode.
1406 1407 1408 |
# File 'connect_campaignsv2/cfn_campaign.rb', line 1406 def bandwidth_allocation @bandwidth_allocation end |
Class Method Details
.jsii_properties ⇒ Object
1408 1409 1410 1411 1412 |
# File 'connect_campaignsv2/cfn_campaign.rb', line 1408 def self.jsii_properties { :bandwidth_allocation => "bandwidthAllocation", } end |
Instance Method Details
#to_jsii ⇒ Object
1414 1415 1416 1417 1418 1419 1420 |
# File 'connect_campaignsv2/cfn_campaign.rb', line 1414 def to_jsii result = {} result.merge!({ "bandwidthAllocation" => @bandwidth_allocation, }) result.compact end |