Class: Aws::Pinpoint::Types::WriteApplicationSettingsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpoint/types.rb

Overview

Note:

When making an API call, you may pass WriteApplicationSettingsRequest data as a hash:

{
  limits: {
    daily: 1,
    total: 1,
  },
  quiet_time: {
    end: "__string",
    start: "__string",
  },
}

Creating application setting request

Instance Attribute Summary collapse

Instance Attribute Details

#limitsTypes::CampaignLimits

The default campaign limits for the app. These limits apply to each campaign for the app, unless the campaign overrides the default with limits of its own.



5026
5027
5028
5029
5030
# File 'lib/aws-sdk-pinpoint/types.rb', line 5026

class WriteApplicationSettingsRequest < Struct.new(
  :limits,
  :quiet_time)
  include Aws::Structure
end

#quiet_timeTypes::QuietTime

The default quiet time for the app. Each campaign for this app sends no messages during this time unless the campaign overrides the default with a quiet time of its own.

Returns:



5026
5027
5028
5029
5030
# File 'lib/aws-sdk-pinpoint/types.rb', line 5026

class WriteApplicationSettingsRequest < Struct.new(
  :limits,
  :quiet_time)
  include Aws::Structure
end