aws-sdk-pinpoint 1.67.0 → 1.68.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0a17fef871777b71a47bb02b882f7522827cbba26ac7cdee8ebef04f876bf52b
4
- data.tar.gz: afbd9b005d995b1b4bf5037d421a7e3861164633d589258b864a45724fec23a6
3
+ metadata.gz: e2f46af8e82b830b231a1b56cd372cbf1be4636b754a8aa2f92173efbfd1bfc2
4
+ data.tar.gz: ae7bc41704ce7efd6e1939c5344b1978af8ea7ec0d9aa49ae04936c09a8ea88f
5
5
  SHA512:
6
- metadata.gz: 2355c1893cc2c944995ad7ec4f69c3de00f90e8d3a77ff24b704299f7f6d914607b3d4b4f9cb9fe05b578257d8491627486af3c1c5f0a61e0e2e5f5e04b011ff
7
- data.tar.gz: 61d6e4e31b2fa1514a37f0dce1ccbe28cae0ea81c8eb54cf7398b4424a9d9c97ce61ff25563964d5a4f07759cfbb5a6aa388f8dcdfb6fdcefa90b488f83ab2cf
6
+ metadata.gz: 34b0c553ff5bbaf9c6c6f8d23b1e00cfed5fadbe47620980d2e8a6991b3dc5769a36825ff06734ea93b0bf03f4160a24263354912d90a24dcbed1f54c1fbd581
7
+ data.tar.gz: 48d229b1cd6f2d83d7ee05e1a2fc50544a899c9be06d75bdf1893b2fd16d6d0d21730891efa2dc5574a5258180fe077c402126d28befb7e8e0828f5cbf615584
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2022-08-08)
5
+ ------------------
6
+
7
+ * Feature - Adds support for Advance Quiet Time in Journeys. Adds RefreshOnSegmentUpdate and WaitForQuietTime to JourneyResponse.
8
+
4
9
  1.67.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -1788,6 +1788,86 @@ module Aws::Pinpoint
1788
1788
  # connect_campaign_arn: "__string",
1789
1789
  # connect_campaign_execution_role_arn: "__string",
1790
1790
  # },
1791
+ # sending_schedule: false,
1792
+ # open_hours: {
1793
+ # email: {
1794
+ # "MONDAY" => [
1795
+ # {
1796
+ # start_time: "__string",
1797
+ # end_time: "__string",
1798
+ # },
1799
+ # ],
1800
+ # },
1801
+ # sms: {
1802
+ # "MONDAY" => [
1803
+ # {
1804
+ # start_time: "__string",
1805
+ # end_time: "__string",
1806
+ # },
1807
+ # ],
1808
+ # },
1809
+ # push: {
1810
+ # "MONDAY" => [
1811
+ # {
1812
+ # start_time: "__string",
1813
+ # end_time: "__string",
1814
+ # },
1815
+ # ],
1816
+ # },
1817
+ # voice: {
1818
+ # "MONDAY" => [
1819
+ # {
1820
+ # start_time: "__string",
1821
+ # end_time: "__string",
1822
+ # },
1823
+ # ],
1824
+ # },
1825
+ # custom: {
1826
+ # "MONDAY" => [
1827
+ # {
1828
+ # start_time: "__string",
1829
+ # end_time: "__string",
1830
+ # },
1831
+ # ],
1832
+ # },
1833
+ # },
1834
+ # closed_days: {
1835
+ # email: [
1836
+ # {
1837
+ # name: "__string",
1838
+ # start_date_time: "__string",
1839
+ # end_date_time: "__string",
1840
+ # },
1841
+ # ],
1842
+ # sms: [
1843
+ # {
1844
+ # name: "__string",
1845
+ # start_date_time: "__string",
1846
+ # end_date_time: "__string",
1847
+ # },
1848
+ # ],
1849
+ # push: [
1850
+ # {
1851
+ # name: "__string",
1852
+ # start_date_time: "__string",
1853
+ # end_date_time: "__string",
1854
+ # },
1855
+ # ],
1856
+ # voice: [
1857
+ # {
1858
+ # name: "__string",
1859
+ # start_date_time: "__string",
1860
+ # end_date_time: "__string",
1861
+ # },
1862
+ # ],
1863
+ # custom: [
1864
+ # {
1865
+ # name: "__string",
1866
+ # start_date_time: "__string",
1867
+ # end_date_time: "__string",
1868
+ # },
1869
+ # ],
1870
+ # },
1791
1871
  # },
1792
1872
  # })
1793
1873
  #
@@ -1970,8 +2050,51 @@ module Aws::Pinpoint
1970
2050
  # resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
1971
2051
  # resp.journey_response.tags #=> Hash
1972
2052
  # resp.journey_response.tags["__string"] #=> String
2053
+ # resp.journey_response.wait_for_quiet_time #=> Boolean
2054
+ # resp.journey_response.refresh_on_segment_update #=> Boolean
1973
2055
  # resp.journey_response.journey_channel_settings.connect_campaign_arn #=> String
1974
2056
  # resp.journey_response.journey_channel_settings.connect_campaign_execution_role_arn #=> String
2057
+ # resp.journey_response.sending_schedule #=> Boolean
2058
+ # resp.journey_response.open_hours.email #=> Hash
2059
+ # resp.journey_response.open_hours.email["DayOfWeek"] #=> Array
2060
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].start_time #=> String
2061
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].end_time #=> String
2062
+ # resp.journey_response.open_hours.sms #=> Hash
2063
+ # resp.journey_response.open_hours.sms["DayOfWeek"] #=> Array
2064
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].start_time #=> String
2065
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].end_time #=> String
2066
+ # resp.journey_response.open_hours.push #=> Hash
2067
+ # resp.journey_response.open_hours.push["DayOfWeek"] #=> Array
2068
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].start_time #=> String
2069
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].end_time #=> String
2070
+ # resp.journey_response.open_hours.voice #=> Hash
2071
+ # resp.journey_response.open_hours.voice["DayOfWeek"] #=> Array
2072
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].start_time #=> String
2073
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].end_time #=> String
2074
+ # resp.journey_response.open_hours.custom #=> Hash
2075
+ # resp.journey_response.open_hours.custom["DayOfWeek"] #=> Array
2076
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].start_time #=> String
2077
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].end_time #=> String
2078
+ # resp.journey_response.closed_days.email #=> Array
2079
+ # resp.journey_response.closed_days.email[0].name #=> String
2080
+ # resp.journey_response.closed_days.email[0].start_date_time #=> String
2081
+ # resp.journey_response.closed_days.email[0].end_date_time #=> String
2082
+ # resp.journey_response.closed_days.sms #=> Array
2083
+ # resp.journey_response.closed_days.sms[0].name #=> String
2084
+ # resp.journey_response.closed_days.sms[0].start_date_time #=> String
2085
+ # resp.journey_response.closed_days.sms[0].end_date_time #=> String
2086
+ # resp.journey_response.closed_days.push #=> Array
2087
+ # resp.journey_response.closed_days.push[0].name #=> String
2088
+ # resp.journey_response.closed_days.push[0].start_date_time #=> String
2089
+ # resp.journey_response.closed_days.push[0].end_date_time #=> String
2090
+ # resp.journey_response.closed_days.voice #=> Array
2091
+ # resp.journey_response.closed_days.voice[0].name #=> String
2092
+ # resp.journey_response.closed_days.voice[0].start_date_time #=> String
2093
+ # resp.journey_response.closed_days.voice[0].end_date_time #=> String
2094
+ # resp.journey_response.closed_days.custom #=> Array
2095
+ # resp.journey_response.closed_days.custom[0].name #=> String
2096
+ # resp.journey_response.closed_days.custom[0].start_date_time #=> String
2097
+ # resp.journey_response.closed_days.custom[0].end_date_time #=> String
1975
2098
  #
1976
2099
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/CreateJourney AWS API Documentation
1977
2100
  #
@@ -3531,8 +3654,51 @@ module Aws::Pinpoint
3531
3654
  # resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
3532
3655
  # resp.journey_response.tags #=> Hash
3533
3656
  # resp.journey_response.tags["__string"] #=> String
3657
+ # resp.journey_response.wait_for_quiet_time #=> Boolean
3658
+ # resp.journey_response.refresh_on_segment_update #=> Boolean
3534
3659
  # resp.journey_response.journey_channel_settings.connect_campaign_arn #=> String
3535
3660
  # resp.journey_response.journey_channel_settings.connect_campaign_execution_role_arn #=> String
3661
+ # resp.journey_response.sending_schedule #=> Boolean
3662
+ # resp.journey_response.open_hours.email #=> Hash
3663
+ # resp.journey_response.open_hours.email["DayOfWeek"] #=> Array
3664
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].start_time #=> String
3665
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].end_time #=> String
3666
+ # resp.journey_response.open_hours.sms #=> Hash
3667
+ # resp.journey_response.open_hours.sms["DayOfWeek"] #=> Array
3668
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].start_time #=> String
3669
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].end_time #=> String
3670
+ # resp.journey_response.open_hours.push #=> Hash
3671
+ # resp.journey_response.open_hours.push["DayOfWeek"] #=> Array
3672
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].start_time #=> String
3673
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].end_time #=> String
3674
+ # resp.journey_response.open_hours.voice #=> Hash
3675
+ # resp.journey_response.open_hours.voice["DayOfWeek"] #=> Array
3676
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].start_time #=> String
3677
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].end_time #=> String
3678
+ # resp.journey_response.open_hours.custom #=> Hash
3679
+ # resp.journey_response.open_hours.custom["DayOfWeek"] #=> Array
3680
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].start_time #=> String
3681
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].end_time #=> String
3682
+ # resp.journey_response.closed_days.email #=> Array
3683
+ # resp.journey_response.closed_days.email[0].name #=> String
3684
+ # resp.journey_response.closed_days.email[0].start_date_time #=> String
3685
+ # resp.journey_response.closed_days.email[0].end_date_time #=> String
3686
+ # resp.journey_response.closed_days.sms #=> Array
3687
+ # resp.journey_response.closed_days.sms[0].name #=> String
3688
+ # resp.journey_response.closed_days.sms[0].start_date_time #=> String
3689
+ # resp.journey_response.closed_days.sms[0].end_date_time #=> String
3690
+ # resp.journey_response.closed_days.push #=> Array
3691
+ # resp.journey_response.closed_days.push[0].name #=> String
3692
+ # resp.journey_response.closed_days.push[0].start_date_time #=> String
3693
+ # resp.journey_response.closed_days.push[0].end_date_time #=> String
3694
+ # resp.journey_response.closed_days.voice #=> Array
3695
+ # resp.journey_response.closed_days.voice[0].name #=> String
3696
+ # resp.journey_response.closed_days.voice[0].start_date_time #=> String
3697
+ # resp.journey_response.closed_days.voice[0].end_date_time #=> String
3698
+ # resp.journey_response.closed_days.custom #=> Array
3699
+ # resp.journey_response.closed_days.custom[0].name #=> String
3700
+ # resp.journey_response.closed_days.custom[0].start_date_time #=> String
3701
+ # resp.journey_response.closed_days.custom[0].end_date_time #=> String
3536
3702
  #
3537
3703
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/DeleteJourney AWS API Documentation
3538
3704
  #
@@ -6638,8 +6804,51 @@ module Aws::Pinpoint
6638
6804
  # resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
6639
6805
  # resp.journey_response.tags #=> Hash
6640
6806
  # resp.journey_response.tags["__string"] #=> String
6807
+ # resp.journey_response.wait_for_quiet_time #=> Boolean
6808
+ # resp.journey_response.refresh_on_segment_update #=> Boolean
6641
6809
  # resp.journey_response.journey_channel_settings.connect_campaign_arn #=> String
6642
6810
  # resp.journey_response.journey_channel_settings.connect_campaign_execution_role_arn #=> String
6811
+ # resp.journey_response.sending_schedule #=> Boolean
6812
+ # resp.journey_response.open_hours.email #=> Hash
6813
+ # resp.journey_response.open_hours.email["DayOfWeek"] #=> Array
6814
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].start_time #=> String
6815
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].end_time #=> String
6816
+ # resp.journey_response.open_hours.sms #=> Hash
6817
+ # resp.journey_response.open_hours.sms["DayOfWeek"] #=> Array
6818
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].start_time #=> String
6819
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].end_time #=> String
6820
+ # resp.journey_response.open_hours.push #=> Hash
6821
+ # resp.journey_response.open_hours.push["DayOfWeek"] #=> Array
6822
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].start_time #=> String
6823
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].end_time #=> String
6824
+ # resp.journey_response.open_hours.voice #=> Hash
6825
+ # resp.journey_response.open_hours.voice["DayOfWeek"] #=> Array
6826
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].start_time #=> String
6827
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].end_time #=> String
6828
+ # resp.journey_response.open_hours.custom #=> Hash
6829
+ # resp.journey_response.open_hours.custom["DayOfWeek"] #=> Array
6830
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].start_time #=> String
6831
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].end_time #=> String
6832
+ # resp.journey_response.closed_days.email #=> Array
6833
+ # resp.journey_response.closed_days.email[0].name #=> String
6834
+ # resp.journey_response.closed_days.email[0].start_date_time #=> String
6835
+ # resp.journey_response.closed_days.email[0].end_date_time #=> String
6836
+ # resp.journey_response.closed_days.sms #=> Array
6837
+ # resp.journey_response.closed_days.sms[0].name #=> String
6838
+ # resp.journey_response.closed_days.sms[0].start_date_time #=> String
6839
+ # resp.journey_response.closed_days.sms[0].end_date_time #=> String
6840
+ # resp.journey_response.closed_days.push #=> Array
6841
+ # resp.journey_response.closed_days.push[0].name #=> String
6842
+ # resp.journey_response.closed_days.push[0].start_date_time #=> String
6843
+ # resp.journey_response.closed_days.push[0].end_date_time #=> String
6844
+ # resp.journey_response.closed_days.voice #=> Array
6845
+ # resp.journey_response.closed_days.voice[0].name #=> String
6846
+ # resp.journey_response.closed_days.voice[0].start_date_time #=> String
6847
+ # resp.journey_response.closed_days.voice[0].end_date_time #=> String
6848
+ # resp.journey_response.closed_days.custom #=> Array
6849
+ # resp.journey_response.closed_days.custom[0].name #=> String
6850
+ # resp.journey_response.closed_days.custom[0].start_date_time #=> String
6851
+ # resp.journey_response.closed_days.custom[0].end_date_time #=> String
6643
6852
  #
6644
6853
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/GetJourney AWS API Documentation
6645
6854
  #
@@ -8039,8 +8248,51 @@ module Aws::Pinpoint
8039
8248
  # resp.journeys_response.item[0].state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
8040
8249
  # resp.journeys_response.item[0].tags #=> Hash
8041
8250
  # resp.journeys_response.item[0].tags["__string"] #=> String
8251
+ # resp.journeys_response.item[0].wait_for_quiet_time #=> Boolean
8252
+ # resp.journeys_response.item[0].refresh_on_segment_update #=> Boolean
8042
8253
  # resp.journeys_response.item[0].journey_channel_settings.connect_campaign_arn #=> String
8043
8254
  # resp.journeys_response.item[0].journey_channel_settings.connect_campaign_execution_role_arn #=> String
8255
+ # resp.journeys_response.item[0].sending_schedule #=> Boolean
8256
+ # resp.journeys_response.item[0].open_hours.email #=> Hash
8257
+ # resp.journeys_response.item[0].open_hours.email["DayOfWeek"] #=> Array
8258
+ # resp.journeys_response.item[0].open_hours.email["DayOfWeek"][0].start_time #=> String
8259
+ # resp.journeys_response.item[0].open_hours.email["DayOfWeek"][0].end_time #=> String
8260
+ # resp.journeys_response.item[0].open_hours.sms #=> Hash
8261
+ # resp.journeys_response.item[0].open_hours.sms["DayOfWeek"] #=> Array
8262
+ # resp.journeys_response.item[0].open_hours.sms["DayOfWeek"][0].start_time #=> String
8263
+ # resp.journeys_response.item[0].open_hours.sms["DayOfWeek"][0].end_time #=> String
8264
+ # resp.journeys_response.item[0].open_hours.push #=> Hash
8265
+ # resp.journeys_response.item[0].open_hours.push["DayOfWeek"] #=> Array
8266
+ # resp.journeys_response.item[0].open_hours.push["DayOfWeek"][0].start_time #=> String
8267
+ # resp.journeys_response.item[0].open_hours.push["DayOfWeek"][0].end_time #=> String
8268
+ # resp.journeys_response.item[0].open_hours.voice #=> Hash
8269
+ # resp.journeys_response.item[0].open_hours.voice["DayOfWeek"] #=> Array
8270
+ # resp.journeys_response.item[0].open_hours.voice["DayOfWeek"][0].start_time #=> String
8271
+ # resp.journeys_response.item[0].open_hours.voice["DayOfWeek"][0].end_time #=> String
8272
+ # resp.journeys_response.item[0].open_hours.custom #=> Hash
8273
+ # resp.journeys_response.item[0].open_hours.custom["DayOfWeek"] #=> Array
8274
+ # resp.journeys_response.item[0].open_hours.custom["DayOfWeek"][0].start_time #=> String
8275
+ # resp.journeys_response.item[0].open_hours.custom["DayOfWeek"][0].end_time #=> String
8276
+ # resp.journeys_response.item[0].closed_days.email #=> Array
8277
+ # resp.journeys_response.item[0].closed_days.email[0].name #=> String
8278
+ # resp.journeys_response.item[0].closed_days.email[0].start_date_time #=> String
8279
+ # resp.journeys_response.item[0].closed_days.email[0].end_date_time #=> String
8280
+ # resp.journeys_response.item[0].closed_days.sms #=> Array
8281
+ # resp.journeys_response.item[0].closed_days.sms[0].name #=> String
8282
+ # resp.journeys_response.item[0].closed_days.sms[0].start_date_time #=> String
8283
+ # resp.journeys_response.item[0].closed_days.sms[0].end_date_time #=> String
8284
+ # resp.journeys_response.item[0].closed_days.push #=> Array
8285
+ # resp.journeys_response.item[0].closed_days.push[0].name #=> String
8286
+ # resp.journeys_response.item[0].closed_days.push[0].start_date_time #=> String
8287
+ # resp.journeys_response.item[0].closed_days.push[0].end_date_time #=> String
8288
+ # resp.journeys_response.item[0].closed_days.voice #=> Array
8289
+ # resp.journeys_response.item[0].closed_days.voice[0].name #=> String
8290
+ # resp.journeys_response.item[0].closed_days.voice[0].start_date_time #=> String
8291
+ # resp.journeys_response.item[0].closed_days.voice[0].end_date_time #=> String
8292
+ # resp.journeys_response.item[0].closed_days.custom #=> Array
8293
+ # resp.journeys_response.item[0].closed_days.custom[0].name #=> String
8294
+ # resp.journeys_response.item[0].closed_days.custom[0].start_date_time #=> String
8295
+ # resp.journeys_response.item[0].closed_days.custom[0].end_date_time #=> String
8044
8296
  # resp.journeys_response.next_token #=> String
8045
8297
  #
8046
8298
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/ListJourneys AWS API Documentation
@@ -10930,6 +11182,86 @@ module Aws::Pinpoint
10930
11182
  # connect_campaign_arn: "__string",
10931
11183
  # connect_campaign_execution_role_arn: "__string",
10932
11184
  # },
11185
+ # sending_schedule: false,
11186
+ # open_hours: {
11187
+ # email: {
11188
+ # "MONDAY" => [
11189
+ # {
11190
+ # start_time: "__string",
11191
+ # end_time: "__string",
11192
+ # },
11193
+ # ],
11194
+ # },
11195
+ # sms: {
11196
+ # "MONDAY" => [
11197
+ # {
11198
+ # start_time: "__string",
11199
+ # end_time: "__string",
11200
+ # },
11201
+ # ],
11202
+ # },
11203
+ # push: {
11204
+ # "MONDAY" => [
11205
+ # {
11206
+ # start_time: "__string",
11207
+ # end_time: "__string",
11208
+ # },
11209
+ # ],
11210
+ # },
11211
+ # voice: {
11212
+ # "MONDAY" => [
11213
+ # {
11214
+ # start_time: "__string",
11215
+ # end_time: "__string",
11216
+ # },
11217
+ # ],
11218
+ # },
11219
+ # custom: {
11220
+ # "MONDAY" => [
11221
+ # {
11222
+ # start_time: "__string",
11223
+ # end_time: "__string",
11224
+ # },
11225
+ # ],
11226
+ # },
11227
+ # },
11228
+ # closed_days: {
11229
+ # email: [
11230
+ # {
11231
+ # name: "__string",
11232
+ # start_date_time: "__string",
11233
+ # end_date_time: "__string",
11234
+ # },
11235
+ # ],
11236
+ # sms: [
11237
+ # {
11238
+ # name: "__string",
11239
+ # start_date_time: "__string",
11240
+ # end_date_time: "__string",
11241
+ # },
11242
+ # ],
11243
+ # push: [
11244
+ # {
11245
+ # name: "__string",
11246
+ # start_date_time: "__string",
11247
+ # end_date_time: "__string",
11248
+ # },
11249
+ # ],
11250
+ # voice: [
11251
+ # {
11252
+ # name: "__string",
11253
+ # start_date_time: "__string",
11254
+ # end_date_time: "__string",
11255
+ # },
11256
+ # ],
11257
+ # custom: [
11258
+ # {
11259
+ # name: "__string",
11260
+ # start_date_time: "__string",
11261
+ # end_date_time: "__string",
11262
+ # },
11263
+ # ],
11264
+ # },
10933
11265
  # },
10934
11266
  # })
10935
11267
  #
@@ -11112,8 +11444,51 @@ module Aws::Pinpoint
11112
11444
  # resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
11113
11445
  # resp.journey_response.tags #=> Hash
11114
11446
  # resp.journey_response.tags["__string"] #=> String
11447
+ # resp.journey_response.wait_for_quiet_time #=> Boolean
11448
+ # resp.journey_response.refresh_on_segment_update #=> Boolean
11115
11449
  # resp.journey_response.journey_channel_settings.connect_campaign_arn #=> String
11116
11450
  # resp.journey_response.journey_channel_settings.connect_campaign_execution_role_arn #=> String
11451
+ # resp.journey_response.sending_schedule #=> Boolean
11452
+ # resp.journey_response.open_hours.email #=> Hash
11453
+ # resp.journey_response.open_hours.email["DayOfWeek"] #=> Array
11454
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].start_time #=> String
11455
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].end_time #=> String
11456
+ # resp.journey_response.open_hours.sms #=> Hash
11457
+ # resp.journey_response.open_hours.sms["DayOfWeek"] #=> Array
11458
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].start_time #=> String
11459
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].end_time #=> String
11460
+ # resp.journey_response.open_hours.push #=> Hash
11461
+ # resp.journey_response.open_hours.push["DayOfWeek"] #=> Array
11462
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].start_time #=> String
11463
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].end_time #=> String
11464
+ # resp.journey_response.open_hours.voice #=> Hash
11465
+ # resp.journey_response.open_hours.voice["DayOfWeek"] #=> Array
11466
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].start_time #=> String
11467
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].end_time #=> String
11468
+ # resp.journey_response.open_hours.custom #=> Hash
11469
+ # resp.journey_response.open_hours.custom["DayOfWeek"] #=> Array
11470
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].start_time #=> String
11471
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].end_time #=> String
11472
+ # resp.journey_response.closed_days.email #=> Array
11473
+ # resp.journey_response.closed_days.email[0].name #=> String
11474
+ # resp.journey_response.closed_days.email[0].start_date_time #=> String
11475
+ # resp.journey_response.closed_days.email[0].end_date_time #=> String
11476
+ # resp.journey_response.closed_days.sms #=> Array
11477
+ # resp.journey_response.closed_days.sms[0].name #=> String
11478
+ # resp.journey_response.closed_days.sms[0].start_date_time #=> String
11479
+ # resp.journey_response.closed_days.sms[0].end_date_time #=> String
11480
+ # resp.journey_response.closed_days.push #=> Array
11481
+ # resp.journey_response.closed_days.push[0].name #=> String
11482
+ # resp.journey_response.closed_days.push[0].start_date_time #=> String
11483
+ # resp.journey_response.closed_days.push[0].end_date_time #=> String
11484
+ # resp.journey_response.closed_days.voice #=> Array
11485
+ # resp.journey_response.closed_days.voice[0].name #=> String
11486
+ # resp.journey_response.closed_days.voice[0].start_date_time #=> String
11487
+ # resp.journey_response.closed_days.voice[0].end_date_time #=> String
11488
+ # resp.journey_response.closed_days.custom #=> Array
11489
+ # resp.journey_response.closed_days.custom[0].name #=> String
11490
+ # resp.journey_response.closed_days.custom[0].start_date_time #=> String
11491
+ # resp.journey_response.closed_days.custom[0].end_date_time #=> String
11117
11492
  #
11118
11493
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/UpdateJourney AWS API Documentation
11119
11494
  #
@@ -11326,8 +11701,51 @@ module Aws::Pinpoint
11326
11701
  # resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
11327
11702
  # resp.journey_response.tags #=> Hash
11328
11703
  # resp.journey_response.tags["__string"] #=> String
11704
+ # resp.journey_response.wait_for_quiet_time #=> Boolean
11705
+ # resp.journey_response.refresh_on_segment_update #=> Boolean
11329
11706
  # resp.journey_response.journey_channel_settings.connect_campaign_arn #=> String
11330
11707
  # resp.journey_response.journey_channel_settings.connect_campaign_execution_role_arn #=> String
11708
+ # resp.journey_response.sending_schedule #=> Boolean
11709
+ # resp.journey_response.open_hours.email #=> Hash
11710
+ # resp.journey_response.open_hours.email["DayOfWeek"] #=> Array
11711
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].start_time #=> String
11712
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].end_time #=> String
11713
+ # resp.journey_response.open_hours.sms #=> Hash
11714
+ # resp.journey_response.open_hours.sms["DayOfWeek"] #=> Array
11715
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].start_time #=> String
11716
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].end_time #=> String
11717
+ # resp.journey_response.open_hours.push #=> Hash
11718
+ # resp.journey_response.open_hours.push["DayOfWeek"] #=> Array
11719
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].start_time #=> String
11720
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].end_time #=> String
11721
+ # resp.journey_response.open_hours.voice #=> Hash
11722
+ # resp.journey_response.open_hours.voice["DayOfWeek"] #=> Array
11723
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].start_time #=> String
11724
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].end_time #=> String
11725
+ # resp.journey_response.open_hours.custom #=> Hash
11726
+ # resp.journey_response.open_hours.custom["DayOfWeek"] #=> Array
11727
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].start_time #=> String
11728
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].end_time #=> String
11729
+ # resp.journey_response.closed_days.email #=> Array
11730
+ # resp.journey_response.closed_days.email[0].name #=> String
11731
+ # resp.journey_response.closed_days.email[0].start_date_time #=> String
11732
+ # resp.journey_response.closed_days.email[0].end_date_time #=> String
11733
+ # resp.journey_response.closed_days.sms #=> Array
11734
+ # resp.journey_response.closed_days.sms[0].name #=> String
11735
+ # resp.journey_response.closed_days.sms[0].start_date_time #=> String
11736
+ # resp.journey_response.closed_days.sms[0].end_date_time #=> String
11737
+ # resp.journey_response.closed_days.push #=> Array
11738
+ # resp.journey_response.closed_days.push[0].name #=> String
11739
+ # resp.journey_response.closed_days.push[0].start_date_time #=> String
11740
+ # resp.journey_response.closed_days.push[0].end_date_time #=> String
11741
+ # resp.journey_response.closed_days.voice #=> Array
11742
+ # resp.journey_response.closed_days.voice[0].name #=> String
11743
+ # resp.journey_response.closed_days.voice[0].start_date_time #=> String
11744
+ # resp.journey_response.closed_days.voice[0].end_date_time #=> String
11745
+ # resp.journey_response.closed_days.custom #=> Array
11746
+ # resp.journey_response.closed_days.custom[0].name #=> String
11747
+ # resp.journey_response.closed_days.custom[0].start_date_time #=> String
11748
+ # resp.journey_response.closed_days.custom[0].end_date_time #=> String
11331
11749
  #
11332
11750
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/UpdateJourneyState AWS API Documentation
11333
11751
  #
@@ -12056,7 +12474,7 @@ module Aws::Pinpoint
12056
12474
  params: params,
12057
12475
  config: config)
12058
12476
  context[:gem_name] = 'aws-sdk-pinpoint'
12059
- context[:gem_version] = '1.67.0'
12477
+ context[:gem_version] = '1.68.0'
12060
12478
  Seahorse::Client::Request.new(handlers, context)
12061
12479
  end
12062
12480
 
@@ -61,6 +61,8 @@ module Aws::Pinpoint
61
61
  ChannelResponse = Shapes::StructureShape.new(name: 'ChannelResponse')
62
62
  ChannelType = Shapes::StringShape.new(name: 'ChannelType')
63
63
  ChannelsResponse = Shapes::StructureShape.new(name: 'ChannelsResponse')
64
+ ClosedDays = Shapes::StructureShape.new(name: 'ClosedDays')
65
+ ClosedDaysRule = Shapes::StructureShape.new(name: 'ClosedDaysRule')
64
66
  Condition = Shapes::StructureShape.new(name: 'Condition')
65
67
  ConditionalSplitActivity = Shapes::StructureShape.new(name: 'ConditionalSplitActivity')
66
68
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
@@ -94,6 +96,7 @@ module Aws::Pinpoint
94
96
  CreateVoiceTemplateResponse = Shapes::StructureShape.new(name: 'CreateVoiceTemplateResponse')
95
97
  CustomDeliveryConfiguration = Shapes::StructureShape.new(name: 'CustomDeliveryConfiguration')
96
98
  CustomMessageActivity = Shapes::StructureShape.new(name: 'CustomMessageActivity')
99
+ DayOfWeek = Shapes::StringShape.new(name: 'DayOfWeek')
97
100
  DefaultButtonConfiguration = Shapes::StructureShape.new(name: 'DefaultButtonConfiguration')
98
101
  DefaultMessage = Shapes::StructureShape.new(name: 'DefaultMessage')
99
102
  DefaultPushNotificationMessage = Shapes::StructureShape.new(name: 'DefaultPushNotificationMessage')
@@ -318,6 +321,7 @@ module Aws::Pinpoint
318
321
  ListOfActivityResponse = Shapes::ListShape.new(name: 'ListOfActivityResponse')
319
322
  ListOfApplicationResponse = Shapes::ListShape.new(name: 'ListOfApplicationResponse')
320
323
  ListOfCampaignResponse = Shapes::ListShape.new(name: 'ListOfCampaignResponse')
324
+ ListOfClosedDaysRules = Shapes::ListShape.new(name: 'ListOfClosedDaysRules')
321
325
  ListOfEndpointBatchItem = Shapes::ListShape.new(name: 'ListOfEndpointBatchItem')
322
326
  ListOfEndpointResponse = Shapes::ListShape.new(name: 'ListOfEndpointResponse')
323
327
  ListOfExportJobResponse = Shapes::ListShape.new(name: 'ListOfExportJobResponse')
@@ -326,6 +330,7 @@ module Aws::Pinpoint
326
330
  ListOfInAppMessageContent = Shapes::ListShape.new(name: 'ListOfInAppMessageContent')
327
331
  ListOfJourneyResponse = Shapes::ListShape.new(name: 'ListOfJourneyResponse')
328
332
  ListOfMultiConditionalBranch = Shapes::ListShape.new(name: 'ListOfMultiConditionalBranch')
333
+ ListOfOpenHoursRules = Shapes::ListShape.new(name: 'ListOfOpenHoursRules')
329
334
  ListOfRandomSplitEntry = Shapes::ListShape.new(name: 'ListOfRandomSplitEntry')
330
335
  ListOfRecommenderConfigurationResponse = Shapes::ListShape.new(name: 'ListOfRecommenderConfigurationResponse')
331
336
  ListOfResultRow = Shapes::ListShape.new(name: 'ListOfResultRow')
@@ -358,6 +363,7 @@ module Aws::Pinpoint
358
363
  MapOfEventItemResponse = Shapes::MapShape.new(name: 'MapOfEventItemResponse')
359
364
  MapOfEventsBatch = Shapes::MapShape.new(name: 'MapOfEventsBatch')
360
365
  MapOfItemResponse = Shapes::MapShape.new(name: 'MapOfItemResponse')
366
+ MapOfListOfOpenHoursRules = Shapes::MapShape.new(name: 'MapOfListOfOpenHoursRules')
361
367
  MapOfListOf__string = Shapes::MapShape.new(name: 'MapOfListOf__string')
362
368
  MapOfMapOfEndpointMessageResult = Shapes::MapShape.new(name: 'MapOfMapOfEndpointMessageResult')
363
369
  MapOfMessageResult = Shapes::MapShape.new(name: 'MapOfMessageResult')
@@ -380,6 +386,8 @@ module Aws::Pinpoint
380
386
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
381
387
  NumberValidateRequest = Shapes::StructureShape.new(name: 'NumberValidateRequest')
382
388
  NumberValidateResponse = Shapes::StructureShape.new(name: 'NumberValidateResponse')
389
+ OpenHours = Shapes::StructureShape.new(name: 'OpenHours')
390
+ OpenHoursRule = Shapes::StructureShape.new(name: 'OpenHoursRule')
383
391
  Operator = Shapes::StringShape.new(name: 'Operator')
384
392
  OverrideButtonConfiguration = Shapes::StructureShape.new(name: 'OverrideButtonConfiguration')
385
393
  PayloadTooLargeException = Shapes::StructureShape.new(name: 'PayloadTooLargeException')
@@ -915,6 +923,18 @@ module Aws::Pinpoint
915
923
  ChannelsResponse.add_member(:channels, Shapes::ShapeRef.new(shape: MapOfChannelResponse, required: true, location_name: "Channels"))
916
924
  ChannelsResponse.struct_class = Types::ChannelsResponse
917
925
 
926
+ ClosedDays.add_member(:email, Shapes::ShapeRef.new(shape: ListOfClosedDaysRules, location_name: "EMAIL"))
927
+ ClosedDays.add_member(:sms, Shapes::ShapeRef.new(shape: ListOfClosedDaysRules, location_name: "SMS"))
928
+ ClosedDays.add_member(:push, Shapes::ShapeRef.new(shape: ListOfClosedDaysRules, location_name: "PUSH"))
929
+ ClosedDays.add_member(:voice, Shapes::ShapeRef.new(shape: ListOfClosedDaysRules, location_name: "VOICE"))
930
+ ClosedDays.add_member(:custom, Shapes::ShapeRef.new(shape: ListOfClosedDaysRules, location_name: "CUSTOM"))
931
+ ClosedDays.struct_class = Types::ClosedDays
932
+
933
+ ClosedDaysRule.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
934
+ ClosedDaysRule.add_member(:start_date_time, Shapes::ShapeRef.new(shape: __string, location_name: "StartDateTime"))
935
+ ClosedDaysRule.add_member(:end_date_time, Shapes::ShapeRef.new(shape: __string, location_name: "EndDateTime"))
936
+ ClosedDaysRule.struct_class = Types::ClosedDaysRule
937
+
918
938
  Condition.add_member(:conditions, Shapes::ShapeRef.new(shape: ListOfSimpleCondition, location_name: "Conditions"))
919
939
  Condition.add_member(:operator, Shapes::ShapeRef.new(shape: Operator, location_name: "Operator"))
920
940
  Condition.struct_class = Types::Condition
@@ -2220,7 +2240,12 @@ module Aws::Pinpoint
2220
2240
  JourneyResponse.add_member(:start_condition, Shapes::ShapeRef.new(shape: StartCondition, location_name: "StartCondition"))
2221
2241
  JourneyResponse.add_member(:state, Shapes::ShapeRef.new(shape: State, location_name: "State"))
2222
2242
  JourneyResponse.add_member(:tags, Shapes::ShapeRef.new(shape: MapOf__string, location_name: "tags"))
2243
+ JourneyResponse.add_member(:wait_for_quiet_time, Shapes::ShapeRef.new(shape: __boolean, location_name: "WaitForQuietTime"))
2244
+ JourneyResponse.add_member(:refresh_on_segment_update, Shapes::ShapeRef.new(shape: __boolean, location_name: "RefreshOnSegmentUpdate"))
2223
2245
  JourneyResponse.add_member(:journey_channel_settings, Shapes::ShapeRef.new(shape: JourneyChannelSettings, location_name: "JourneyChannelSettings"))
2246
+ JourneyResponse.add_member(:sending_schedule, Shapes::ShapeRef.new(shape: __boolean, location_name: "SendingSchedule"))
2247
+ JourneyResponse.add_member(:open_hours, Shapes::ShapeRef.new(shape: OpenHours, location_name: "OpenHours"))
2248
+ JourneyResponse.add_member(:closed_days, Shapes::ShapeRef.new(shape: ClosedDays, location_name: "ClosedDays"))
2224
2249
  JourneyResponse.struct_class = Types::JourneyResponse
2225
2250
 
2226
2251
  JourneySMSMessage.add_member(:message_type, Shapes::ShapeRef.new(shape: MessageType, location_name: "MessageType"))
@@ -2258,6 +2283,8 @@ module Aws::Pinpoint
2258
2283
 
2259
2284
  ListOfCampaignResponse.member = Shapes::ShapeRef.new(shape: CampaignResponse)
2260
2285
 
2286
+ ListOfClosedDaysRules.member = Shapes::ShapeRef.new(shape: ClosedDaysRule)
2287
+
2261
2288
  ListOfEndpointBatchItem.member = Shapes::ShapeRef.new(shape: EndpointBatchItem)
2262
2289
 
2263
2290
  ListOfEndpointResponse.member = Shapes::ShapeRef.new(shape: EndpointResponse)
@@ -2274,6 +2301,8 @@ module Aws::Pinpoint
2274
2301
 
2275
2302
  ListOfMultiConditionalBranch.member = Shapes::ShapeRef.new(shape: MultiConditionalBranch)
2276
2303
 
2304
+ ListOfOpenHoursRules.member = Shapes::ShapeRef.new(shape: OpenHoursRule)
2305
+
2277
2306
  ListOfRandomSplitEntry.member = Shapes::ShapeRef.new(shape: RandomSplitEntry)
2278
2307
 
2279
2308
  ListOfRecommenderConfigurationResponse.member = Shapes::ShapeRef.new(shape: RecommenderConfigurationResponse)
@@ -2368,6 +2397,9 @@ module Aws::Pinpoint
2368
2397
  MapOfItemResponse.key = Shapes::ShapeRef.new(shape: __string)
2369
2398
  MapOfItemResponse.value = Shapes::ShapeRef.new(shape: ItemResponse)
2370
2399
 
2400
+ MapOfListOfOpenHoursRules.key = Shapes::ShapeRef.new(shape: DayOfWeek)
2401
+ MapOfListOfOpenHoursRules.value = Shapes::ShapeRef.new(shape: ListOfOpenHoursRules)
2402
+
2371
2403
  MapOfListOf__string.key = Shapes::ShapeRef.new(shape: __string)
2372
2404
  MapOfListOf__string.value = Shapes::ShapeRef.new(shape: ListOf__string)
2373
2405
 
@@ -2480,6 +2512,17 @@ module Aws::Pinpoint
2480
2512
  NumberValidateResponse.add_member(:zip_code, Shapes::ShapeRef.new(shape: __string, location_name: "ZipCode"))
2481
2513
  NumberValidateResponse.struct_class = Types::NumberValidateResponse
2482
2514
 
2515
+ OpenHours.add_member(:email, Shapes::ShapeRef.new(shape: MapOfListOfOpenHoursRules, location_name: "EMAIL"))
2516
+ OpenHours.add_member(:sms, Shapes::ShapeRef.new(shape: MapOfListOfOpenHoursRules, location_name: "SMS"))
2517
+ OpenHours.add_member(:push, Shapes::ShapeRef.new(shape: MapOfListOfOpenHoursRules, location_name: "PUSH"))
2518
+ OpenHours.add_member(:voice, Shapes::ShapeRef.new(shape: MapOfListOfOpenHoursRules, location_name: "VOICE"))
2519
+ OpenHours.add_member(:custom, Shapes::ShapeRef.new(shape: MapOfListOfOpenHoursRules, location_name: "CUSTOM"))
2520
+ OpenHours.struct_class = Types::OpenHours
2521
+
2522
+ OpenHoursRule.add_member(:start_time, Shapes::ShapeRef.new(shape: __string, location_name: "StartTime"))
2523
+ OpenHoursRule.add_member(:end_time, Shapes::ShapeRef.new(shape: __string, location_name: "EndTime"))
2524
+ OpenHoursRule.struct_class = Types::OpenHoursRule
2525
+
2483
2526
  OverrideButtonConfiguration.add_member(:button_action, Shapes::ShapeRef.new(shape: ButtonAction, required: true, location_name: "ButtonAction"))
2484
2527
  OverrideButtonConfiguration.add_member(:link, Shapes::ShapeRef.new(shape: __string, location_name: "Link"))
2485
2528
  OverrideButtonConfiguration.struct_class = Types::OverrideButtonConfiguration
@@ -3325,6 +3368,9 @@ module Aws::Pinpoint
3325
3368
  WriteJourneyRequest.add_member(:wait_for_quiet_time, Shapes::ShapeRef.new(shape: __boolean, location_name: "WaitForQuietTime"))
3326
3369
  WriteJourneyRequest.add_member(:refresh_on_segment_update, Shapes::ShapeRef.new(shape: __boolean, location_name: "RefreshOnSegmentUpdate"))
3327
3370
  WriteJourneyRequest.add_member(:journey_channel_settings, Shapes::ShapeRef.new(shape: JourneyChannelSettings, location_name: "JourneyChannelSettings"))
3371
+ WriteJourneyRequest.add_member(:sending_schedule, Shapes::ShapeRef.new(shape: __boolean, location_name: "SendingSchedule"))
3372
+ WriteJourneyRequest.add_member(:open_hours, Shapes::ShapeRef.new(shape: OpenHours, location_name: "OpenHours"))
3373
+ WriteJourneyRequest.add_member(:closed_days, Shapes::ShapeRef.new(shape: ClosedDays, location_name: "ClosedDays"))
3328
3374
  WriteJourneyRequest.struct_class = Types::WriteJourneyRequest
3329
3375
 
3330
3376
  WriteSegmentRequest.add_member(:dimensions, Shapes::ShapeRef.new(shape: SegmentDimensions, location_name: "Dimensions"))
@@ -4565,6 +4565,86 @@ module Aws::Pinpoint
4565
4565
  # connect_campaign_arn: "__string",
4566
4566
  # connect_campaign_execution_role_arn: "__string",
4567
4567
  # },
4568
+ # sending_schedule: false,
4569
+ # open_hours: {
4570
+ # email: {
4571
+ # "MONDAY" => [
4572
+ # {
4573
+ # start_time: "__string",
4574
+ # end_time: "__string",
4575
+ # },
4576
+ # ],
4577
+ # },
4578
+ # sms: {
4579
+ # "MONDAY" => [
4580
+ # {
4581
+ # start_time: "__string",
4582
+ # end_time: "__string",
4583
+ # },
4584
+ # ],
4585
+ # },
4586
+ # push: {
4587
+ # "MONDAY" => [
4588
+ # {
4589
+ # start_time: "__string",
4590
+ # end_time: "__string",
4591
+ # },
4592
+ # ],
4593
+ # },
4594
+ # voice: {
4595
+ # "MONDAY" => [
4596
+ # {
4597
+ # start_time: "__string",
4598
+ # end_time: "__string",
4599
+ # },
4600
+ # ],
4601
+ # },
4602
+ # custom: {
4603
+ # "MONDAY" => [
4604
+ # {
4605
+ # start_time: "__string",
4606
+ # end_time: "__string",
4607
+ # },
4608
+ # ],
4609
+ # },
4610
+ # },
4611
+ # closed_days: {
4612
+ # email: [
4613
+ # {
4614
+ # name: "__string",
4615
+ # start_date_time: "__string",
4616
+ # end_date_time: "__string",
4617
+ # },
4618
+ # ],
4619
+ # sms: [
4620
+ # {
4621
+ # name: "__string",
4622
+ # start_date_time: "__string",
4623
+ # end_date_time: "__string",
4624
+ # },
4625
+ # ],
4626
+ # push: [
4627
+ # {
4628
+ # name: "__string",
4629
+ # start_date_time: "__string",
4630
+ # end_date_time: "__string",
4631
+ # },
4632
+ # ],
4633
+ # voice: [
4634
+ # {
4635
+ # name: "__string",
4636
+ # start_date_time: "__string",
4637
+ # end_date_time: "__string",
4638
+ # },
4639
+ # ],
4640
+ # custom: [
4641
+ # {
4642
+ # name: "__string",
4643
+ # start_date_time: "__string",
4644
+ # end_date_time: "__string",
4645
+ # },
4646
+ # ],
4647
+ # },
4568
4648
  # },
4569
4649
  # }
4570
4650
  #
@@ -12042,10 +12122,32 @@ module Aws::Pinpoint
12042
12122
  # This object is not used or supported.
12043
12123
  # @return [Hash<String,String>]
12044
12124
  #
12125
+ # @!attribute [rw] wait_for_quiet_time
12126
+ # @return [Boolean]
12127
+ #
12128
+ # @!attribute [rw] refresh_on_segment_update
12129
+ # @return [Boolean]
12130
+ #
12045
12131
  # @!attribute [rw] journey_channel_settings
12046
12132
  # Amazon Resource Name (ARN) of the Connect Campaign.
12047
12133
  # @return [Types::JourneyChannelSettings]
12048
12134
  #
12135
+ # @!attribute [rw] sending_schedule
12136
+ # Indicates if journey have Advance Quiet Time (OpenHours and
12137
+ # ClosedDays). This flag should be set to true in order to allow
12138
+ # (OpenHours and ClosedDays)
12139
+ # @return [Boolean]
12140
+ #
12141
+ # @!attribute [rw] open_hours
12142
+ # The time when journey allow to send messages. QuietTime should be
12143
+ # configured first and SendingSchedule should be set to true.
12144
+ # @return [Types::OpenHours]
12145
+ #
12146
+ # @!attribute [rw] closed_days
12147
+ # The time when journey will stop sending messages. QuietTime should
12148
+ # be configured first and SendingSchedule should be set to true.
12149
+ # @return [Types::ClosedDays]
12150
+ #
12049
12151
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/JourneyResponse AWS API Documentation
12050
12152
  #
12051
12153
  class JourneyResponse < Struct.new(
@@ -12064,7 +12166,12 @@ module Aws::Pinpoint
12064
12166
  :start_condition,
12065
12167
  :state,
12066
12168
  :tags,
12067
- :journey_channel_settings)
12169
+ :wait_for_quiet_time,
12170
+ :refresh_on_segment_update,
12171
+ :journey_channel_settings,
12172
+ :sending_schedule,
12173
+ :open_hours,
12174
+ :closed_days)
12068
12175
  SENSITIVE = []
12069
12176
  include Aws::Structure
12070
12177
  end
@@ -19189,6 +19296,86 @@ module Aws::Pinpoint
19189
19296
  # connect_campaign_arn: "__string",
19190
19297
  # connect_campaign_execution_role_arn: "__string",
19191
19298
  # },
19299
+ # sending_schedule: false,
19300
+ # open_hours: {
19301
+ # email: {
19302
+ # "MONDAY" => [
19303
+ # {
19304
+ # start_time: "__string",
19305
+ # end_time: "__string",
19306
+ # },
19307
+ # ],
19308
+ # },
19309
+ # sms: {
19310
+ # "MONDAY" => [
19311
+ # {
19312
+ # start_time: "__string",
19313
+ # end_time: "__string",
19314
+ # },
19315
+ # ],
19316
+ # },
19317
+ # push: {
19318
+ # "MONDAY" => [
19319
+ # {
19320
+ # start_time: "__string",
19321
+ # end_time: "__string",
19322
+ # },
19323
+ # ],
19324
+ # },
19325
+ # voice: {
19326
+ # "MONDAY" => [
19327
+ # {
19328
+ # start_time: "__string",
19329
+ # end_time: "__string",
19330
+ # },
19331
+ # ],
19332
+ # },
19333
+ # custom: {
19334
+ # "MONDAY" => [
19335
+ # {
19336
+ # start_time: "__string",
19337
+ # end_time: "__string",
19338
+ # },
19339
+ # ],
19340
+ # },
19341
+ # },
19342
+ # closed_days: {
19343
+ # email: [
19344
+ # {
19345
+ # name: "__string",
19346
+ # start_date_time: "__string",
19347
+ # end_date_time: "__string",
19348
+ # },
19349
+ # ],
19350
+ # sms: [
19351
+ # {
19352
+ # name: "__string",
19353
+ # start_date_time: "__string",
19354
+ # end_date_time: "__string",
19355
+ # },
19356
+ # ],
19357
+ # push: [
19358
+ # {
19359
+ # name: "__string",
19360
+ # start_date_time: "__string",
19361
+ # end_date_time: "__string",
19362
+ # },
19363
+ # ],
19364
+ # voice: [
19365
+ # {
19366
+ # name: "__string",
19367
+ # start_date_time: "__string",
19368
+ # end_date_time: "__string",
19369
+ # },
19370
+ # ],
19371
+ # custom: [
19372
+ # {
19373
+ # name: "__string",
19374
+ # start_date_time: "__string",
19375
+ # end_date_time: "__string",
19376
+ # },
19377
+ # ],
19378
+ # },
19192
19379
  # },
19193
19380
  # }
19194
19381
  #
@@ -21517,6 +21704,86 @@ module Aws::Pinpoint
21517
21704
  # connect_campaign_arn: "__string",
21518
21705
  # connect_campaign_execution_role_arn: "__string",
21519
21706
  # },
21707
+ # sending_schedule: false,
21708
+ # open_hours: {
21709
+ # email: {
21710
+ # "MONDAY" => [
21711
+ # {
21712
+ # start_time: "__string",
21713
+ # end_time: "__string",
21714
+ # },
21715
+ # ],
21716
+ # },
21717
+ # sms: {
21718
+ # "MONDAY" => [
21719
+ # {
21720
+ # start_time: "__string",
21721
+ # end_time: "__string",
21722
+ # },
21723
+ # ],
21724
+ # },
21725
+ # push: {
21726
+ # "MONDAY" => [
21727
+ # {
21728
+ # start_time: "__string",
21729
+ # end_time: "__string",
21730
+ # },
21731
+ # ],
21732
+ # },
21733
+ # voice: {
21734
+ # "MONDAY" => [
21735
+ # {
21736
+ # start_time: "__string",
21737
+ # end_time: "__string",
21738
+ # },
21739
+ # ],
21740
+ # },
21741
+ # custom: {
21742
+ # "MONDAY" => [
21743
+ # {
21744
+ # start_time: "__string",
21745
+ # end_time: "__string",
21746
+ # },
21747
+ # ],
21748
+ # },
21749
+ # },
21750
+ # closed_days: {
21751
+ # email: [
21752
+ # {
21753
+ # name: "__string",
21754
+ # start_date_time: "__string",
21755
+ # end_date_time: "__string",
21756
+ # },
21757
+ # ],
21758
+ # sms: [
21759
+ # {
21760
+ # name: "__string",
21761
+ # start_date_time: "__string",
21762
+ # end_date_time: "__string",
21763
+ # },
21764
+ # ],
21765
+ # push: [
21766
+ # {
21767
+ # name: "__string",
21768
+ # start_date_time: "__string",
21769
+ # end_date_time: "__string",
21770
+ # },
21771
+ # ],
21772
+ # voice: [
21773
+ # {
21774
+ # name: "__string",
21775
+ # start_date_time: "__string",
21776
+ # end_date_time: "__string",
21777
+ # },
21778
+ # ],
21779
+ # custom: [
21780
+ # {
21781
+ # name: "__string",
21782
+ # start_date_time: "__string",
21783
+ # end_date_time: "__string",
21784
+ # },
21785
+ # ],
21786
+ # },
21520
21787
  # }
21521
21788
  #
21522
21789
  # @!attribute [rw] activities
@@ -21622,6 +21889,22 @@ module Aws::Pinpoint
21622
21889
  # APIs for dialing.
21623
21890
  # @return [Types::JourneyChannelSettings]
21624
21891
  #
21892
+ # @!attribute [rw] sending_schedule
21893
+ # Indicates if journey have Advance Quiet Time (OpenHours and
21894
+ # ClosedDays). This flag should be set to true in order to allow
21895
+ # (OpenHours and ClosedDays)
21896
+ # @return [Boolean]
21897
+ #
21898
+ # @!attribute [rw] open_hours
21899
+ # The time when journey allow to send messages. QuietTime should be
21900
+ # configured first and SendingSchedule should be set to true.
21901
+ # @return [Types::OpenHours]
21902
+ #
21903
+ # @!attribute [rw] closed_days
21904
+ # The time when journey will stop sending messages. QuietTime should
21905
+ # be configured first and SendingSchedule should be set to true.
21906
+ # @return [Types::ClosedDays]
21907
+ #
21625
21908
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/WriteJourneyRequest AWS API Documentation
21626
21909
  #
21627
21910
  class WriteJourneyRequest < Struct.new(
@@ -21639,7 +21922,10 @@ module Aws::Pinpoint
21639
21922
  :state,
21640
21923
  :wait_for_quiet_time,
21641
21924
  :refresh_on_segment_update,
21642
- :journey_channel_settings)
21925
+ :journey_channel_settings,
21926
+ :sending_schedule,
21927
+ :open_hours,
21928
+ :closed_days)
21643
21929
  SENSITIVE = []
21644
21930
  include Aws::Structure
21645
21931
  end
@@ -22105,5 +22391,221 @@ module Aws::Pinpoint
22105
22391
  include Aws::Structure
22106
22392
  end
22107
22393
 
22394
+ # Open Hour Rules.
22395
+ #
22396
+ # @note When making an API call, you may pass OpenHoursRule
22397
+ # data as a hash:
22398
+ #
22399
+ # {
22400
+ # start_time: "__string",
22401
+ # end_time: "__string",
22402
+ # }
22403
+ #
22404
+ # @!attribute [rw] start_time
22405
+ # Local start time in ISO 8601 format.
22406
+ # @return [String]
22407
+ #
22408
+ # @!attribute [rw] end_time
22409
+ # Local start time in ISO 8601 format.
22410
+ # @return [String]
22411
+ #
22412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/OpenHoursRule AWS API Documentation
22413
+ #
22414
+ class OpenHoursRule < Struct.new(
22415
+ :start_time,
22416
+ :end_time)
22417
+ SENSITIVE = []
22418
+ include Aws::Structure
22419
+ end
22420
+
22421
+ # The time when journey allow to send messages. QuietTime should be
22422
+ # configured first and SendingSchedule should be set to true.
22423
+ #
22424
+ # @note When making an API call, you may pass OpenHours
22425
+ # data as a hash:
22426
+ #
22427
+ # {
22428
+ # email: {
22429
+ # "MONDAY" => [
22430
+ # {
22431
+ # start_time: "__string",
22432
+ # end_time: "__string",
22433
+ # },
22434
+ # ],
22435
+ # },
22436
+ # sms: {
22437
+ # "MONDAY" => [
22438
+ # {
22439
+ # start_time: "__string",
22440
+ # end_time: "__string",
22441
+ # },
22442
+ # ],
22443
+ # },
22444
+ # push: {
22445
+ # "MONDAY" => [
22446
+ # {
22447
+ # start_time: "__string",
22448
+ # end_time: "__string",
22449
+ # },
22450
+ # ],
22451
+ # },
22452
+ # voice: {
22453
+ # "MONDAY" => [
22454
+ # {
22455
+ # start_time: "__string",
22456
+ # end_time: "__string",
22457
+ # },
22458
+ # ],
22459
+ # },
22460
+ # custom: {
22461
+ # "MONDAY" => [
22462
+ # {
22463
+ # start_time: "__string",
22464
+ # end_time: "__string",
22465
+ # },
22466
+ # ],
22467
+ # },
22468
+ # }
22469
+ #
22470
+ # @!attribute [rw] email
22471
+ # Rules for Email Channel.
22472
+ # @return [Hash<String,Array<Types::OpenHoursRule>>]
22473
+ #
22474
+ # @!attribute [rw] sms
22475
+ # Rules for SMS Channel.
22476
+ # @return [Hash<String,Array<Types::OpenHoursRule>>]
22477
+ #
22478
+ # @!attribute [rw] push
22479
+ # Rules for Push Channel.
22480
+ # @return [Hash<String,Array<Types::OpenHoursRule>>]
22481
+ #
22482
+ # @!attribute [rw] voice
22483
+ # Rules for Email Channel.
22484
+ # @return [Hash<String,Array<Types::OpenHoursRule>>]
22485
+ #
22486
+ # @!attribute [rw] custom
22487
+ # Rules for Custom Channel.
22488
+ # @return [Hash<String,Array<Types::OpenHoursRule>>]
22489
+ #
22490
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/OpenHours AWS API Documentation
22491
+ #
22492
+ class OpenHours < Struct.new(
22493
+ :email,
22494
+ :sms,
22495
+ :push,
22496
+ :voice,
22497
+ :custom)
22498
+ SENSITIVE = []
22499
+ include Aws::Structure
22500
+ end
22501
+
22502
+ # Closed Days Rule. Part of Journey sending schedule.
22503
+ #
22504
+ # @note When making an API call, you may pass ClosedDaysRule
22505
+ # data as a hash:
22506
+ #
22507
+ # {
22508
+ # name: "__string",
22509
+ # start_date_time: "__string",
22510
+ # end_date_time: "__string",
22511
+ # }
22512
+ #
22513
+ # @!attribute [rw] name
22514
+ # Name of the rule.
22515
+ # @return [String]
22516
+ #
22517
+ # @!attribute [rw] start_date_time
22518
+ # Start Datetime in ISO 8601 format.
22519
+ # @return [String]
22520
+ #
22521
+ # @!attribute [rw] end_date_time
22522
+ # End Datetime in ISO 8601 format.
22523
+ # @return [String]
22524
+ #
22525
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/ClosedDaysRule AWS API Documentation
22526
+ #
22527
+ class ClosedDaysRule < Struct.new(
22528
+ :name,
22529
+ :start_date_time,
22530
+ :end_date_time)
22531
+ SENSITIVE = []
22532
+ include Aws::Structure
22533
+ end
22534
+
22535
+ # The time when journey will stop sending messages.
22536
+ #
22537
+ # @note When making an API call, you may pass ClosedDays
22538
+ # data as a hash:
22539
+ #
22540
+ # {
22541
+ # email: [
22542
+ # {
22543
+ # name: "__string",
22544
+ # start_date_time: "__string",
22545
+ # end_date_time: "__string",
22546
+ # },
22547
+ # ],
22548
+ # sms: [
22549
+ # {
22550
+ # name: "__string",
22551
+ # start_date_time: "__string",
22552
+ # end_date_time: "__string",
22553
+ # },
22554
+ # ],
22555
+ # push: [
22556
+ # {
22557
+ # name: "__string",
22558
+ # start_date_time: "__string",
22559
+ # end_date_time: "__string",
22560
+ # },
22561
+ # ],
22562
+ # voice: [
22563
+ # {
22564
+ # name: "__string",
22565
+ # start_date_time: "__string",
22566
+ # end_date_time: "__string",
22567
+ # },
22568
+ # ],
22569
+ # custom: [
22570
+ # {
22571
+ # name: "__string",
22572
+ # start_date_time: "__string",
22573
+ # end_date_time: "__string",
22574
+ # },
22575
+ # ],
22576
+ # }
22577
+ #
22578
+ # @!attribute [rw] email
22579
+ # Rules for a Channel.
22580
+ # @return [Array<Types::ClosedDaysRule>]
22581
+ #
22582
+ # @!attribute [rw] sms
22583
+ # Rules for a Channel.
22584
+ # @return [Array<Types::ClosedDaysRule>]
22585
+ #
22586
+ # @!attribute [rw] push
22587
+ # Rules for a Channel.
22588
+ # @return [Array<Types::ClosedDaysRule>]
22589
+ #
22590
+ # @!attribute [rw] voice
22591
+ # Rules for a Channel.
22592
+ # @return [Array<Types::ClosedDaysRule>]
22593
+ #
22594
+ # @!attribute [rw] custom
22595
+ # Rules for a Channel.
22596
+ # @return [Array<Types::ClosedDaysRule>]
22597
+ #
22598
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/ClosedDays AWS API Documentation
22599
+ #
22600
+ class ClosedDays < Struct.new(
22601
+ :email,
22602
+ :sms,
22603
+ :push,
22604
+ :voice,
22605
+ :custom)
22606
+ SENSITIVE = []
22607
+ include Aws::Structure
22608
+ end
22609
+
22108
22610
  end
22109
22611
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-pinpoint/customizations'
48
48
  # @!group service
49
49
  module Aws::Pinpoint
50
50
 
51
- GEM_VERSION = '1.67.0'
51
+ GEM_VERSION = '1.68.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pinpoint
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.67.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core