aws-sdk-pinpoint 1.67.0 → 1.69.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: 41eef23166e768def5a59f1658383a78050cd0712fc33f633a670acd2d18614a
4
+ data.tar.gz: 2e9559a0d4edcd0e4d308af21767fbfa99c8f3f1ad1155fd2aaaa3a9eda886e5
5
5
  SHA512:
6
- metadata.gz: 2355c1893cc2c944995ad7ec4f69c3de00f90e8d3a77ff24b704299f7f6d914607b3d4b4f9cb9fe05b578257d8491627486af3c1c5f0a61e0e2e5f5e04b011ff
7
- data.tar.gz: 61d6e4e31b2fa1514a37f0dce1ccbe28cae0ea81c8eb54cf7398b4424a9d9c97ce61ff25563964d5a4f07759cfbb5a6aa388f8dcdfb6fdcefa90b488f83ab2cf
6
+ metadata.gz: 42b56c5348dd2098d0167448245083437352a98c2387d84af47f63152ed22e6d7559308c067574d689bf4ad00443e61a5e3719c40f60405c76ae63000f3e8d62
7
+ data.tar.gz: 97775f648cd9192deb9fbe74a1a9131cd2fce5f340f045bcdbbf549272bc4403828c759c88dee6282cde61e8be928d68537d6bd3012feb8408cd87622e11ad85
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2022-10-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.68.0 (2022-08-08)
10
+ ------------------
11
+
12
+ * Feature - Adds support for Advance Quiet Time in Journeys. Adds RefreshOnSegmentUpdate and WaitForQuietTime to JourneyResponse.
13
+
4
14
  1.67.0 (2022-02-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.69.0
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
- require 'aws-sdk-core/plugins/signature_v4.rb'
33
+ require 'aws-sdk-core/plugins/sign.rb'
34
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
35
35
 
36
36
  Aws::Plugins::GlobalConfiguration.add_identifier(:pinpoint)
@@ -79,8 +79,9 @@ module Aws::Pinpoint
79
79
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
80
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
81
  add_plugin(Aws::Plugins::RecursionDetection)
82
- add_plugin(Aws::Plugins::SignatureV4)
82
+ add_plugin(Aws::Plugins::Sign)
83
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
84
+ add_plugin(Aws::Pinpoint::Plugins::Endpoints)
84
85
 
85
86
  # @overload initialize(options)
86
87
  # @param [Hash] options
@@ -287,6 +288,19 @@ module Aws::Pinpoint
287
288
  # ** Please note ** When response stubbing is enabled, no HTTP
288
289
  # requests are made, and retries are disabled.
289
290
  #
291
+ # @option options [Aws::TokenProvider] :token_provider
292
+ # A Bearer Token Provider. This can be an instance of any one of the
293
+ # following classes:
294
+ #
295
+ # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
296
+ # tokens.
297
+ #
298
+ # * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
299
+ # access token generated from `aws login`.
300
+ #
301
+ # When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
302
+ # will be used to search for tokens configured for your profile in shared configuration files.
303
+ #
290
304
  # @option options [Boolean] :use_dualstack_endpoint
291
305
  # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
306
  # will be used if available.
@@ -300,6 +314,9 @@ module Aws::Pinpoint
300
314
  # When `true`, request parameters are validated before
301
315
  # sending the request.
302
316
  #
317
+ # @option options [Aws::Pinpoint::EndpointProvider] :endpoint_provider
318
+ # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Pinpoint::EndpointParameters`
319
+ #
303
320
  # @option options [URI::HTTP,String] :http_proxy A proxy to send
304
321
  # requests through. Formatted like 'http://proxy.com:123'.
305
322
  #
@@ -1788,6 +1805,86 @@ module Aws::Pinpoint
1788
1805
  # connect_campaign_arn: "__string",
1789
1806
  # connect_campaign_execution_role_arn: "__string",
1790
1807
  # },
1808
+ # sending_schedule: false,
1809
+ # open_hours: {
1810
+ # email: {
1811
+ # "MONDAY" => [
1812
+ # {
1813
+ # start_time: "__string",
1814
+ # end_time: "__string",
1815
+ # },
1816
+ # ],
1817
+ # },
1818
+ # sms: {
1819
+ # "MONDAY" => [
1820
+ # {
1821
+ # start_time: "__string",
1822
+ # end_time: "__string",
1823
+ # },
1824
+ # ],
1825
+ # },
1826
+ # push: {
1827
+ # "MONDAY" => [
1828
+ # {
1829
+ # start_time: "__string",
1830
+ # end_time: "__string",
1831
+ # },
1832
+ # ],
1833
+ # },
1834
+ # voice: {
1835
+ # "MONDAY" => [
1836
+ # {
1837
+ # start_time: "__string",
1838
+ # end_time: "__string",
1839
+ # },
1840
+ # ],
1841
+ # },
1842
+ # custom: {
1843
+ # "MONDAY" => [
1844
+ # {
1845
+ # start_time: "__string",
1846
+ # end_time: "__string",
1847
+ # },
1848
+ # ],
1849
+ # },
1850
+ # },
1851
+ # closed_days: {
1852
+ # email: [
1853
+ # {
1854
+ # name: "__string",
1855
+ # start_date_time: "__string",
1856
+ # end_date_time: "__string",
1857
+ # },
1858
+ # ],
1859
+ # sms: [
1860
+ # {
1861
+ # name: "__string",
1862
+ # start_date_time: "__string",
1863
+ # end_date_time: "__string",
1864
+ # },
1865
+ # ],
1866
+ # push: [
1867
+ # {
1868
+ # name: "__string",
1869
+ # start_date_time: "__string",
1870
+ # end_date_time: "__string",
1871
+ # },
1872
+ # ],
1873
+ # voice: [
1874
+ # {
1875
+ # name: "__string",
1876
+ # start_date_time: "__string",
1877
+ # end_date_time: "__string",
1878
+ # },
1879
+ # ],
1880
+ # custom: [
1881
+ # {
1882
+ # name: "__string",
1883
+ # start_date_time: "__string",
1884
+ # end_date_time: "__string",
1885
+ # },
1886
+ # ],
1887
+ # },
1791
1888
  # },
1792
1889
  # })
1793
1890
  #
@@ -1970,8 +2067,51 @@ module Aws::Pinpoint
1970
2067
  # resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
1971
2068
  # resp.journey_response.tags #=> Hash
1972
2069
  # resp.journey_response.tags["__string"] #=> String
2070
+ # resp.journey_response.wait_for_quiet_time #=> Boolean
2071
+ # resp.journey_response.refresh_on_segment_update #=> Boolean
1973
2072
  # resp.journey_response.journey_channel_settings.connect_campaign_arn #=> String
1974
2073
  # resp.journey_response.journey_channel_settings.connect_campaign_execution_role_arn #=> String
2074
+ # resp.journey_response.sending_schedule #=> Boolean
2075
+ # resp.journey_response.open_hours.email #=> Hash
2076
+ # resp.journey_response.open_hours.email["DayOfWeek"] #=> Array
2077
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].start_time #=> String
2078
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].end_time #=> String
2079
+ # resp.journey_response.open_hours.sms #=> Hash
2080
+ # resp.journey_response.open_hours.sms["DayOfWeek"] #=> Array
2081
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].start_time #=> String
2082
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].end_time #=> String
2083
+ # resp.journey_response.open_hours.push #=> Hash
2084
+ # resp.journey_response.open_hours.push["DayOfWeek"] #=> Array
2085
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].start_time #=> String
2086
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].end_time #=> String
2087
+ # resp.journey_response.open_hours.voice #=> Hash
2088
+ # resp.journey_response.open_hours.voice["DayOfWeek"] #=> Array
2089
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].start_time #=> String
2090
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].end_time #=> String
2091
+ # resp.journey_response.open_hours.custom #=> Hash
2092
+ # resp.journey_response.open_hours.custom["DayOfWeek"] #=> Array
2093
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].start_time #=> String
2094
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].end_time #=> String
2095
+ # resp.journey_response.closed_days.email #=> Array
2096
+ # resp.journey_response.closed_days.email[0].name #=> String
2097
+ # resp.journey_response.closed_days.email[0].start_date_time #=> String
2098
+ # resp.journey_response.closed_days.email[0].end_date_time #=> String
2099
+ # resp.journey_response.closed_days.sms #=> Array
2100
+ # resp.journey_response.closed_days.sms[0].name #=> String
2101
+ # resp.journey_response.closed_days.sms[0].start_date_time #=> String
2102
+ # resp.journey_response.closed_days.sms[0].end_date_time #=> String
2103
+ # resp.journey_response.closed_days.push #=> Array
2104
+ # resp.journey_response.closed_days.push[0].name #=> String
2105
+ # resp.journey_response.closed_days.push[0].start_date_time #=> String
2106
+ # resp.journey_response.closed_days.push[0].end_date_time #=> String
2107
+ # resp.journey_response.closed_days.voice #=> Array
2108
+ # resp.journey_response.closed_days.voice[0].name #=> String
2109
+ # resp.journey_response.closed_days.voice[0].start_date_time #=> String
2110
+ # resp.journey_response.closed_days.voice[0].end_date_time #=> String
2111
+ # resp.journey_response.closed_days.custom #=> Array
2112
+ # resp.journey_response.closed_days.custom[0].name #=> String
2113
+ # resp.journey_response.closed_days.custom[0].start_date_time #=> String
2114
+ # resp.journey_response.closed_days.custom[0].end_date_time #=> String
1975
2115
  #
1976
2116
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/CreateJourney AWS API Documentation
1977
2117
  #
@@ -3531,8 +3671,51 @@ module Aws::Pinpoint
3531
3671
  # resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
3532
3672
  # resp.journey_response.tags #=> Hash
3533
3673
  # resp.journey_response.tags["__string"] #=> String
3674
+ # resp.journey_response.wait_for_quiet_time #=> Boolean
3675
+ # resp.journey_response.refresh_on_segment_update #=> Boolean
3534
3676
  # resp.journey_response.journey_channel_settings.connect_campaign_arn #=> String
3535
3677
  # resp.journey_response.journey_channel_settings.connect_campaign_execution_role_arn #=> String
3678
+ # resp.journey_response.sending_schedule #=> Boolean
3679
+ # resp.journey_response.open_hours.email #=> Hash
3680
+ # resp.journey_response.open_hours.email["DayOfWeek"] #=> Array
3681
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].start_time #=> String
3682
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].end_time #=> String
3683
+ # resp.journey_response.open_hours.sms #=> Hash
3684
+ # resp.journey_response.open_hours.sms["DayOfWeek"] #=> Array
3685
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].start_time #=> String
3686
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].end_time #=> String
3687
+ # resp.journey_response.open_hours.push #=> Hash
3688
+ # resp.journey_response.open_hours.push["DayOfWeek"] #=> Array
3689
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].start_time #=> String
3690
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].end_time #=> String
3691
+ # resp.journey_response.open_hours.voice #=> Hash
3692
+ # resp.journey_response.open_hours.voice["DayOfWeek"] #=> Array
3693
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].start_time #=> String
3694
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].end_time #=> String
3695
+ # resp.journey_response.open_hours.custom #=> Hash
3696
+ # resp.journey_response.open_hours.custom["DayOfWeek"] #=> Array
3697
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].start_time #=> String
3698
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].end_time #=> String
3699
+ # resp.journey_response.closed_days.email #=> Array
3700
+ # resp.journey_response.closed_days.email[0].name #=> String
3701
+ # resp.journey_response.closed_days.email[0].start_date_time #=> String
3702
+ # resp.journey_response.closed_days.email[0].end_date_time #=> String
3703
+ # resp.journey_response.closed_days.sms #=> Array
3704
+ # resp.journey_response.closed_days.sms[0].name #=> String
3705
+ # resp.journey_response.closed_days.sms[0].start_date_time #=> String
3706
+ # resp.journey_response.closed_days.sms[0].end_date_time #=> String
3707
+ # resp.journey_response.closed_days.push #=> Array
3708
+ # resp.journey_response.closed_days.push[0].name #=> String
3709
+ # resp.journey_response.closed_days.push[0].start_date_time #=> String
3710
+ # resp.journey_response.closed_days.push[0].end_date_time #=> String
3711
+ # resp.journey_response.closed_days.voice #=> Array
3712
+ # resp.journey_response.closed_days.voice[0].name #=> String
3713
+ # resp.journey_response.closed_days.voice[0].start_date_time #=> String
3714
+ # resp.journey_response.closed_days.voice[0].end_date_time #=> String
3715
+ # resp.journey_response.closed_days.custom #=> Array
3716
+ # resp.journey_response.closed_days.custom[0].name #=> String
3717
+ # resp.journey_response.closed_days.custom[0].start_date_time #=> String
3718
+ # resp.journey_response.closed_days.custom[0].end_date_time #=> String
3536
3719
  #
3537
3720
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/DeleteJourney AWS API Documentation
3538
3721
  #
@@ -6638,8 +6821,51 @@ module Aws::Pinpoint
6638
6821
  # resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
6639
6822
  # resp.journey_response.tags #=> Hash
6640
6823
  # resp.journey_response.tags["__string"] #=> String
6824
+ # resp.journey_response.wait_for_quiet_time #=> Boolean
6825
+ # resp.journey_response.refresh_on_segment_update #=> Boolean
6641
6826
  # resp.journey_response.journey_channel_settings.connect_campaign_arn #=> String
6642
6827
  # resp.journey_response.journey_channel_settings.connect_campaign_execution_role_arn #=> String
6828
+ # resp.journey_response.sending_schedule #=> Boolean
6829
+ # resp.journey_response.open_hours.email #=> Hash
6830
+ # resp.journey_response.open_hours.email["DayOfWeek"] #=> Array
6831
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].start_time #=> String
6832
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].end_time #=> String
6833
+ # resp.journey_response.open_hours.sms #=> Hash
6834
+ # resp.journey_response.open_hours.sms["DayOfWeek"] #=> Array
6835
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].start_time #=> String
6836
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].end_time #=> String
6837
+ # resp.journey_response.open_hours.push #=> Hash
6838
+ # resp.journey_response.open_hours.push["DayOfWeek"] #=> Array
6839
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].start_time #=> String
6840
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].end_time #=> String
6841
+ # resp.journey_response.open_hours.voice #=> Hash
6842
+ # resp.journey_response.open_hours.voice["DayOfWeek"] #=> Array
6843
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].start_time #=> String
6844
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].end_time #=> String
6845
+ # resp.journey_response.open_hours.custom #=> Hash
6846
+ # resp.journey_response.open_hours.custom["DayOfWeek"] #=> Array
6847
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].start_time #=> String
6848
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].end_time #=> String
6849
+ # resp.journey_response.closed_days.email #=> Array
6850
+ # resp.journey_response.closed_days.email[0].name #=> String
6851
+ # resp.journey_response.closed_days.email[0].start_date_time #=> String
6852
+ # resp.journey_response.closed_days.email[0].end_date_time #=> String
6853
+ # resp.journey_response.closed_days.sms #=> Array
6854
+ # resp.journey_response.closed_days.sms[0].name #=> String
6855
+ # resp.journey_response.closed_days.sms[0].start_date_time #=> String
6856
+ # resp.journey_response.closed_days.sms[0].end_date_time #=> String
6857
+ # resp.journey_response.closed_days.push #=> Array
6858
+ # resp.journey_response.closed_days.push[0].name #=> String
6859
+ # resp.journey_response.closed_days.push[0].start_date_time #=> String
6860
+ # resp.journey_response.closed_days.push[0].end_date_time #=> String
6861
+ # resp.journey_response.closed_days.voice #=> Array
6862
+ # resp.journey_response.closed_days.voice[0].name #=> String
6863
+ # resp.journey_response.closed_days.voice[0].start_date_time #=> String
6864
+ # resp.journey_response.closed_days.voice[0].end_date_time #=> String
6865
+ # resp.journey_response.closed_days.custom #=> Array
6866
+ # resp.journey_response.closed_days.custom[0].name #=> String
6867
+ # resp.journey_response.closed_days.custom[0].start_date_time #=> String
6868
+ # resp.journey_response.closed_days.custom[0].end_date_time #=> String
6643
6869
  #
6644
6870
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/GetJourney AWS API Documentation
6645
6871
  #
@@ -8039,8 +8265,51 @@ module Aws::Pinpoint
8039
8265
  # resp.journeys_response.item[0].state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
8040
8266
  # resp.journeys_response.item[0].tags #=> Hash
8041
8267
  # resp.journeys_response.item[0].tags["__string"] #=> String
8268
+ # resp.journeys_response.item[0].wait_for_quiet_time #=> Boolean
8269
+ # resp.journeys_response.item[0].refresh_on_segment_update #=> Boolean
8042
8270
  # resp.journeys_response.item[0].journey_channel_settings.connect_campaign_arn #=> String
8043
8271
  # resp.journeys_response.item[0].journey_channel_settings.connect_campaign_execution_role_arn #=> String
8272
+ # resp.journeys_response.item[0].sending_schedule #=> Boolean
8273
+ # resp.journeys_response.item[0].open_hours.email #=> Hash
8274
+ # resp.journeys_response.item[0].open_hours.email["DayOfWeek"] #=> Array
8275
+ # resp.journeys_response.item[0].open_hours.email["DayOfWeek"][0].start_time #=> String
8276
+ # resp.journeys_response.item[0].open_hours.email["DayOfWeek"][0].end_time #=> String
8277
+ # resp.journeys_response.item[0].open_hours.sms #=> Hash
8278
+ # resp.journeys_response.item[0].open_hours.sms["DayOfWeek"] #=> Array
8279
+ # resp.journeys_response.item[0].open_hours.sms["DayOfWeek"][0].start_time #=> String
8280
+ # resp.journeys_response.item[0].open_hours.sms["DayOfWeek"][0].end_time #=> String
8281
+ # resp.journeys_response.item[0].open_hours.push #=> Hash
8282
+ # resp.journeys_response.item[0].open_hours.push["DayOfWeek"] #=> Array
8283
+ # resp.journeys_response.item[0].open_hours.push["DayOfWeek"][0].start_time #=> String
8284
+ # resp.journeys_response.item[0].open_hours.push["DayOfWeek"][0].end_time #=> String
8285
+ # resp.journeys_response.item[0].open_hours.voice #=> Hash
8286
+ # resp.journeys_response.item[0].open_hours.voice["DayOfWeek"] #=> Array
8287
+ # resp.journeys_response.item[0].open_hours.voice["DayOfWeek"][0].start_time #=> String
8288
+ # resp.journeys_response.item[0].open_hours.voice["DayOfWeek"][0].end_time #=> String
8289
+ # resp.journeys_response.item[0].open_hours.custom #=> Hash
8290
+ # resp.journeys_response.item[0].open_hours.custom["DayOfWeek"] #=> Array
8291
+ # resp.journeys_response.item[0].open_hours.custom["DayOfWeek"][0].start_time #=> String
8292
+ # resp.journeys_response.item[0].open_hours.custom["DayOfWeek"][0].end_time #=> String
8293
+ # resp.journeys_response.item[0].closed_days.email #=> Array
8294
+ # resp.journeys_response.item[0].closed_days.email[0].name #=> String
8295
+ # resp.journeys_response.item[0].closed_days.email[0].start_date_time #=> String
8296
+ # resp.journeys_response.item[0].closed_days.email[0].end_date_time #=> String
8297
+ # resp.journeys_response.item[0].closed_days.sms #=> Array
8298
+ # resp.journeys_response.item[0].closed_days.sms[0].name #=> String
8299
+ # resp.journeys_response.item[0].closed_days.sms[0].start_date_time #=> String
8300
+ # resp.journeys_response.item[0].closed_days.sms[0].end_date_time #=> String
8301
+ # resp.journeys_response.item[0].closed_days.push #=> Array
8302
+ # resp.journeys_response.item[0].closed_days.push[0].name #=> String
8303
+ # resp.journeys_response.item[0].closed_days.push[0].start_date_time #=> String
8304
+ # resp.journeys_response.item[0].closed_days.push[0].end_date_time #=> String
8305
+ # resp.journeys_response.item[0].closed_days.voice #=> Array
8306
+ # resp.journeys_response.item[0].closed_days.voice[0].name #=> String
8307
+ # resp.journeys_response.item[0].closed_days.voice[0].start_date_time #=> String
8308
+ # resp.journeys_response.item[0].closed_days.voice[0].end_date_time #=> String
8309
+ # resp.journeys_response.item[0].closed_days.custom #=> Array
8310
+ # resp.journeys_response.item[0].closed_days.custom[0].name #=> String
8311
+ # resp.journeys_response.item[0].closed_days.custom[0].start_date_time #=> String
8312
+ # resp.journeys_response.item[0].closed_days.custom[0].end_date_time #=> String
8044
8313
  # resp.journeys_response.next_token #=> String
8045
8314
  #
8046
8315
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/ListJourneys AWS API Documentation
@@ -10930,6 +11199,86 @@ module Aws::Pinpoint
10930
11199
  # connect_campaign_arn: "__string",
10931
11200
  # connect_campaign_execution_role_arn: "__string",
10932
11201
  # },
11202
+ # sending_schedule: false,
11203
+ # open_hours: {
11204
+ # email: {
11205
+ # "MONDAY" => [
11206
+ # {
11207
+ # start_time: "__string",
11208
+ # end_time: "__string",
11209
+ # },
11210
+ # ],
11211
+ # },
11212
+ # sms: {
11213
+ # "MONDAY" => [
11214
+ # {
11215
+ # start_time: "__string",
11216
+ # end_time: "__string",
11217
+ # },
11218
+ # ],
11219
+ # },
11220
+ # push: {
11221
+ # "MONDAY" => [
11222
+ # {
11223
+ # start_time: "__string",
11224
+ # end_time: "__string",
11225
+ # },
11226
+ # ],
11227
+ # },
11228
+ # voice: {
11229
+ # "MONDAY" => [
11230
+ # {
11231
+ # start_time: "__string",
11232
+ # end_time: "__string",
11233
+ # },
11234
+ # ],
11235
+ # },
11236
+ # custom: {
11237
+ # "MONDAY" => [
11238
+ # {
11239
+ # start_time: "__string",
11240
+ # end_time: "__string",
11241
+ # },
11242
+ # ],
11243
+ # },
11244
+ # },
11245
+ # closed_days: {
11246
+ # email: [
11247
+ # {
11248
+ # name: "__string",
11249
+ # start_date_time: "__string",
11250
+ # end_date_time: "__string",
11251
+ # },
11252
+ # ],
11253
+ # sms: [
11254
+ # {
11255
+ # name: "__string",
11256
+ # start_date_time: "__string",
11257
+ # end_date_time: "__string",
11258
+ # },
11259
+ # ],
11260
+ # push: [
11261
+ # {
11262
+ # name: "__string",
11263
+ # start_date_time: "__string",
11264
+ # end_date_time: "__string",
11265
+ # },
11266
+ # ],
11267
+ # voice: [
11268
+ # {
11269
+ # name: "__string",
11270
+ # start_date_time: "__string",
11271
+ # end_date_time: "__string",
11272
+ # },
11273
+ # ],
11274
+ # custom: [
11275
+ # {
11276
+ # name: "__string",
11277
+ # start_date_time: "__string",
11278
+ # end_date_time: "__string",
11279
+ # },
11280
+ # ],
11281
+ # },
10933
11282
  # },
10934
11283
  # })
10935
11284
  #
@@ -11112,8 +11461,51 @@ module Aws::Pinpoint
11112
11461
  # resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
11113
11462
  # resp.journey_response.tags #=> Hash
11114
11463
  # resp.journey_response.tags["__string"] #=> String
11464
+ # resp.journey_response.wait_for_quiet_time #=> Boolean
11465
+ # resp.journey_response.refresh_on_segment_update #=> Boolean
11115
11466
  # resp.journey_response.journey_channel_settings.connect_campaign_arn #=> String
11116
11467
  # resp.journey_response.journey_channel_settings.connect_campaign_execution_role_arn #=> String
11468
+ # resp.journey_response.sending_schedule #=> Boolean
11469
+ # resp.journey_response.open_hours.email #=> Hash
11470
+ # resp.journey_response.open_hours.email["DayOfWeek"] #=> Array
11471
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].start_time #=> String
11472
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].end_time #=> String
11473
+ # resp.journey_response.open_hours.sms #=> Hash
11474
+ # resp.journey_response.open_hours.sms["DayOfWeek"] #=> Array
11475
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].start_time #=> String
11476
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].end_time #=> String
11477
+ # resp.journey_response.open_hours.push #=> Hash
11478
+ # resp.journey_response.open_hours.push["DayOfWeek"] #=> Array
11479
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].start_time #=> String
11480
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].end_time #=> String
11481
+ # resp.journey_response.open_hours.voice #=> Hash
11482
+ # resp.journey_response.open_hours.voice["DayOfWeek"] #=> Array
11483
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].start_time #=> String
11484
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].end_time #=> String
11485
+ # resp.journey_response.open_hours.custom #=> Hash
11486
+ # resp.journey_response.open_hours.custom["DayOfWeek"] #=> Array
11487
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].start_time #=> String
11488
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].end_time #=> String
11489
+ # resp.journey_response.closed_days.email #=> Array
11490
+ # resp.journey_response.closed_days.email[0].name #=> String
11491
+ # resp.journey_response.closed_days.email[0].start_date_time #=> String
11492
+ # resp.journey_response.closed_days.email[0].end_date_time #=> String
11493
+ # resp.journey_response.closed_days.sms #=> Array
11494
+ # resp.journey_response.closed_days.sms[0].name #=> String
11495
+ # resp.journey_response.closed_days.sms[0].start_date_time #=> String
11496
+ # resp.journey_response.closed_days.sms[0].end_date_time #=> String
11497
+ # resp.journey_response.closed_days.push #=> Array
11498
+ # resp.journey_response.closed_days.push[0].name #=> String
11499
+ # resp.journey_response.closed_days.push[0].start_date_time #=> String
11500
+ # resp.journey_response.closed_days.push[0].end_date_time #=> String
11501
+ # resp.journey_response.closed_days.voice #=> Array
11502
+ # resp.journey_response.closed_days.voice[0].name #=> String
11503
+ # resp.journey_response.closed_days.voice[0].start_date_time #=> String
11504
+ # resp.journey_response.closed_days.voice[0].end_date_time #=> String
11505
+ # resp.journey_response.closed_days.custom #=> Array
11506
+ # resp.journey_response.closed_days.custom[0].name #=> String
11507
+ # resp.journey_response.closed_days.custom[0].start_date_time #=> String
11508
+ # resp.journey_response.closed_days.custom[0].end_date_time #=> String
11117
11509
  #
11118
11510
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/UpdateJourney AWS API Documentation
11119
11511
  #
@@ -11326,8 +11718,51 @@ module Aws::Pinpoint
11326
11718
  # resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED", "PAUSED"
11327
11719
  # resp.journey_response.tags #=> Hash
11328
11720
  # resp.journey_response.tags["__string"] #=> String
11721
+ # resp.journey_response.wait_for_quiet_time #=> Boolean
11722
+ # resp.journey_response.refresh_on_segment_update #=> Boolean
11329
11723
  # resp.journey_response.journey_channel_settings.connect_campaign_arn #=> String
11330
11724
  # resp.journey_response.journey_channel_settings.connect_campaign_execution_role_arn #=> String
11725
+ # resp.journey_response.sending_schedule #=> Boolean
11726
+ # resp.journey_response.open_hours.email #=> Hash
11727
+ # resp.journey_response.open_hours.email["DayOfWeek"] #=> Array
11728
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].start_time #=> String
11729
+ # resp.journey_response.open_hours.email["DayOfWeek"][0].end_time #=> String
11730
+ # resp.journey_response.open_hours.sms #=> Hash
11731
+ # resp.journey_response.open_hours.sms["DayOfWeek"] #=> Array
11732
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].start_time #=> String
11733
+ # resp.journey_response.open_hours.sms["DayOfWeek"][0].end_time #=> String
11734
+ # resp.journey_response.open_hours.push #=> Hash
11735
+ # resp.journey_response.open_hours.push["DayOfWeek"] #=> Array
11736
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].start_time #=> String
11737
+ # resp.journey_response.open_hours.push["DayOfWeek"][0].end_time #=> String
11738
+ # resp.journey_response.open_hours.voice #=> Hash
11739
+ # resp.journey_response.open_hours.voice["DayOfWeek"] #=> Array
11740
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].start_time #=> String
11741
+ # resp.journey_response.open_hours.voice["DayOfWeek"][0].end_time #=> String
11742
+ # resp.journey_response.open_hours.custom #=> Hash
11743
+ # resp.journey_response.open_hours.custom["DayOfWeek"] #=> Array
11744
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].start_time #=> String
11745
+ # resp.journey_response.open_hours.custom["DayOfWeek"][0].end_time #=> String
11746
+ # resp.journey_response.closed_days.email #=> Array
11747
+ # resp.journey_response.closed_days.email[0].name #=> String
11748
+ # resp.journey_response.closed_days.email[0].start_date_time #=> String
11749
+ # resp.journey_response.closed_days.email[0].end_date_time #=> String
11750
+ # resp.journey_response.closed_days.sms #=> Array
11751
+ # resp.journey_response.closed_days.sms[0].name #=> String
11752
+ # resp.journey_response.closed_days.sms[0].start_date_time #=> String
11753
+ # resp.journey_response.closed_days.sms[0].end_date_time #=> String
11754
+ # resp.journey_response.closed_days.push #=> Array
11755
+ # resp.journey_response.closed_days.push[0].name #=> String
11756
+ # resp.journey_response.closed_days.push[0].start_date_time #=> String
11757
+ # resp.journey_response.closed_days.push[0].end_date_time #=> String
11758
+ # resp.journey_response.closed_days.voice #=> Array
11759
+ # resp.journey_response.closed_days.voice[0].name #=> String
11760
+ # resp.journey_response.closed_days.voice[0].start_date_time #=> String
11761
+ # resp.journey_response.closed_days.voice[0].end_date_time #=> String
11762
+ # resp.journey_response.closed_days.custom #=> Array
11763
+ # resp.journey_response.closed_days.custom[0].name #=> String
11764
+ # resp.journey_response.closed_days.custom[0].start_date_time #=> String
11765
+ # resp.journey_response.closed_days.custom[0].end_date_time #=> String
11331
11766
  #
11332
11767
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/UpdateJourneyState AWS API Documentation
11333
11768
  #
@@ -12056,7 +12491,7 @@ module Aws::Pinpoint
12056
12491
  params: params,
12057
12492
  config: config)
12058
12493
  context[:gem_name] = 'aws-sdk-pinpoint'
12059
- context[:gem_version] = '1.67.0'
12494
+ context[:gem_version] = '1.69.0'
12060
12495
  Seahorse::Client::Request.new(handlers, context)
12061
12496
  end
12062
12497