aws-sdk-internetmonitor 1.0.0 → 1.1.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: ec79db6f139566947327de70f306b26516023e4e6a402559e300802f3591f3c8
4
- data.tar.gz: b16a053ae47f2e57a6786e58b3370e3551c12c3a8fbc335bff0d8a09a8a268fe
3
+ metadata.gz: a64919dffd5e49beb39fb9d7f1c4231d707277c9af739f897eae9470bf091862
4
+ data.tar.gz: 5c96643ea8db5a879d486366220faf1b9ba50286ff247fe56912ab1c247ee9c3
5
5
  SHA512:
6
- metadata.gz: 41f5d8df07e5149ef2cace7cbb4ec8ceaa32922668372bf9d36df60f0e1b570da3a59cf4ff63012de63356dc7c8ef2ac218e8df81e5ea021478da1cf0773751e
7
- data.tar.gz: 3ae389924675c2c5694c19c438fda38a18effc33988d9e482ba706da6a110575bda107bee2614265b3043c1469f98af20164fc589802222d07ef7fb727582c2e
6
+ metadata.gz: 825691071780d4f30b863a59644fcecfe6cdab7cca3304b9fef4aeaed033f8adc9d380d5c0da4002e208b2d67183908a60f136b9756069a8c6988ffb2cdd0b1b
7
+ data.tar.gz: d1db0ae24ce6e934c1bea9658e8c030ff3c148aaea49f2c4c79b55614552cf0d4a8c6580d993f1cec1771ea01dfc666e5351830bdd8bce4880de76e945f98e19
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.1.0 (2023-03-31)
5
+ ------------------
6
+
7
+ * Feature - This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to deliver internet measurements to Amazon S3 buckets as well as CloudWatch Logs.
8
+
4
9
  1.0.0 (2023-02-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
@@ -370,14 +370,26 @@ module Aws::InternetMonitor
370
370
 
371
371
  # Creates a monitor in Amazon CloudWatch Internet Monitor. A monitor is
372
372
  # built based on information from the application resources that you
373
- # add: Virtual Private Clouds (VPCs), Amazon CloudFront distributions,
374
- # and WorkSpaces directories.
373
+ # add: Amazon Virtual Private Clouds (VPCs), Amazon CloudFront
374
+ # distributions, and WorkSpaces directories. Internet Monitor then
375
+ # publishes internet measurements from Amazon Web Services that are
376
+ # specific to the *city-networks*, that is, the locations and ASNs
377
+ # (typically internet service providers or ISPs), where clients access
378
+ # your application. For more information, see [Using Amazon CloudWatch
379
+ # Internet Monitor][1] in the *Amazon CloudWatch User Guide*.
375
380
  #
376
- # After you create a monitor, you can view the internet performance for
377
- # your application, scoped to a location, as well as any health events
378
- # that are impairing traffic. Internet Monitor can also diagnose whether
379
- # the impairment is on the Amazon Web Services network or is an issue
380
- # with an internet service provider (ISP).
381
+ # When you create a monitor, you set a maximum limit for the number of
382
+ # city-networks where client traffic is monitored. The city-network
383
+ # maximum that you choose is the limit, but you only pay for the number
384
+ # of city-networks that are actually monitored. You can change the
385
+ # maximum at any time by updating your monitor. For more information,
386
+ # see [Choosing a city-network maximum value][2] in the *Amazon
387
+ # CloudWatch User Guide*.
388
+ #
389
+ #
390
+ #
391
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-InternetMonitor.html
392
+ # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/IMCityNetworksMaximum.html
381
393
  #
382
394
  # @option params [required, String] :monitor_name
383
395
  # The name of the monitor.
@@ -409,9 +421,24 @@ module Aws::InternetMonitor
409
421
  # Monitor.
410
422
  #
411
423
  # @option params [required, Integer] :max_city_networks_to_monitor
412
- # The maximum number of city-network combinations (that is, combinations
413
- # of a city location and network, such as an ISP) to be monitored for
414
- # your resources.
424
+ # The maximum number of city-networks to monitor for your resources. A
425
+ # city-network is the location (city) where clients access your
426
+ # application resources from and the network or ASN, such as an internet
427
+ # service provider (ISP), that clients access the resources through.
428
+ # This limit helps control billing costs.
429
+ #
430
+ # To learn more, see [Choosing a city-network maximum value ][1] in the
431
+ # Amazon CloudWatch Internet Monitor section of the *CloudWatch User
432
+ # Guide*.
433
+ #
434
+ #
435
+ #
436
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/IMCityNetworksMaximum.html
437
+ #
438
+ # @option params [Types::InternetMeasurementsLogDelivery] :internet_measurements_log_delivery
439
+ # Publish internet measurements for Internet Monitor to another
440
+ # location, such as an Amazon S3 bucket. The measurements are also
441
+ # published to Amazon CloudWatch Logs.
415
442
  #
416
443
  # @return [Types::CreateMonitorOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
417
444
  #
@@ -428,6 +455,13 @@ module Aws::InternetMonitor
428
455
  # "TagKey" => "TagValue",
429
456
  # },
430
457
  # max_city_networks_to_monitor: 1, # required
458
+ # internet_measurements_log_delivery: {
459
+ # s3_config: {
460
+ # bucket_name: "S3ConfigBucketNameString",
461
+ # bucket_prefix: "String",
462
+ # log_delivery_status: "ENABLED", # accepts ENABLED, DISABLED
463
+ # },
464
+ # },
431
465
  # })
432
466
  #
433
467
  # @example Response structure
@@ -576,6 +610,7 @@ module Aws::InternetMonitor
576
610
  # * {Types::GetMonitorOutput#processing_status_info #processing_status_info} => String
577
611
  # * {Types::GetMonitorOutput#tags #tags} => Hash<String,String>
578
612
  # * {Types::GetMonitorOutput#max_city_networks_to_monitor #max_city_networks_to_monitor} => Integer
613
+ # * {Types::GetMonitorOutput#internet_measurements_log_delivery #internet_measurements_log_delivery} => Types::InternetMeasurementsLogDelivery
579
614
  #
580
615
  # @example Request syntax with placeholder values
581
616
  #
@@ -597,6 +632,9 @@ module Aws::InternetMonitor
597
632
  # resp.tags #=> Hash
598
633
  # resp.tags["TagKey"] #=> String
599
634
  # resp.max_city_networks_to_monitor #=> Integer
635
+ # resp.internet_measurements_log_delivery.s3_config.bucket_name #=> String
636
+ # resp.internet_measurements_log_delivery.s3_config.bucket_prefix #=> String
637
+ # resp.internet_measurements_log_delivery.s3_config.log_delivery_status #=> String, one of "ENABLED", "DISABLED"
600
638
  #
601
639
  # @see http://docs.aws.amazon.com/goto/WebAPI/internetmonitor-2021-06-03/GetMonitor AWS API Documentation
602
640
  #
@@ -854,9 +892,19 @@ module Aws::InternetMonitor
854
892
  req.send_request(options)
855
893
  end
856
894
 
857
- # Updates a monitor. You can update a monitor to add or remove
858
- # resources, or to change the status of the monitor. You can't change
859
- # the name of a monitor.
895
+ # Updates a monitor. You can update a monitor to change the maximum
896
+ # number of city-networks (locations and ASNs or internet service
897
+ # providers), to add or remove resources, or to change the status of the
898
+ # monitor. Note that you can't change the name of a monitor.
899
+ #
900
+ # The city-network maximum that you choose is the limit, but you only
901
+ # pay for the number of city-networks that are actually monitored. For
902
+ # more information, see [Choosing a city-network maximum value][1] in
903
+ # the *Amazon CloudWatch User Guide*.
904
+ #
905
+ #
906
+ #
907
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/IMCityNetworksMaximum.html
860
908
  #
861
909
  # @option params [required, String] :monitor_name
862
910
  # The name of the monitor.
@@ -893,9 +941,15 @@ module Aws::InternetMonitor
893
941
  # not need to pass this option.**
894
942
  #
895
943
  # @option params [Integer] :max_city_networks_to_monitor
896
- # The maximum number of city-network combinations (that is, combinations
897
- # of a city location and network, such as an ISP) to be monitored for
898
- # your resources.
944
+ # The maximum number of city-networks to monitor for your resources. A
945
+ # city-network is the location (city) where clients access your
946
+ # application resources from and the network or ASN, such as an internet
947
+ # service provider, that clients access the resources through.
948
+ #
949
+ # @option params [Types::InternetMeasurementsLogDelivery] :internet_measurements_log_delivery
950
+ # Publish internet measurements for Internet Monitor to another
951
+ # location, such as an Amazon S3 bucket. The measurements are also
952
+ # published to Amazon CloudWatch Logs.
899
953
  #
900
954
  # @return [Types::UpdateMonitorOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
901
955
  #
@@ -911,6 +965,13 @@ module Aws::InternetMonitor
911
965
  # status: "PENDING", # accepts PENDING, ACTIVE, INACTIVE, ERROR
912
966
  # client_token: "String",
913
967
  # max_city_networks_to_monitor: 1,
968
+ # internet_measurements_log_delivery: {
969
+ # s3_config: {
970
+ # bucket_name: "S3ConfigBucketNameString",
971
+ # bucket_prefix: "String",
972
+ # log_delivery_status: "ENABLED", # accepts ENABLED, DISABLED
973
+ # },
974
+ # },
914
975
  # })
915
976
  #
916
977
  # @example Response structure
@@ -940,7 +1001,7 @@ module Aws::InternetMonitor
940
1001
  params: params,
941
1002
  config: config)
942
1003
  context[:gem_name] = 'aws-sdk-internetmonitor'
943
- context[:gem_version] = '1.0.0'
1004
+ context[:gem_version] = '1.1.0'
944
1005
  Seahorse::Client::Request.new(handlers, context)
945
1006
  end
946
1007
 
@@ -37,6 +37,7 @@ module Aws::InternetMonitor
37
37
  InternalServerErrorException = Shapes::StructureShape.new(name: 'InternalServerErrorException')
38
38
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
39
39
  InternetHealth = Shapes::StructureShape.new(name: 'InternetHealth')
40
+ InternetMeasurementsLogDelivery = Shapes::StructureShape.new(name: 'InternetMeasurementsLogDelivery')
40
41
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
41
42
  ListHealthEventsInput = Shapes::StructureShape.new(name: 'ListHealthEventsInput')
42
43
  ListHealthEventsOutput = Shapes::StructureShape.new(name: 'ListHealthEventsOutput')
@@ -44,6 +45,7 @@ module Aws::InternetMonitor
44
45
  ListMonitorsOutput = Shapes::StructureShape.new(name: 'ListMonitorsOutput')
45
46
  ListTagsForResourceInput = Shapes::StructureShape.new(name: 'ListTagsForResourceInput')
46
47
  ListTagsForResourceOutput = Shapes::StructureShape.new(name: 'ListTagsForResourceOutput')
48
+ LogDeliveryStatus = Shapes::StringShape.new(name: 'LogDeliveryStatus')
47
49
  Long = Shapes::IntegerShape.new(name: 'Long')
48
50
  MaxCityNetworksToMonitor = Shapes::IntegerShape.new(name: 'MaxCityNetworksToMonitor')
49
51
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
@@ -60,6 +62,8 @@ module Aws::InternetMonitor
60
62
  ResourceName = Shapes::StringShape.new(name: 'ResourceName')
61
63
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
62
64
  RoundTripTime = Shapes::StructureShape.new(name: 'RoundTripTime')
65
+ S3Config = Shapes::StructureShape.new(name: 'S3Config')
66
+ S3ConfigBucketNameString = Shapes::StringShape.new(name: 'S3ConfigBucketNameString')
63
67
  SetOfARNs = Shapes::ListShape.new(name: 'SetOfARNs')
64
68
  String = Shapes::StringShape.new(name: 'String')
65
69
  SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
@@ -97,6 +101,7 @@ module Aws::InternetMonitor
97
101
  CreateMonitorInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
98
102
  CreateMonitorInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
99
103
  CreateMonitorInput.add_member(:max_city_networks_to_monitor, Shapes::ShapeRef.new(shape: MaxCityNetworksToMonitor, required: true, location_name: "MaxCityNetworksToMonitor"))
104
+ CreateMonitorInput.add_member(:internet_measurements_log_delivery, Shapes::ShapeRef.new(shape: InternetMeasurementsLogDelivery, location_name: "InternetMeasurementsLogDelivery"))
100
105
  CreateMonitorInput.struct_class = Types::CreateMonitorInput
101
106
 
102
107
  CreateMonitorOutput.add_member(:arn, Shapes::ShapeRef.new(shape: MonitorArn, required: true, location_name: "Arn"))
@@ -137,6 +142,7 @@ module Aws::InternetMonitor
137
142
  GetMonitorOutput.add_member(:processing_status_info, Shapes::ShapeRef.new(shape: String, location_name: "ProcessingStatusInfo"))
138
143
  GetMonitorOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
139
144
  GetMonitorOutput.add_member(:max_city_networks_to_monitor, Shapes::ShapeRef.new(shape: MaxCityNetworksToMonitor, required: true, location_name: "MaxCityNetworksToMonitor"))
145
+ GetMonitorOutput.add_member(:internet_measurements_log_delivery, Shapes::ShapeRef.new(shape: InternetMeasurementsLogDelivery, location_name: "InternetMeasurementsLogDelivery"))
140
146
  GetMonitorOutput.struct_class = Types::GetMonitorOutput
141
147
 
142
148
  HealthEvent.add_member(:event_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "EventArn"))
@@ -181,6 +187,9 @@ module Aws::InternetMonitor
181
187
  InternetHealth.add_member(:performance, Shapes::ShapeRef.new(shape: PerformanceMeasurement, location_name: "Performance"))
182
188
  InternetHealth.struct_class = Types::InternetHealth
183
189
 
190
+ InternetMeasurementsLogDelivery.add_member(:s3_config, Shapes::ShapeRef.new(shape: S3Config, location_name: "S3Config"))
191
+ InternetMeasurementsLogDelivery.struct_class = Types::InternetMeasurementsLogDelivery
192
+
184
193
  LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
185
194
  LimitExceededException.struct_class = Types::LimitExceededException
186
195
 
@@ -247,6 +256,11 @@ module Aws::InternetMonitor
247
256
  RoundTripTime.add_member(:p95, Shapes::ShapeRef.new(shape: Double, location_name: "P95"))
248
257
  RoundTripTime.struct_class = Types::RoundTripTime
249
258
 
259
+ S3Config.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3ConfigBucketNameString, location_name: "BucketName"))
260
+ S3Config.add_member(:bucket_prefix, Shapes::ShapeRef.new(shape: String, location_name: "BucketPrefix"))
261
+ S3Config.add_member(:log_delivery_status, Shapes::ShapeRef.new(shape: LogDeliveryStatus, location_name: "LogDeliveryStatus"))
262
+ S3Config.struct_class = Types::S3Config
263
+
250
264
  SetOfARNs.member = Shapes::ShapeRef.new(shape: Arn)
251
265
 
252
266
  TagKeys.member = Shapes::ShapeRef.new(shape: TagKey)
@@ -278,6 +292,7 @@ module Aws::InternetMonitor
278
292
  UpdateMonitorInput.add_member(:status, Shapes::ShapeRef.new(shape: MonitorConfigState, location_name: "Status"))
279
293
  UpdateMonitorInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
280
294
  UpdateMonitorInput.add_member(:max_city_networks_to_monitor, Shapes::ShapeRef.new(shape: MaxCityNetworksToMonitor, location_name: "MaxCityNetworksToMonitor"))
295
+ UpdateMonitorInput.add_member(:internet_measurements_log_delivery, Shapes::ShapeRef.new(shape: InternetMeasurementsLogDelivery, location_name: "InternetMeasurementsLogDelivery"))
281
296
  UpdateMonitorInput.struct_class = Types::UpdateMonitorInput
282
297
 
283
298
  UpdateMonitorOutput.add_member(:monitor_arn, Shapes::ShapeRef.new(shape: MonitorArn, required: true, location_name: "MonitorArn"))
@@ -40,9 +40,9 @@ module Aws::InternetMonitor
40
40
  # equivalent to 1% of the traffic experiencing an availability drop for
41
41
  # that pair.
42
42
  #
43
- # For more information, see [ How Internet Monitor calculates
44
- # performance and availability scores][1] in the Amazon CloudWatch
45
- # Internet Monitor section of the Amazon CloudWatch User Guide.
43
+ # For more information, see [How Internet Monitor calculates performance
44
+ # and availability scores][1] in the Amazon CloudWatch Internet Monitor
45
+ # section of the *Amazon CloudWatch User Guide*.
46
46
  #
47
47
  #
48
48
  #
@@ -56,13 +56,13 @@ module Aws::InternetMonitor
56
56
  # specific geography or service provider, Amazon CloudWatch Internet
57
57
  # Monitor provides global health scores.
58
58
  #
59
- # The Amazon CloudWatch Internet Monitor chapter in the CloudWatch
60
- # User Guide includes detailed information about how Internet Monitor
59
+ # The Amazon CloudWatch Internet Monitor chapter in the *CloudWatch
60
+ # User Guide* includes detailed information about how Internet Monitor
61
61
  # calculates health scores, including performance and availability
62
62
  # scores, and when it creates and resolves health events. For more
63
- # information, see [ How Amazon Web Services calculates performance
64
- # and availability scores][1] in the Amazon CloudWatch Internet
65
- # Monitor section of the CloudWatch User Guide.
63
+ # information, see [How Amazon Web Services calculates performance and
64
+ # availability scores][1] in the Amazon CloudWatch Internet Monitor
65
+ # section of the *CloudWatch User Guide*.
66
66
  #
67
67
  #
68
68
  #
@@ -73,8 +73,8 @@ module Aws::InternetMonitor
73
73
  # The percentage of impact caused by a health event for total traffic
74
74
  # globally.
75
75
  #
76
- # For information about how Internet Monitor calculates impact, see [
77
- # Inside Internet Monitor][1] in the Amazon CloudWatch Internet
76
+ # For information about how Internet Monitor calculates impact, see
77
+ # [Inside Internet Monitor][1] in the Amazon CloudWatch Internet
78
78
  # Monitor section of the Amazon CloudWatch User Guide.
79
79
  #
80
80
  #
@@ -86,8 +86,8 @@ module Aws::InternetMonitor
86
86
  # The percentage of impact caused by a health event for client
87
87
  # location traffic globally.
88
88
  #
89
- # For information about how Internet Monitor calculates impact, see [
90
- # Inside Internet Monitor][1] in the Amazon CloudWatch Internet
89
+ # For information about how Internet Monitor calculates impact, see
90
+ # [Inside Internet Monitor][1] in the Amazon CloudWatch Internet
91
91
  # Monitor section of the Amazon CloudWatch User Guide.
92
92
  #
93
93
  #
@@ -165,11 +165,27 @@ module Aws::InternetMonitor
165
165
  # @return [Hash<String,String>]
166
166
  #
167
167
  # @!attribute [rw] max_city_networks_to_monitor
168
- # The maximum number of city-network combinations (that is,
169
- # combinations of a city location and network, such as an ISP) to be
170
- # monitored for your resources.
168
+ # The maximum number of city-networks to monitor for your resources. A
169
+ # city-network is the location (city) where clients access your
170
+ # application resources from and the network or ASN, such as an
171
+ # internet service provider (ISP), that clients access the resources
172
+ # through. This limit helps control billing costs.
173
+ #
174
+ # To learn more, see [Choosing a city-network maximum value ][1] in
175
+ # the Amazon CloudWatch Internet Monitor section of the *CloudWatch
176
+ # User Guide*.
177
+ #
178
+ #
179
+ #
180
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/IMCityNetworksMaximum.html
171
181
  # @return [Integer]
172
182
  #
183
+ # @!attribute [rw] internet_measurements_log_delivery
184
+ # Publish internet measurements for Internet Monitor to another
185
+ # location, such as an Amazon S3 bucket. The measurements are also
186
+ # published to Amazon CloudWatch Logs.
187
+ # @return [Types::InternetMeasurementsLogDelivery]
188
+ #
173
189
  # @see http://docs.aws.amazon.com/goto/WebAPI/internetmonitor-2021-06-03/CreateMonitorInput AWS API Documentation
174
190
  #
175
191
  class CreateMonitorInput < Struct.new(
@@ -177,7 +193,8 @@ module Aws::InternetMonitor
177
193
  :resources,
178
194
  :client_token,
179
195
  :tags,
180
- :max_city_networks_to_monitor)
196
+ :max_city_networks_to_monitor,
197
+ :internet_measurements_log_delivery)
181
198
  SENSITIVE = []
182
199
  include Aws::Structure
183
200
  end
@@ -343,11 +360,27 @@ module Aws::InternetMonitor
343
360
  # @return [Hash<String,String>]
344
361
  #
345
362
  # @!attribute [rw] max_city_networks_to_monitor
346
- # The maximum number of city-network combinations (that is,
347
- # combinations of a city location and network, such as an ISP) to be
348
- # monitored for your resources.
363
+ # The maximum number of city-networks to monitor for your resources. A
364
+ # city-network is the location (city) where clients access your
365
+ # application resources from and the network or ASN, such as an
366
+ # internet service provider (ISP), that clients access the resources
367
+ # through. This limit helps control billing costs.
368
+ #
369
+ # To learn more, see [Choosing a city-network maximum value ][1] in
370
+ # the Amazon CloudWatch Internet Monitor section of the *CloudWatch
371
+ # User Guide*.
372
+ #
373
+ #
374
+ #
375
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/IMCityNetworksMaximum.html
349
376
  # @return [Integer]
350
377
  #
378
+ # @!attribute [rw] internet_measurements_log_delivery
379
+ # Publish internet measurements for Internet Monitor to another
380
+ # location, such as an Amazon S3 bucket. The measurements are also
381
+ # published to Amazon CloudWatch Logs.
382
+ # @return [Types::InternetMeasurementsLogDelivery]
383
+ #
351
384
  # @see http://docs.aws.amazon.com/goto/WebAPI/internetmonitor-2021-06-03/GetMonitorOutput AWS API Documentation
352
385
  #
353
386
  class GetMonitorOutput < Struct.new(
@@ -360,7 +393,8 @@ module Aws::InternetMonitor
360
393
  :processing_status,
361
394
  :processing_status_info,
362
395
  :tags,
363
- :max_city_networks_to_monitor)
396
+ :max_city_networks_to_monitor,
397
+ :internet_measurements_log_delivery)
364
398
  SENSITIVE = []
365
399
  include Aws::Structure
366
400
  end
@@ -573,9 +607,9 @@ module Aws::InternetMonitor
573
607
  # is equivalent to 1% of the traffic experiencing an availability drop
574
608
  # for that pair.
575
609
  #
576
- # For more information, see [ How Internet Monitor calculates
610
+ # For more information, see [How Internet Monitor calculates
577
611
  # performance and availability scores][1] in the Amazon CloudWatch
578
- # Internet Monitor section of the Amazon CloudWatch User Guide.
612
+ # Internet Monitor section of the *CloudWatch User Guide*.
579
613
  #
580
614
  #
581
615
  #
@@ -589,9 +623,9 @@ module Aws::InternetMonitor
589
623
  # is equivalent to 1% of the traffic experiencing a performance drop
590
624
  # for that pair.
591
625
  #
592
- # For more information, see [ How Internet Monitor calculates
626
+ # For more information, see [How Internet Monitor calculates
593
627
  # performance and availability scores][1] in the Amazon CloudWatch
594
- # Internet Monitor section of the Amazon CloudWatch User Guide.
628
+ # Internet Monitor section of the *CloudWatch User Guide*.
595
629
  #
596
630
  #
597
631
  #
@@ -607,6 +641,28 @@ module Aws::InternetMonitor
607
641
  include Aws::Structure
608
642
  end
609
643
 
644
+ # Configuration information for other locations that you choose to
645
+ # publish Amazon CloudWatch Internet Monitor internet measurements to,
646
+ # such as Amazon S3. The measurements are also published to Amazon
647
+ # CloudWatch Logs.
648
+ #
649
+ # @!attribute [rw] s3_config
650
+ # The configuration information for publishing Internet Monitor
651
+ # internet measurements to Amazon S3. The configuration includes the
652
+ # bucket name and (optionally) prefix for the S3 bucket to store the
653
+ # measurements, and the delivery status. The delivery status is
654
+ # `ENABLED` or `DISABLED`, depending on whether you choose to deliver
655
+ # internet measurements to S3 logs.
656
+ # @return [Types::S3Config]
657
+ #
658
+ # @see http://docs.aws.amazon.com/goto/WebAPI/internetmonitor-2021-06-03/InternetMeasurementsLogDelivery AWS API Documentation
659
+ #
660
+ class InternetMeasurementsLogDelivery < Struct.new(
661
+ :s3_config)
662
+ SENSITIVE = []
663
+ include Aws::Structure
664
+ end
665
+
610
666
  # The request exceeded a service quota.
611
667
  #
612
668
  # @!attribute [rw] message
@@ -858,9 +914,9 @@ module Aws::InternetMonitor
858
914
  # equivalent to 1% of the traffic experiencing a performance drop for
859
915
  # that pair.
860
916
  #
861
- # For more information, see [ How Internet Monitor calculates
862
- # performance and availability scores][1] in the Amazon CloudWatch
863
- # Internet Monitor section of the Amazon CloudWatch User Guide.
917
+ # For more information, see [How Internet Monitor calculates performance
918
+ # and availability scores][1] in the Amazon CloudWatch Internet Monitor
919
+ # section of the *CloudWatch User Guide*.
864
920
  #
865
921
  #
866
922
  #
@@ -878,9 +934,9 @@ module Aws::InternetMonitor
878
934
  # User Guide includes detailed information about how Internet Monitor
879
935
  # calculates health scores, including performance and availability
880
936
  # scores, and when it creates and resolves health events. For more
881
- # information, see [ How Amazon Web Services calculates performance
882
- # and availability scores][1] in the Amazon CloudWatch Internet
883
- # Monitor section of the CloudWatch User Guide.
937
+ # information, see [How Amazon Web Services calculates performance and
938
+ # availability scores][1] in the Amazon CloudWatch Internet Monitor
939
+ # section of the *CloudWatch User Guide*.
884
940
  #
885
941
  #
886
942
  #
@@ -893,9 +949,9 @@ module Aws::InternetMonitor
893
949
  # much latency increased during the event compared to typical
894
950
  # performance for your application traffic globally.
895
951
  #
896
- # For more information, see [ When Amazon Web Services creates and
952
+ # For more information, see [When Amazon Web Services creates and
897
953
  # resolves health events][1] in the Amazon CloudWatch Internet Monitor
898
- # section of the CloudWatch User Guide.
954
+ # section of the *CloudWatch User Guide*.
899
955
  #
900
956
  #
901
957
  #
@@ -909,9 +965,9 @@ module Aws::InternetMonitor
909
965
  # for traffic, from this client location to an Amazon Web Services
910
966
  # location, using a specific client network.
911
967
  #
912
- # For more information, see [ When Amazon Web Services creates and
968
+ # For more information, see [When Amazon Web Services creates and
913
969
  # resolves health events][1] in the Amazon CloudWatch Internet Monitor
914
- # section of the CloudWatch User Guide.
970
+ # section of the *CloudWatch User Guide*.
915
971
  #
916
972
  #
917
973
  #
@@ -923,9 +979,9 @@ module Aws::InternetMonitor
923
979
  # the event compared to typical round-trip time for your application
924
980
  # for traffic.
925
981
  #
926
- # For more information, see [ When Amazon Web Services creates and
982
+ # For more information, see [When Amazon Web Services creates and
927
983
  # resolves health events][1] in the Amazon CloudWatch Internet Monitor
928
- # section of the CloudWatch User Guide.
984
+ # section of the *CloudWatch User Guide*.
929
985
  #
930
986
  #
931
987
  #
@@ -982,6 +1038,36 @@ module Aws::InternetMonitor
982
1038
  include Aws::Structure
983
1039
  end
984
1040
 
1041
+ # The configuration for publishing Amazon CloudWatch Internet Monitor
1042
+ # internet measurements to Amazon S3. The configuration includes the
1043
+ # bucket name and (optionally) prefix for the S3 bucket to store the
1044
+ # measurements, and the delivery status. The delivery status is
1045
+ # `ENABLED` or `DISABLED`, depending on whether you choose to deliver
1046
+ # internet measurements to S3 logs.
1047
+ #
1048
+ # @!attribute [rw] bucket_name
1049
+ # The Amazon S3 bucket name.
1050
+ # @return [String]
1051
+ #
1052
+ # @!attribute [rw] bucket_prefix
1053
+ # The Amazon S3 bucket prefix.
1054
+ # @return [String]
1055
+ #
1056
+ # @!attribute [rw] log_delivery_status
1057
+ # The status of publishing Internet Monitor internet measurements to
1058
+ # an Amazon S3 bucket.
1059
+ # @return [String]
1060
+ #
1061
+ # @see http://docs.aws.amazon.com/goto/WebAPI/internetmonitor-2021-06-03/S3Config AWS API Documentation
1062
+ #
1063
+ class S3Config < Struct.new(
1064
+ :bucket_name,
1065
+ :bucket_prefix,
1066
+ :log_delivery_status)
1067
+ SENSITIVE = []
1068
+ include Aws::Structure
1069
+ end
1070
+
985
1071
  # @!attribute [rw] resource_arn
986
1072
  # The Amazon Resource Name (ARN) for a tag that you add to a resource.
987
1073
  # Tags are supported only for monitors in Amazon CloudWatch Internet
@@ -1093,11 +1179,19 @@ module Aws::InternetMonitor
1093
1179
  # @return [String]
1094
1180
  #
1095
1181
  # @!attribute [rw] max_city_networks_to_monitor
1096
- # The maximum number of city-network combinations (that is,
1097
- # combinations of a city location and network, such as an ISP) to be
1098
- # monitored for your resources.
1182
+ # The maximum number of city-networks to monitor for your resources. A
1183
+ # city-network is the location (city) where clients access your
1184
+ # application resources from and the network or ASN, such as an
1185
+ # internet service provider, that clients access the resources
1186
+ # through.
1099
1187
  # @return [Integer]
1100
1188
  #
1189
+ # @!attribute [rw] internet_measurements_log_delivery
1190
+ # Publish internet measurements for Internet Monitor to another
1191
+ # location, such as an Amazon S3 bucket. The measurements are also
1192
+ # published to Amazon CloudWatch Logs.
1193
+ # @return [Types::InternetMeasurementsLogDelivery]
1194
+ #
1101
1195
  # @see http://docs.aws.amazon.com/goto/WebAPI/internetmonitor-2021-06-03/UpdateMonitorInput AWS API Documentation
1102
1196
  #
1103
1197
  class UpdateMonitorInput < Struct.new(
@@ -1106,7 +1200,8 @@ module Aws::InternetMonitor
1106
1200
  :resources_to_remove,
1107
1201
  :status,
1108
1202
  :client_token,
1109
- :max_city_networks_to_monitor)
1203
+ :max_city_networks_to_monitor,
1204
+ :internet_measurements_log_delivery)
1110
1205
  SENSITIVE = []
1111
1206
  include Aws::Structure
1112
1207
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-internetmonitor/customizations'
53
53
  # @!group service
54
54
  module Aws::InternetMonitor
55
55
 
56
- GEM_VERSION = '1.0.0'
56
+ GEM_VERSION = '1.1.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-internetmonitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.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: 2023-02-27 00:00:00.000000000 Z
11
+ date: 2023-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core