Class: AWSCDK::ConnectCampaignsv2::CfnCampaign::ProgressiveConfigProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
connect_campaignsv2/cfn_campaign.rb

Overview

Contains the progressive outbound mode configuration.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bandwidth_allocation:) ⇒ ProgressiveConfigProperty

Returns a new instance of ProgressiveConfigProperty.

Parameters:

  • bandwidth_allocation (Numeric)

    Bandwidth allocation for the progressive outbound mode.



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_allocationNumeric (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_propertiesObject



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_jsiiObject



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