aws-sdk-cloudfront 1.128.0 → 1.140.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +60 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +1518 -83
- data/lib/aws-sdk-cloudfront/client_api.rb +680 -0
- data/lib/aws-sdk-cloudfront/customizations.rb +0 -1
- data/lib/aws-sdk-cloudfront/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-cloudfront/signer.rb +14 -20
- data/lib/aws-sdk-cloudfront/types.rb +1225 -9
- data/lib/aws-sdk-cloudfront.rb +1 -1
- data/sig/client.rbs +333 -7
- data/sig/types.rbs +354 -1
- metadata +3 -3
|
@@ -236,6 +236,15 @@ module Aws::CloudFront
|
|
|
236
236
|
# The Amazon Resource Name (ARN) of the Anycast static IP list.
|
|
237
237
|
# @return [String]
|
|
238
238
|
#
|
|
239
|
+
# @!attribute [rw] ip_address_type
|
|
240
|
+
# The IP address type for the Anycast static IP list.
|
|
241
|
+
# @return [String]
|
|
242
|
+
#
|
|
243
|
+
# @!attribute [rw] ipam_config
|
|
244
|
+
# The IPAM configuration for the Anycast static IP list, that contains
|
|
245
|
+
# the quantity and list of IPAM CIDR configurations.
|
|
246
|
+
# @return [Types::IpamConfig]
|
|
247
|
+
#
|
|
239
248
|
# @!attribute [rw] anycast_ips
|
|
240
249
|
# The static IP addresses that are allocated to the Anycast static IP
|
|
241
250
|
# list.
|
|
@@ -256,6 +265,8 @@ module Aws::CloudFront
|
|
|
256
265
|
:name,
|
|
257
266
|
:status,
|
|
258
267
|
:arn,
|
|
268
|
+
:ip_address_type,
|
|
269
|
+
:ipam_config,
|
|
259
270
|
:anycast_ips,
|
|
260
271
|
:ip_count,
|
|
261
272
|
:last_modified_time)
|
|
@@ -339,6 +350,19 @@ module Aws::CloudFront
|
|
|
339
350
|
# The last time the Anycast static IP list was modified.
|
|
340
351
|
# @return [Time]
|
|
341
352
|
#
|
|
353
|
+
# @!attribute [rw] ip_address_type
|
|
354
|
+
# The IP address type for the Anycast static IP list.
|
|
355
|
+
# @return [String]
|
|
356
|
+
#
|
|
357
|
+
# @!attribute [rw] etag
|
|
358
|
+
# The current version (ETag value) of the Anycast static IP list.
|
|
359
|
+
# @return [String]
|
|
360
|
+
#
|
|
361
|
+
# @!attribute [rw] ipam_config
|
|
362
|
+
# The IPAM configuration for the Anycast static IP list, that contains
|
|
363
|
+
# the quantity and list of IPAM CIDR configurations.
|
|
364
|
+
# @return [Types::IpamConfig]
|
|
365
|
+
#
|
|
342
366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/AnycastIpListSummary AWS API Documentation
|
|
343
367
|
#
|
|
344
368
|
class AnycastIpListSummary < Struct.new(
|
|
@@ -347,7 +371,10 @@ module Aws::CloudFront
|
|
|
347
371
|
:status,
|
|
348
372
|
:arn,
|
|
349
373
|
:ip_count,
|
|
350
|
-
:last_modified_time
|
|
374
|
+
:last_modified_time,
|
|
375
|
+
:ip_address_type,
|
|
376
|
+
:etag,
|
|
377
|
+
:ipam_config)
|
|
351
378
|
SENSITIVE = []
|
|
352
379
|
include Aws::Structure
|
|
353
380
|
end
|
|
@@ -490,6 +517,56 @@ module Aws::CloudFront
|
|
|
490
517
|
include Aws::Structure
|
|
491
518
|
end
|
|
492
519
|
|
|
520
|
+
# The CA certificates bundle location in Amazon S3.
|
|
521
|
+
#
|
|
522
|
+
# @!attribute [rw] bucket
|
|
523
|
+
# The S3 bucket.
|
|
524
|
+
# @return [String]
|
|
525
|
+
#
|
|
526
|
+
# @!attribute [rw] key
|
|
527
|
+
# The location's key.
|
|
528
|
+
# @return [String]
|
|
529
|
+
#
|
|
530
|
+
# @!attribute [rw] region
|
|
531
|
+
# The location's Region.
|
|
532
|
+
# @return [String]
|
|
533
|
+
#
|
|
534
|
+
# @!attribute [rw] version
|
|
535
|
+
# The location's version.
|
|
536
|
+
# @return [String]
|
|
537
|
+
#
|
|
538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CaCertificatesBundleS3Location AWS API Documentation
|
|
539
|
+
#
|
|
540
|
+
class CaCertificatesBundleS3Location < Struct.new(
|
|
541
|
+
:bucket,
|
|
542
|
+
:key,
|
|
543
|
+
:region,
|
|
544
|
+
:version)
|
|
545
|
+
SENSITIVE = []
|
|
546
|
+
include Aws::Structure
|
|
547
|
+
end
|
|
548
|
+
|
|
549
|
+
# A CA certificates bundle source.
|
|
550
|
+
#
|
|
551
|
+
# @note CaCertificatesBundleSource is a union - when making an API calls you must set exactly one of the members.
|
|
552
|
+
#
|
|
553
|
+
# @!attribute [rw] ca_certificates_bundle_s3_location
|
|
554
|
+
# The CA certificates bundle location in Amazon S3.
|
|
555
|
+
# @return [Types::CaCertificatesBundleS3Location]
|
|
556
|
+
#
|
|
557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CaCertificatesBundleSource AWS API Documentation
|
|
558
|
+
#
|
|
559
|
+
class CaCertificatesBundleSource < Struct.new(
|
|
560
|
+
:ca_certificates_bundle_s3_location,
|
|
561
|
+
:unknown)
|
|
562
|
+
SENSITIVE = []
|
|
563
|
+
include Aws::Structure
|
|
564
|
+
include Aws::Structure::Union
|
|
565
|
+
|
|
566
|
+
class CaCertificatesBundleS3Location < CaCertificatesBundleSource; end
|
|
567
|
+
class Unknown < CaCertificatesBundleSource; end
|
|
568
|
+
end
|
|
569
|
+
|
|
493
570
|
# A complex type that describes how CloudFront processes requests.
|
|
494
571
|
#
|
|
495
572
|
# You must create at least as many cache behaviors (including the
|
|
@@ -1617,6 +1694,103 @@ module Aws::CloudFront
|
|
|
1617
1694
|
include Aws::Structure
|
|
1618
1695
|
end
|
|
1619
1696
|
|
|
1697
|
+
# A connection function association.
|
|
1698
|
+
#
|
|
1699
|
+
# @!attribute [rw] id
|
|
1700
|
+
# The association's ID.
|
|
1701
|
+
# @return [String]
|
|
1702
|
+
#
|
|
1703
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConnectionFunctionAssociation AWS API Documentation
|
|
1704
|
+
#
|
|
1705
|
+
class ConnectionFunctionAssociation < Struct.new(
|
|
1706
|
+
:id)
|
|
1707
|
+
SENSITIVE = []
|
|
1708
|
+
include Aws::Structure
|
|
1709
|
+
end
|
|
1710
|
+
|
|
1711
|
+
# A connection function summary.
|
|
1712
|
+
#
|
|
1713
|
+
# @!attribute [rw] name
|
|
1714
|
+
# The connection function name.
|
|
1715
|
+
# @return [String]
|
|
1716
|
+
#
|
|
1717
|
+
# @!attribute [rw] id
|
|
1718
|
+
# The connection function ID.
|
|
1719
|
+
# @return [String]
|
|
1720
|
+
#
|
|
1721
|
+
# @!attribute [rw] connection_function_config
|
|
1722
|
+
# Contains configuration information about a CloudFront function.
|
|
1723
|
+
# @return [Types::FunctionConfig]
|
|
1724
|
+
#
|
|
1725
|
+
# @!attribute [rw] connection_function_arn
|
|
1726
|
+
# The connection function Amazon Resource Name (ARN).
|
|
1727
|
+
# @return [String]
|
|
1728
|
+
#
|
|
1729
|
+
# @!attribute [rw] status
|
|
1730
|
+
# The connection function status.
|
|
1731
|
+
# @return [String]
|
|
1732
|
+
#
|
|
1733
|
+
# @!attribute [rw] stage
|
|
1734
|
+
# The connection function stage.
|
|
1735
|
+
# @return [String]
|
|
1736
|
+
#
|
|
1737
|
+
# @!attribute [rw] created_time
|
|
1738
|
+
# The connection function created time.
|
|
1739
|
+
# @return [Time]
|
|
1740
|
+
#
|
|
1741
|
+
# @!attribute [rw] last_modified_time
|
|
1742
|
+
# The connection function last modified time.
|
|
1743
|
+
# @return [Time]
|
|
1744
|
+
#
|
|
1745
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConnectionFunctionSummary AWS API Documentation
|
|
1746
|
+
#
|
|
1747
|
+
class ConnectionFunctionSummary < Struct.new(
|
|
1748
|
+
:name,
|
|
1749
|
+
:id,
|
|
1750
|
+
:connection_function_config,
|
|
1751
|
+
:connection_function_arn,
|
|
1752
|
+
:status,
|
|
1753
|
+
:stage,
|
|
1754
|
+
:created_time,
|
|
1755
|
+
:last_modified_time)
|
|
1756
|
+
SENSITIVE = []
|
|
1757
|
+
include Aws::Structure
|
|
1758
|
+
end
|
|
1759
|
+
|
|
1760
|
+
# A connection function test result.
|
|
1761
|
+
#
|
|
1762
|
+
# @!attribute [rw] connection_function_summary
|
|
1763
|
+
# The connection function summary.
|
|
1764
|
+
# @return [Types::ConnectionFunctionSummary]
|
|
1765
|
+
#
|
|
1766
|
+
# @!attribute [rw] compute_utilization
|
|
1767
|
+
# The connection function compute utilization.
|
|
1768
|
+
# @return [String]
|
|
1769
|
+
#
|
|
1770
|
+
# @!attribute [rw] connection_function_execution_logs
|
|
1771
|
+
# The connection function execution logs.
|
|
1772
|
+
# @return [Array<String>]
|
|
1773
|
+
#
|
|
1774
|
+
# @!attribute [rw] connection_function_error_message
|
|
1775
|
+
# The connection function error message.
|
|
1776
|
+
# @return [String]
|
|
1777
|
+
#
|
|
1778
|
+
# @!attribute [rw] connection_function_output
|
|
1779
|
+
# The connection function output.
|
|
1780
|
+
# @return [String]
|
|
1781
|
+
#
|
|
1782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConnectionFunctionTestResult AWS API Documentation
|
|
1783
|
+
#
|
|
1784
|
+
class ConnectionFunctionTestResult < Struct.new(
|
|
1785
|
+
:connection_function_summary,
|
|
1786
|
+
:compute_utilization,
|
|
1787
|
+
:connection_function_execution_logs,
|
|
1788
|
+
:connection_function_error_message,
|
|
1789
|
+
:connection_function_output)
|
|
1790
|
+
SENSITIVE = [:connection_function_execution_logs, :connection_function_error_message, :connection_function_output]
|
|
1791
|
+
include Aws::Structure
|
|
1792
|
+
end
|
|
1793
|
+
|
|
1620
1794
|
# The connection group for your distribution tenants. When you first
|
|
1621
1795
|
# create a distribution tenant and you don't specify a connection
|
|
1622
1796
|
# group, CloudFront will automatically create a default connection group
|
|
@@ -2216,12 +2390,31 @@ module Aws::CloudFront
|
|
|
2216
2390
|
# A complex type that contains zero or more `Tag` elements.
|
|
2217
2391
|
# @return [Types::Tags]
|
|
2218
2392
|
#
|
|
2393
|
+
# @!attribute [rw] ip_address_type
|
|
2394
|
+
# The IP address type for the Anycast static IP list. You can specify
|
|
2395
|
+
# one of the following options:
|
|
2396
|
+
#
|
|
2397
|
+
# * `ipv4` only
|
|
2398
|
+
#
|
|
2399
|
+
# * `ipv6` only
|
|
2400
|
+
#
|
|
2401
|
+
# * `dualstack` - Allocate a list of both IPv4 and IPv6 addresses
|
|
2402
|
+
# @return [String]
|
|
2403
|
+
#
|
|
2404
|
+
# @!attribute [rw] ipam_cidr_configs
|
|
2405
|
+
# A list of IPAM CIDR configurations that specify the IP address
|
|
2406
|
+
# ranges and IPAM pool settings for creating the Anycast static IP
|
|
2407
|
+
# list.
|
|
2408
|
+
# @return [Array<Types::IpamCidrConfig>]
|
|
2409
|
+
#
|
|
2219
2410
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateAnycastIpListRequest AWS API Documentation
|
|
2220
2411
|
#
|
|
2221
2412
|
class CreateAnycastIpListRequest < Struct.new(
|
|
2222
2413
|
:name,
|
|
2223
2414
|
:ip_count,
|
|
2224
|
-
:tags
|
|
2415
|
+
:tags,
|
|
2416
|
+
:ip_address_type,
|
|
2417
|
+
:ipam_cidr_configs)
|
|
2225
2418
|
SENSITIVE = []
|
|
2226
2419
|
include Aws::Structure
|
|
2227
2420
|
end
|
|
@@ -2327,6 +2520,56 @@ module Aws::CloudFront
|
|
|
2327
2520
|
include Aws::Structure
|
|
2328
2521
|
end
|
|
2329
2522
|
|
|
2523
|
+
# @!attribute [rw] name
|
|
2524
|
+
# A name for the connection function.
|
|
2525
|
+
# @return [String]
|
|
2526
|
+
#
|
|
2527
|
+
# @!attribute [rw] connection_function_config
|
|
2528
|
+
# Contains configuration information about a CloudFront function.
|
|
2529
|
+
# @return [Types::FunctionConfig]
|
|
2530
|
+
#
|
|
2531
|
+
# @!attribute [rw] connection_function_code
|
|
2532
|
+
# The code for the connection function.
|
|
2533
|
+
# @return [String]
|
|
2534
|
+
#
|
|
2535
|
+
# @!attribute [rw] tags
|
|
2536
|
+
# A complex type that contains zero or more `Tag` elements.
|
|
2537
|
+
# @return [Types::Tags]
|
|
2538
|
+
#
|
|
2539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateConnectionFunctionRequest AWS API Documentation
|
|
2540
|
+
#
|
|
2541
|
+
class CreateConnectionFunctionRequest < Struct.new(
|
|
2542
|
+
:name,
|
|
2543
|
+
:connection_function_config,
|
|
2544
|
+
:connection_function_code,
|
|
2545
|
+
:tags)
|
|
2546
|
+
SENSITIVE = [:connection_function_code]
|
|
2547
|
+
include Aws::Structure
|
|
2548
|
+
end
|
|
2549
|
+
|
|
2550
|
+
# @!attribute [rw] connection_function_summary
|
|
2551
|
+
# The summary for the connection function.
|
|
2552
|
+
# @return [Types::ConnectionFunctionSummary]
|
|
2553
|
+
#
|
|
2554
|
+
# @!attribute [rw] location
|
|
2555
|
+
# The location of the connection function.
|
|
2556
|
+
# @return [String]
|
|
2557
|
+
#
|
|
2558
|
+
# @!attribute [rw] etag
|
|
2559
|
+
# The version identifier for the current version of the connection
|
|
2560
|
+
# function.
|
|
2561
|
+
# @return [String]
|
|
2562
|
+
#
|
|
2563
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateConnectionFunctionResult AWS API Documentation
|
|
2564
|
+
#
|
|
2565
|
+
class CreateConnectionFunctionResult < Struct.new(
|
|
2566
|
+
:connection_function_summary,
|
|
2567
|
+
:location,
|
|
2568
|
+
:etag)
|
|
2569
|
+
SENSITIVE = []
|
|
2570
|
+
include Aws::Structure
|
|
2571
|
+
end
|
|
2572
|
+
|
|
2330
2573
|
# @!attribute [rw] name
|
|
2331
2574
|
# The name of the connection group. Enter a friendly identifier that
|
|
2332
2575
|
# is unique within your Amazon Web Services account. This name can't
|
|
@@ -3160,6 +3403,45 @@ module Aws::CloudFront
|
|
|
3160
3403
|
include Aws::Structure
|
|
3161
3404
|
end
|
|
3162
3405
|
|
|
3406
|
+
# @!attribute [rw] name
|
|
3407
|
+
# A name for the trust store.
|
|
3408
|
+
# @return [String]
|
|
3409
|
+
#
|
|
3410
|
+
# @!attribute [rw] ca_certificates_bundle_source
|
|
3411
|
+
# The CA certificates bundle source for the trust store.
|
|
3412
|
+
# @return [Types::CaCertificatesBundleSource]
|
|
3413
|
+
#
|
|
3414
|
+
# @!attribute [rw] tags
|
|
3415
|
+
# A complex type that contains zero or more `Tag` elements.
|
|
3416
|
+
# @return [Types::Tags]
|
|
3417
|
+
#
|
|
3418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateTrustStoreRequest AWS API Documentation
|
|
3419
|
+
#
|
|
3420
|
+
class CreateTrustStoreRequest < Struct.new(
|
|
3421
|
+
:name,
|
|
3422
|
+
:ca_certificates_bundle_source,
|
|
3423
|
+
:tags)
|
|
3424
|
+
SENSITIVE = []
|
|
3425
|
+
include Aws::Structure
|
|
3426
|
+
end
|
|
3427
|
+
|
|
3428
|
+
# @!attribute [rw] trust_store
|
|
3429
|
+
# The trust store.
|
|
3430
|
+
# @return [Types::TrustStore]
|
|
3431
|
+
#
|
|
3432
|
+
# @!attribute [rw] etag
|
|
3433
|
+
# The version identifier for the current version of the trust store.
|
|
3434
|
+
# @return [String]
|
|
3435
|
+
#
|
|
3436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateTrustStoreResult AWS API Documentation
|
|
3437
|
+
#
|
|
3438
|
+
class CreateTrustStoreResult < Struct.new(
|
|
3439
|
+
:trust_store,
|
|
3440
|
+
:etag)
|
|
3441
|
+
SENSITIVE = []
|
|
3442
|
+
include Aws::Structure
|
|
3443
|
+
end
|
|
3444
|
+
|
|
3163
3445
|
# @!attribute [rw] vpc_origin_endpoint_config
|
|
3164
3446
|
# The VPC origin endpoint configuration.
|
|
3165
3447
|
# @return [Types::VpcOriginEndpointConfig]
|
|
@@ -3900,6 +4182,24 @@ module Aws::CloudFront
|
|
|
3900
4182
|
include Aws::Structure
|
|
3901
4183
|
end
|
|
3902
4184
|
|
|
4185
|
+
# @!attribute [rw] id
|
|
4186
|
+
# The connection function's ID.
|
|
4187
|
+
# @return [String]
|
|
4188
|
+
#
|
|
4189
|
+
# @!attribute [rw] if_match
|
|
4190
|
+
# The current version (`ETag` value) of the connection function you
|
|
4191
|
+
# are deleting.
|
|
4192
|
+
# @return [String]
|
|
4193
|
+
#
|
|
4194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DeleteConnectionFunctionRequest AWS API Documentation
|
|
4195
|
+
#
|
|
4196
|
+
class DeleteConnectionFunctionRequest < Struct.new(
|
|
4197
|
+
:id,
|
|
4198
|
+
:if_match)
|
|
4199
|
+
SENSITIVE = []
|
|
4200
|
+
include Aws::Structure
|
|
4201
|
+
end
|
|
4202
|
+
|
|
3903
4203
|
# @!attribute [rw] id
|
|
3904
4204
|
# The ID of the connection group to delete.
|
|
3905
4205
|
# @return [String]
|
|
@@ -4202,6 +4502,19 @@ module Aws::CloudFront
|
|
|
4202
4502
|
include Aws::Structure
|
|
4203
4503
|
end
|
|
4204
4504
|
|
|
4505
|
+
# @!attribute [rw] resource_arn
|
|
4506
|
+
# The Amazon Resource Name (ARN) of the CloudFront resource for which
|
|
4507
|
+
# the resource policy should be deleted.
|
|
4508
|
+
# @return [String]
|
|
4509
|
+
#
|
|
4510
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DeleteResourcePolicyRequest AWS API Documentation
|
|
4511
|
+
#
|
|
4512
|
+
class DeleteResourcePolicyRequest < Struct.new(
|
|
4513
|
+
:resource_arn)
|
|
4514
|
+
SENSITIVE = []
|
|
4515
|
+
include Aws::Structure
|
|
4516
|
+
end
|
|
4517
|
+
|
|
4205
4518
|
# @!attribute [rw] id
|
|
4206
4519
|
# The identifier for the response headers policy that you are
|
|
4207
4520
|
# deleting.
|
|
@@ -4246,6 +4559,24 @@ module Aws::CloudFront
|
|
|
4246
4559
|
include Aws::Structure
|
|
4247
4560
|
end
|
|
4248
4561
|
|
|
4562
|
+
# @!attribute [rw] id
|
|
4563
|
+
# The trust store's ID.
|
|
4564
|
+
# @return [String]
|
|
4565
|
+
#
|
|
4566
|
+
# @!attribute [rw] if_match
|
|
4567
|
+
# The current version (`ETag` value) of the trust store you are
|
|
4568
|
+
# deleting.
|
|
4569
|
+
# @return [String]
|
|
4570
|
+
#
|
|
4571
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DeleteTrustStoreRequest AWS API Documentation
|
|
4572
|
+
#
|
|
4573
|
+
class DeleteTrustStoreRequest < Struct.new(
|
|
4574
|
+
:id,
|
|
4575
|
+
:if_match)
|
|
4576
|
+
SENSITIVE = []
|
|
4577
|
+
include Aws::Structure
|
|
4578
|
+
end
|
|
4579
|
+
|
|
4249
4580
|
# @!attribute [rw] id
|
|
4250
4581
|
# The VPC origin ID.
|
|
4251
4582
|
# @return [String]
|
|
@@ -4281,6 +4612,41 @@ module Aws::CloudFront
|
|
|
4281
4612
|
include Aws::Structure
|
|
4282
4613
|
end
|
|
4283
4614
|
|
|
4615
|
+
# @!attribute [rw] identifier
|
|
4616
|
+
# The connection function's identifier.
|
|
4617
|
+
# @return [String]
|
|
4618
|
+
#
|
|
4619
|
+
# @!attribute [rw] stage
|
|
4620
|
+
# The connection function's stage.
|
|
4621
|
+
# @return [String]
|
|
4622
|
+
#
|
|
4623
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DescribeConnectionFunctionRequest AWS API Documentation
|
|
4624
|
+
#
|
|
4625
|
+
class DescribeConnectionFunctionRequest < Struct.new(
|
|
4626
|
+
:identifier,
|
|
4627
|
+
:stage)
|
|
4628
|
+
SENSITIVE = []
|
|
4629
|
+
include Aws::Structure
|
|
4630
|
+
end
|
|
4631
|
+
|
|
4632
|
+
# @!attribute [rw] connection_function_summary
|
|
4633
|
+
# The connection function's summary.
|
|
4634
|
+
# @return [Types::ConnectionFunctionSummary]
|
|
4635
|
+
#
|
|
4636
|
+
# @!attribute [rw] etag
|
|
4637
|
+
# The version identifier for the current version of the connection
|
|
4638
|
+
# function.
|
|
4639
|
+
# @return [String]
|
|
4640
|
+
#
|
|
4641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DescribeConnectionFunctionResult AWS API Documentation
|
|
4642
|
+
#
|
|
4643
|
+
class DescribeConnectionFunctionResult < Struct.new(
|
|
4644
|
+
:connection_function_summary,
|
|
4645
|
+
:etag)
|
|
4646
|
+
SENSITIVE = []
|
|
4647
|
+
include Aws::Structure
|
|
4648
|
+
end
|
|
4649
|
+
|
|
4284
4650
|
# @!attribute [rw] name
|
|
4285
4651
|
# The name of the function that you are getting information about.
|
|
4286
4652
|
# @return [String]
|
|
@@ -4859,6 +5225,14 @@ module Aws::CloudFront
|
|
|
4859
5225
|
# distribution tenants (tenant-only).
|
|
4860
5226
|
# @return [String]
|
|
4861
5227
|
#
|
|
5228
|
+
# @!attribute [rw] viewer_mtls_config
|
|
5229
|
+
# The distribution's viewer mTLS configuration.
|
|
5230
|
+
# @return [Types::ViewerMtlsConfig]
|
|
5231
|
+
#
|
|
5232
|
+
# @!attribute [rw] connection_function_association
|
|
5233
|
+
# The distribution's connection function association.
|
|
5234
|
+
# @return [Types::ConnectionFunctionAssociation]
|
|
5235
|
+
#
|
|
4862
5236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionConfig AWS API Documentation
|
|
4863
5237
|
#
|
|
4864
5238
|
class DistributionConfig < Struct.new(
|
|
@@ -4883,7 +5257,9 @@ module Aws::CloudFront
|
|
|
4883
5257
|
:staging,
|
|
4884
5258
|
:anycast_ip_list_id,
|
|
4885
5259
|
:tenant_config,
|
|
4886
|
-
:connection_mode
|
|
5260
|
+
:connection_mode,
|
|
5261
|
+
:viewer_mtls_config,
|
|
5262
|
+
:connection_function_association)
|
|
4887
5263
|
SENSITIVE = [:comment]
|
|
4888
5264
|
include Aws::Structure
|
|
4889
5265
|
end
|
|
@@ -4939,9 +5315,80 @@ module Aws::CloudFront
|
|
|
4939
5315
|
# Contains the distribution IDs in the list.
|
|
4940
5316
|
# @return [Array<String>]
|
|
4941
5317
|
#
|
|
4942
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionIdList AWS API Documentation
|
|
5318
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionIdList AWS API Documentation
|
|
5319
|
+
#
|
|
5320
|
+
class DistributionIdList < Struct.new(
|
|
5321
|
+
:marker,
|
|
5322
|
+
:next_marker,
|
|
5323
|
+
:max_items,
|
|
5324
|
+
:is_truncated,
|
|
5325
|
+
:quantity,
|
|
5326
|
+
:items)
|
|
5327
|
+
SENSITIVE = []
|
|
5328
|
+
include Aws::Structure
|
|
5329
|
+
end
|
|
5330
|
+
|
|
5331
|
+
# A structure that pairs a CloudFront distribution ID with its owning
|
|
5332
|
+
# Amazon Web Services account ID.
|
|
5333
|
+
#
|
|
5334
|
+
# @!attribute [rw] distribution_id
|
|
5335
|
+
# The ID of the distribution.
|
|
5336
|
+
# @return [String]
|
|
5337
|
+
#
|
|
5338
|
+
# @!attribute [rw] owner_account_id
|
|
5339
|
+
# The ID of the Amazon Web Services account that owns the
|
|
5340
|
+
# distribution.
|
|
5341
|
+
# @return [String]
|
|
5342
|
+
#
|
|
5343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionIdOwner AWS API Documentation
|
|
5344
|
+
#
|
|
5345
|
+
class DistributionIdOwner < Struct.new(
|
|
5346
|
+
:distribution_id,
|
|
5347
|
+
:owner_account_id)
|
|
5348
|
+
SENSITIVE = []
|
|
5349
|
+
include Aws::Structure
|
|
5350
|
+
end
|
|
5351
|
+
|
|
5352
|
+
# The list of distribution IDs and the Amazon Web Services accounts that
|
|
5353
|
+
# they belong to.
|
|
5354
|
+
#
|
|
5355
|
+
# @!attribute [rw] marker
|
|
5356
|
+
# Use this field when paginating results to indicate where to begin in
|
|
5357
|
+
# your list of `DistributionIdOwner` objects. The response includes
|
|
5358
|
+
# distributions in the list that occur after the marker. To get the
|
|
5359
|
+
# next page of the list, set this field's value to the value of
|
|
5360
|
+
# `NextMarker` from the current page's response.
|
|
5361
|
+
# @return [String]
|
|
5362
|
+
#
|
|
5363
|
+
# @!attribute [rw] next_marker
|
|
5364
|
+
# A token used for pagination of results returned in the response. You
|
|
5365
|
+
# can use the token from the previous request to define where the
|
|
5366
|
+
# current request should begin.
|
|
5367
|
+
# @return [String]
|
|
5368
|
+
#
|
|
5369
|
+
# @!attribute [rw] max_items
|
|
5370
|
+
# The maximum number of `DistributionIdOwner` objects to return.
|
|
5371
|
+
# @return [Integer]
|
|
5372
|
+
#
|
|
5373
|
+
# @!attribute [rw] is_truncated
|
|
5374
|
+
# A flag that indicates whether more `DistributionIdOwner` objects
|
|
5375
|
+
# remain to be listed. If your results were truncated, you can make a
|
|
5376
|
+
# follow-up pagination request using the `Marker` request parameter to
|
|
5377
|
+
# retrieve more results in the list.
|
|
5378
|
+
# @return [Boolean]
|
|
5379
|
+
#
|
|
5380
|
+
# @!attribute [rw] quantity
|
|
5381
|
+
# Specifies the actual number of `DistributionIdOwner` objects
|
|
5382
|
+
# included in the list for the current page.
|
|
5383
|
+
# @return [Integer]
|
|
5384
|
+
#
|
|
5385
|
+
# @!attribute [rw] items
|
|
5386
|
+
# The number of `DistributionIdOwner` objects.
|
|
5387
|
+
# @return [Array<Types::DistributionIdOwner>]
|
|
5388
|
+
#
|
|
5389
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionIdOwnerList AWS API Documentation
|
|
4943
5390
|
#
|
|
4944
|
-
class
|
|
5391
|
+
class DistributionIdOwnerList < Struct.new(
|
|
4945
5392
|
:marker,
|
|
4946
5393
|
:next_marker,
|
|
4947
5394
|
:max_items,
|
|
@@ -5179,6 +5626,14 @@ module Aws::CloudFront
|
|
|
5179
5626
|
# distribution.
|
|
5180
5627
|
# @return [String]
|
|
5181
5628
|
#
|
|
5629
|
+
# @!attribute [rw] viewer_mtls_config
|
|
5630
|
+
# The distribution's viewer mTLS configuration.
|
|
5631
|
+
# @return [Types::ViewerMtlsConfig]
|
|
5632
|
+
#
|
|
5633
|
+
# @!attribute [rw] connection_function_association
|
|
5634
|
+
# The distribution's connection function association.
|
|
5635
|
+
# @return [Types::ConnectionFunctionAssociation]
|
|
5636
|
+
#
|
|
5182
5637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionSummary AWS API Documentation
|
|
5183
5638
|
#
|
|
5184
5639
|
class DistributionSummary < Struct.new(
|
|
@@ -5205,7 +5660,9 @@ module Aws::CloudFront
|
|
|
5205
5660
|
:alias_icp_recordals,
|
|
5206
5661
|
:staging,
|
|
5207
5662
|
:connection_mode,
|
|
5208
|
-
:anycast_ip_list_id
|
|
5663
|
+
:anycast_ip_list_id,
|
|
5664
|
+
:viewer_mtls_config,
|
|
5665
|
+
:connection_function_association)
|
|
5209
5666
|
SENSITIVE = [:comment]
|
|
5210
5667
|
include Aws::Structure
|
|
5211
5668
|
end
|
|
@@ -6597,6 +7054,46 @@ module Aws::CloudFront
|
|
|
6597
7054
|
include Aws::Structure
|
|
6598
7055
|
end
|
|
6599
7056
|
|
|
7057
|
+
# @!attribute [rw] identifier
|
|
7058
|
+
# The connection function's identifier.
|
|
7059
|
+
# @return [String]
|
|
7060
|
+
#
|
|
7061
|
+
# @!attribute [rw] stage
|
|
7062
|
+
# The connection function's stage.
|
|
7063
|
+
# @return [String]
|
|
7064
|
+
#
|
|
7065
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetConnectionFunctionRequest AWS API Documentation
|
|
7066
|
+
#
|
|
7067
|
+
class GetConnectionFunctionRequest < Struct.new(
|
|
7068
|
+
:identifier,
|
|
7069
|
+
:stage)
|
|
7070
|
+
SENSITIVE = []
|
|
7071
|
+
include Aws::Structure
|
|
7072
|
+
end
|
|
7073
|
+
|
|
7074
|
+
# @!attribute [rw] connection_function_code
|
|
7075
|
+
# The connection function's code.
|
|
7076
|
+
# @return [String]
|
|
7077
|
+
#
|
|
7078
|
+
# @!attribute [rw] etag
|
|
7079
|
+
# The version identifier for the current version of the connection
|
|
7080
|
+
# function.
|
|
7081
|
+
# @return [String]
|
|
7082
|
+
#
|
|
7083
|
+
# @!attribute [rw] content_type
|
|
7084
|
+
# The connection function's content type.
|
|
7085
|
+
# @return [String]
|
|
7086
|
+
#
|
|
7087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetConnectionFunctionResult AWS API Documentation
|
|
7088
|
+
#
|
|
7089
|
+
class GetConnectionFunctionResult < Struct.new(
|
|
7090
|
+
:connection_function_code,
|
|
7091
|
+
:etag,
|
|
7092
|
+
:content_type)
|
|
7093
|
+
SENSITIVE = [:connection_function_code]
|
|
7094
|
+
include Aws::Structure
|
|
7095
|
+
end
|
|
7096
|
+
|
|
6600
7097
|
# @!attribute [rw] routing_endpoint
|
|
6601
7098
|
# The routing endpoint for the target connection group, such as
|
|
6602
7099
|
# d111111abcdef8.cloudfront.net.
|
|
@@ -7412,6 +7909,37 @@ module Aws::CloudFront
|
|
|
7412
7909
|
include Aws::Structure
|
|
7413
7910
|
end
|
|
7414
7911
|
|
|
7912
|
+
# @!attribute [rw] resource_arn
|
|
7913
|
+
# The Amazon Resource Name (ARN) of the CloudFront resource that is
|
|
7914
|
+
# associated with the resource policy.
|
|
7915
|
+
# @return [String]
|
|
7916
|
+
#
|
|
7917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetResourcePolicyRequest AWS API Documentation
|
|
7918
|
+
#
|
|
7919
|
+
class GetResourcePolicyRequest < Struct.new(
|
|
7920
|
+
:resource_arn)
|
|
7921
|
+
SENSITIVE = []
|
|
7922
|
+
include Aws::Structure
|
|
7923
|
+
end
|
|
7924
|
+
|
|
7925
|
+
# @!attribute [rw] resource_arn
|
|
7926
|
+
# The Amazon Resource Name (ARN) of the CloudFront resource that is
|
|
7927
|
+
# associated with the resource policy.
|
|
7928
|
+
# @return [String]
|
|
7929
|
+
#
|
|
7930
|
+
# @!attribute [rw] policy_document
|
|
7931
|
+
# The resource policy in JSON format.
|
|
7932
|
+
# @return [String]
|
|
7933
|
+
#
|
|
7934
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetResourcePolicyResult AWS API Documentation
|
|
7935
|
+
#
|
|
7936
|
+
class GetResourcePolicyResult < Struct.new(
|
|
7937
|
+
:resource_arn,
|
|
7938
|
+
:policy_document)
|
|
7939
|
+
SENSITIVE = []
|
|
7940
|
+
include Aws::Structure
|
|
7941
|
+
end
|
|
7942
|
+
|
|
7415
7943
|
# @!attribute [rw] id
|
|
7416
7944
|
# The identifier for the response headers policy.
|
|
7417
7945
|
#
|
|
@@ -7552,6 +8080,35 @@ module Aws::CloudFront
|
|
|
7552
8080
|
include Aws::Structure
|
|
7553
8081
|
end
|
|
7554
8082
|
|
|
8083
|
+
# @!attribute [rw] identifier
|
|
8084
|
+
# The trust store's identifier.
|
|
8085
|
+
# @return [String]
|
|
8086
|
+
#
|
|
8087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetTrustStoreRequest AWS API Documentation
|
|
8088
|
+
#
|
|
8089
|
+
class GetTrustStoreRequest < Struct.new(
|
|
8090
|
+
:identifier)
|
|
8091
|
+
SENSITIVE = []
|
|
8092
|
+
include Aws::Structure
|
|
8093
|
+
end
|
|
8094
|
+
|
|
8095
|
+
# @!attribute [rw] trust_store
|
|
8096
|
+
# The trust store.
|
|
8097
|
+
# @return [Types::TrustStore]
|
|
8098
|
+
#
|
|
8099
|
+
# @!attribute [rw] etag
|
|
8100
|
+
# The version identifier for the current version of the trust store.
|
|
8101
|
+
# @return [String]
|
|
8102
|
+
#
|
|
8103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetTrustStoreResult AWS API Documentation
|
|
8104
|
+
#
|
|
8105
|
+
class GetTrustStoreResult < Struct.new(
|
|
8106
|
+
:trust_store,
|
|
8107
|
+
:etag)
|
|
8108
|
+
SENSITIVE = []
|
|
8109
|
+
include Aws::Structure
|
|
8110
|
+
end
|
|
8111
|
+
|
|
7555
8112
|
# @!attribute [rw] id
|
|
7556
8113
|
# The VPC origin ID.
|
|
7557
8114
|
# @return [String]
|
|
@@ -8234,6 +8791,61 @@ module Aws::CloudFront
|
|
|
8234
8791
|
include Aws::Structure
|
|
8235
8792
|
end
|
|
8236
8793
|
|
|
8794
|
+
# Configuration for an IPAM CIDR that defines a specific IP address
|
|
8795
|
+
# range, IPAM pool, and associated Anycast IP address.
|
|
8796
|
+
#
|
|
8797
|
+
# @!attribute [rw] cidr
|
|
8798
|
+
# The CIDR that specifies the IP address range for this IPAM
|
|
8799
|
+
# configuration.
|
|
8800
|
+
# @return [String]
|
|
8801
|
+
#
|
|
8802
|
+
# @!attribute [rw] ipam_pool_arn
|
|
8803
|
+
# The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block
|
|
8804
|
+
# is assigned to.
|
|
8805
|
+
# @return [String]
|
|
8806
|
+
#
|
|
8807
|
+
# @!attribute [rw] anycast_ip
|
|
8808
|
+
# The specified Anycast IP address allocated from the IPAM pool for
|
|
8809
|
+
# this CIDR configuration.
|
|
8810
|
+
# @return [String]
|
|
8811
|
+
#
|
|
8812
|
+
# @!attribute [rw] status
|
|
8813
|
+
# The current status of the IPAM CIDR configuration.
|
|
8814
|
+
# @return [String]
|
|
8815
|
+
#
|
|
8816
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/IpamCidrConfig AWS API Documentation
|
|
8817
|
+
#
|
|
8818
|
+
class IpamCidrConfig < Struct.new(
|
|
8819
|
+
:cidr,
|
|
8820
|
+
:ipam_pool_arn,
|
|
8821
|
+
:anycast_ip,
|
|
8822
|
+
:status)
|
|
8823
|
+
SENSITIVE = []
|
|
8824
|
+
include Aws::Structure
|
|
8825
|
+
end
|
|
8826
|
+
|
|
8827
|
+
# The configuration IPAM settings that includes the quantity of CIDR
|
|
8828
|
+
# configurations and the list of IPAM CIDR configurations.
|
|
8829
|
+
#
|
|
8830
|
+
# @!attribute [rw] quantity
|
|
8831
|
+
# The number of IPAM CIDR configurations in the `IpamCidrConfigs`
|
|
8832
|
+
# list.
|
|
8833
|
+
# @return [Integer]
|
|
8834
|
+
#
|
|
8835
|
+
# @!attribute [rw] ipam_cidr_configs
|
|
8836
|
+
# A list of IPAM CIDR configurations that define the IP address
|
|
8837
|
+
# ranges, IPAM pools, and associated Anycast IP addresses.
|
|
8838
|
+
# @return [Array<Types::IpamCidrConfig>]
|
|
8839
|
+
#
|
|
8840
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/IpamConfig AWS API Documentation
|
|
8841
|
+
#
|
|
8842
|
+
class IpamConfig < Struct.new(
|
|
8843
|
+
:quantity,
|
|
8844
|
+
:ipam_cidr_configs)
|
|
8845
|
+
SENSITIVE = []
|
|
8846
|
+
include Aws::Structure
|
|
8847
|
+
end
|
|
8848
|
+
|
|
8237
8849
|
# A list of identifiers for the public keys that CloudFront can use to
|
|
8238
8850
|
# verify the signatures of signed URLs and signed cookies.
|
|
8239
8851
|
#
|
|
@@ -8780,6 +9392,52 @@ module Aws::CloudFront
|
|
|
8780
9392
|
include Aws::Structure
|
|
8781
9393
|
end
|
|
8782
9394
|
|
|
9395
|
+
# @!attribute [rw] marker
|
|
9396
|
+
# Use this field when paginating results to indicate where to begin in
|
|
9397
|
+
# your list. The response includes items in the list that occur after
|
|
9398
|
+
# the marker. To get the next page of the list, set this field's
|
|
9399
|
+
# value to the value of `NextMarker` from the current page's
|
|
9400
|
+
# response.
|
|
9401
|
+
# @return [String]
|
|
9402
|
+
#
|
|
9403
|
+
# @!attribute [rw] max_items
|
|
9404
|
+
# The maximum number of connection functions that you want returned in
|
|
9405
|
+
# the response.
|
|
9406
|
+
# @return [Integer]
|
|
9407
|
+
#
|
|
9408
|
+
# @!attribute [rw] stage
|
|
9409
|
+
# The connection function's stage.
|
|
9410
|
+
# @return [String]
|
|
9411
|
+
#
|
|
9412
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListConnectionFunctionsRequest AWS API Documentation
|
|
9413
|
+
#
|
|
9414
|
+
class ListConnectionFunctionsRequest < Struct.new(
|
|
9415
|
+
:marker,
|
|
9416
|
+
:max_items,
|
|
9417
|
+
:stage)
|
|
9418
|
+
SENSITIVE = []
|
|
9419
|
+
include Aws::Structure
|
|
9420
|
+
end
|
|
9421
|
+
|
|
9422
|
+
# @!attribute [rw] next_marker
|
|
9423
|
+
# Indicates the next page of connection functions. To get the next
|
|
9424
|
+
# page of the list, use this value in the `Marker` field of your
|
|
9425
|
+
# request.
|
|
9426
|
+
# @return [String]
|
|
9427
|
+
#
|
|
9428
|
+
# @!attribute [rw] connection_functions
|
|
9429
|
+
# A list of connection functions.
|
|
9430
|
+
# @return [Array<Types::ConnectionFunctionSummary>]
|
|
9431
|
+
#
|
|
9432
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListConnectionFunctionsResult AWS API Documentation
|
|
9433
|
+
#
|
|
9434
|
+
class ListConnectionFunctionsResult < Struct.new(
|
|
9435
|
+
:next_marker,
|
|
9436
|
+
:connection_functions)
|
|
9437
|
+
SENSITIVE = []
|
|
9438
|
+
include Aws::Structure
|
|
9439
|
+
end
|
|
9440
|
+
|
|
8783
9441
|
# @!attribute [rw] association_filter
|
|
8784
9442
|
# Filter by associated Anycast IP list ID.
|
|
8785
9443
|
# @return [Types::ConnectionGroupAssociationFilter]
|
|
@@ -9022,6 +9680,45 @@ module Aws::CloudFront
|
|
|
9022
9680
|
include Aws::Structure
|
|
9023
9681
|
end
|
|
9024
9682
|
|
|
9683
|
+
# @!attribute [rw] marker
|
|
9684
|
+
# Use this field when paginating results to indicate where to begin in
|
|
9685
|
+
# your list. The response includes items in the list that occur after
|
|
9686
|
+
# the marker. To get the next page of the list, set this field's
|
|
9687
|
+
# value to the value of `NextMarker` from the current page's
|
|
9688
|
+
# response.
|
|
9689
|
+
# @return [String]
|
|
9690
|
+
#
|
|
9691
|
+
# @!attribute [rw] max_items
|
|
9692
|
+
# The maximum number of distributions that you want returned in the
|
|
9693
|
+
# response.
|
|
9694
|
+
# @return [Integer]
|
|
9695
|
+
#
|
|
9696
|
+
# @!attribute [rw] connection_function_identifier
|
|
9697
|
+
# The distributions by connection function identifier.
|
|
9698
|
+
# @return [String]
|
|
9699
|
+
#
|
|
9700
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByConnectionFunctionRequest AWS API Documentation
|
|
9701
|
+
#
|
|
9702
|
+
class ListDistributionsByConnectionFunctionRequest < Struct.new(
|
|
9703
|
+
:marker,
|
|
9704
|
+
:max_items,
|
|
9705
|
+
:connection_function_identifier)
|
|
9706
|
+
SENSITIVE = []
|
|
9707
|
+
include Aws::Structure
|
|
9708
|
+
end
|
|
9709
|
+
|
|
9710
|
+
# @!attribute [rw] distribution_list
|
|
9711
|
+
# A distribution list.
|
|
9712
|
+
# @return [Types::DistributionList]
|
|
9713
|
+
#
|
|
9714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByConnectionFunctionResult AWS API Documentation
|
|
9715
|
+
#
|
|
9716
|
+
class ListDistributionsByConnectionFunctionResult < Struct.new(
|
|
9717
|
+
:distribution_list)
|
|
9718
|
+
SENSITIVE = []
|
|
9719
|
+
include Aws::Structure
|
|
9720
|
+
end
|
|
9721
|
+
|
|
9025
9722
|
# @!attribute [rw] marker
|
|
9026
9723
|
# The marker for the next set of distributions to retrieve.
|
|
9027
9724
|
# @return [String]
|
|
@@ -9138,6 +9835,45 @@ module Aws::CloudFront
|
|
|
9138
9835
|
include Aws::Structure
|
|
9139
9836
|
end
|
|
9140
9837
|
|
|
9838
|
+
# @!attribute [rw] resource_arn
|
|
9839
|
+
# The ARN of the CloudFront resource that you've shared with other
|
|
9840
|
+
# Amazon Web Services accounts.
|
|
9841
|
+
# @return [String]
|
|
9842
|
+
#
|
|
9843
|
+
# @!attribute [rw] marker
|
|
9844
|
+
# Use this field when paginating results to indicate where to begin in
|
|
9845
|
+
# your list of distributions. The response includes distributions in
|
|
9846
|
+
# the list that occur after the marker. To get the next page of the
|
|
9847
|
+
# list, set this field's value to the value of `NextMarker` from the
|
|
9848
|
+
# current page's response.
|
|
9849
|
+
# @return [String]
|
|
9850
|
+
#
|
|
9851
|
+
# @!attribute [rw] max_items
|
|
9852
|
+
# The maximum number of distributions to return.
|
|
9853
|
+
# @return [Integer]
|
|
9854
|
+
#
|
|
9855
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByOwnedResourceRequest AWS API Documentation
|
|
9856
|
+
#
|
|
9857
|
+
class ListDistributionsByOwnedResourceRequest < Struct.new(
|
|
9858
|
+
:resource_arn,
|
|
9859
|
+
:marker,
|
|
9860
|
+
:max_items)
|
|
9861
|
+
SENSITIVE = []
|
|
9862
|
+
include Aws::Structure
|
|
9863
|
+
end
|
|
9864
|
+
|
|
9865
|
+
# @!attribute [rw] distribution_list
|
|
9866
|
+
# The list of distributions that are using the shared resource.
|
|
9867
|
+
# @return [Types::DistributionIdOwnerList]
|
|
9868
|
+
#
|
|
9869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByOwnedResourceResult AWS API Documentation
|
|
9870
|
+
#
|
|
9871
|
+
class ListDistributionsByOwnedResourceResult < Struct.new(
|
|
9872
|
+
:distribution_list)
|
|
9873
|
+
SENSITIVE = []
|
|
9874
|
+
include Aws::Structure
|
|
9875
|
+
end
|
|
9876
|
+
|
|
9141
9877
|
# @!attribute [rw] marker
|
|
9142
9878
|
# Use this field when paginating results to indicate where to begin in
|
|
9143
9879
|
# your list of distributions. The response includes distributions in
|
|
@@ -9223,6 +9959,45 @@ module Aws::CloudFront
|
|
|
9223
9959
|
include Aws::Structure
|
|
9224
9960
|
end
|
|
9225
9961
|
|
|
9962
|
+
# @!attribute [rw] trust_store_identifier
|
|
9963
|
+
# The distributions by trust store identifier.
|
|
9964
|
+
# @return [String]
|
|
9965
|
+
#
|
|
9966
|
+
# @!attribute [rw] marker
|
|
9967
|
+
# Use this field when paginating results to indicate where to begin in
|
|
9968
|
+
# your list. The response includes items in the list that occur after
|
|
9969
|
+
# the marker. To get the next page of the list, set this field's
|
|
9970
|
+
# value to the value of `NextMarker` from the current page's
|
|
9971
|
+
# response.
|
|
9972
|
+
# @return [String]
|
|
9973
|
+
#
|
|
9974
|
+
# @!attribute [rw] max_items
|
|
9975
|
+
# The maximum number of distributions that you want returned in the
|
|
9976
|
+
# response.
|
|
9977
|
+
# @return [Integer]
|
|
9978
|
+
#
|
|
9979
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByTrustStoreRequest AWS API Documentation
|
|
9980
|
+
#
|
|
9981
|
+
class ListDistributionsByTrustStoreRequest < Struct.new(
|
|
9982
|
+
:trust_store_identifier,
|
|
9983
|
+
:marker,
|
|
9984
|
+
:max_items)
|
|
9985
|
+
SENSITIVE = []
|
|
9986
|
+
include Aws::Structure
|
|
9987
|
+
end
|
|
9988
|
+
|
|
9989
|
+
# @!attribute [rw] distribution_list
|
|
9990
|
+
# A distribution list.
|
|
9991
|
+
# @return [Types::DistributionList]
|
|
9992
|
+
#
|
|
9993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByTrustStoreResult AWS API Documentation
|
|
9994
|
+
#
|
|
9995
|
+
class ListDistributionsByTrustStoreResult < Struct.new(
|
|
9996
|
+
:distribution_list)
|
|
9997
|
+
SENSITIVE = []
|
|
9998
|
+
include Aws::Structure
|
|
9999
|
+
end
|
|
10000
|
+
|
|
9226
10001
|
# @!attribute [rw] marker
|
|
9227
10002
|
# The marker associated with the VPC origin distributions list.
|
|
9228
10003
|
# @return [String]
|
|
@@ -9919,10 +10694,50 @@ module Aws::CloudFront
|
|
|
9919
10694
|
# A complex type that contains zero or more `Tag` elements.
|
|
9920
10695
|
# @return [Types::Tags]
|
|
9921
10696
|
#
|
|
9922
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListTagsForResourceResult AWS API Documentation
|
|
10697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListTagsForResourceResult AWS API Documentation
|
|
10698
|
+
#
|
|
10699
|
+
class ListTagsForResourceResult < Struct.new(
|
|
10700
|
+
:tags)
|
|
10701
|
+
SENSITIVE = []
|
|
10702
|
+
include Aws::Structure
|
|
10703
|
+
end
|
|
10704
|
+
|
|
10705
|
+
# @!attribute [rw] marker
|
|
10706
|
+
# Use this field when paginating results to indicate where to begin in
|
|
10707
|
+
# your list. The response includes items in the list that occur after
|
|
10708
|
+
# the marker. To get the next page of the list, set this field's
|
|
10709
|
+
# value to the value of `NextMarker` from the current page's
|
|
10710
|
+
# response.
|
|
10711
|
+
# @return [String]
|
|
10712
|
+
#
|
|
10713
|
+
# @!attribute [rw] max_items
|
|
10714
|
+
# The maximum number of trust stores that you want returned in the
|
|
10715
|
+
# response.
|
|
10716
|
+
# @return [Integer]
|
|
10717
|
+
#
|
|
10718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListTrustStoresRequest AWS API Documentation
|
|
10719
|
+
#
|
|
10720
|
+
class ListTrustStoresRequest < Struct.new(
|
|
10721
|
+
:marker,
|
|
10722
|
+
:max_items)
|
|
10723
|
+
SENSITIVE = []
|
|
10724
|
+
include Aws::Structure
|
|
10725
|
+
end
|
|
10726
|
+
|
|
10727
|
+
# @!attribute [rw] next_marker
|
|
10728
|
+
# Indicates the next page of trust stores. To get the next page of the
|
|
10729
|
+
# list, use this value in the `Marker` field of your request.
|
|
10730
|
+
# @return [String]
|
|
10731
|
+
#
|
|
10732
|
+
# @!attribute [rw] trust_store_list
|
|
10733
|
+
# The trust store list.
|
|
10734
|
+
# @return [Array<Types::TrustStoreSummary>]
|
|
10735
|
+
#
|
|
10736
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListTrustStoresResult AWS API Documentation
|
|
9923
10737
|
#
|
|
9924
|
-
class
|
|
9925
|
-
:
|
|
10738
|
+
class ListTrustStoresResult < Struct.new(
|
|
10739
|
+
:next_marker,
|
|
10740
|
+
:trust_store_list)
|
|
9926
10741
|
SENSITIVE = []
|
|
9927
10742
|
include Aws::Structure
|
|
9928
10743
|
end
|
|
@@ -11552,6 +12367,10 @@ module Aws::CloudFront
|
|
|
11552
12367
|
# A public key that you can use with [signed URLs and signed
|
|
11553
12368
|
# cookies][1], or with [field-level encryption][2].
|
|
11554
12369
|
#
|
|
12370
|
+
# CloudFront supports signed URLs and signed cookies with RSA 2048 or
|
|
12371
|
+
# ECDSA 256 key signatures. Field-level encryption is only compatible
|
|
12372
|
+
# with RSA 2048 key signatures.
|
|
12373
|
+
#
|
|
11555
12374
|
#
|
|
11556
12375
|
#
|
|
11557
12376
|
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
|
|
@@ -11603,6 +12422,10 @@ module Aws::CloudFront
|
|
|
11603
12422
|
# [signed URLs and signed cookies][1], or with [field-level
|
|
11604
12423
|
# encryption][2].
|
|
11605
12424
|
#
|
|
12425
|
+
# CloudFront supports signed URLs and signed cookies with RSA 2048 or
|
|
12426
|
+
# ECDSA 256 key signatures. Field-level encryption is only compatible
|
|
12427
|
+
# with RSA 2048 key signatures.
|
|
12428
|
+
#
|
|
11606
12429
|
#
|
|
11607
12430
|
#
|
|
11608
12431
|
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
|
|
@@ -11728,6 +12551,35 @@ module Aws::CloudFront
|
|
|
11728
12551
|
include Aws::Structure
|
|
11729
12552
|
end
|
|
11730
12553
|
|
|
12554
|
+
# @!attribute [rw] id
|
|
12555
|
+
# The connection function ID.
|
|
12556
|
+
# @return [String]
|
|
12557
|
+
#
|
|
12558
|
+
# @!attribute [rw] if_match
|
|
12559
|
+
# The current version (`ETag` value) of the connection function.
|
|
12560
|
+
# @return [String]
|
|
12561
|
+
#
|
|
12562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/PublishConnectionFunctionRequest AWS API Documentation
|
|
12563
|
+
#
|
|
12564
|
+
class PublishConnectionFunctionRequest < Struct.new(
|
|
12565
|
+
:id,
|
|
12566
|
+
:if_match)
|
|
12567
|
+
SENSITIVE = []
|
|
12568
|
+
include Aws::Structure
|
|
12569
|
+
end
|
|
12570
|
+
|
|
12571
|
+
# @!attribute [rw] connection_function_summary
|
|
12572
|
+
# The connection function summary.
|
|
12573
|
+
# @return [Types::ConnectionFunctionSummary]
|
|
12574
|
+
#
|
|
12575
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/PublishConnectionFunctionResult AWS API Documentation
|
|
12576
|
+
#
|
|
12577
|
+
class PublishConnectionFunctionResult < Struct.new(
|
|
12578
|
+
:connection_function_summary)
|
|
12579
|
+
SENSITIVE = []
|
|
12580
|
+
include Aws::Structure
|
|
12581
|
+
end
|
|
12582
|
+
|
|
11731
12583
|
# @!attribute [rw] name
|
|
11732
12584
|
# The name of the function that you are publishing.
|
|
11733
12585
|
# @return [String]
|
|
@@ -11759,6 +12611,37 @@ module Aws::CloudFront
|
|
|
11759
12611
|
include Aws::Structure
|
|
11760
12612
|
end
|
|
11761
12613
|
|
|
12614
|
+
# @!attribute [rw] resource_arn
|
|
12615
|
+
# The Amazon Resource Name (ARN) of the CloudFront resource for which
|
|
12616
|
+
# the policy is being created.
|
|
12617
|
+
# @return [String]
|
|
12618
|
+
#
|
|
12619
|
+
# @!attribute [rw] policy_document
|
|
12620
|
+
# The JSON-formatted resource policy to create.
|
|
12621
|
+
# @return [String]
|
|
12622
|
+
#
|
|
12623
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/PutResourcePolicyRequest AWS API Documentation
|
|
12624
|
+
#
|
|
12625
|
+
class PutResourcePolicyRequest < Struct.new(
|
|
12626
|
+
:resource_arn,
|
|
12627
|
+
:policy_document)
|
|
12628
|
+
SENSITIVE = []
|
|
12629
|
+
include Aws::Structure
|
|
12630
|
+
end
|
|
12631
|
+
|
|
12632
|
+
# @!attribute [rw] resource_arn
|
|
12633
|
+
# The Amazon Resource Name (ARN) of the CloudFront resource for which
|
|
12634
|
+
# the policy was created.
|
|
12635
|
+
# @return [String]
|
|
12636
|
+
#
|
|
12637
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/PutResourcePolicyResult AWS API Documentation
|
|
12638
|
+
#
|
|
12639
|
+
class PutResourcePolicyResult < Struct.new(
|
|
12640
|
+
:resource_arn)
|
|
12641
|
+
SENSITIVE = []
|
|
12642
|
+
include Aws::Structure
|
|
12643
|
+
end
|
|
12644
|
+
|
|
11762
12645
|
# Query argument-profile mapping for field-level encryption.
|
|
11763
12646
|
#
|
|
11764
12647
|
# @!attribute [rw] query_arg
|
|
@@ -13698,6 +14581,45 @@ module Aws::CloudFront
|
|
|
13698
14581
|
include Aws::Structure
|
|
13699
14582
|
end
|
|
13700
14583
|
|
|
14584
|
+
# @!attribute [rw] id
|
|
14585
|
+
# The connection function ID.
|
|
14586
|
+
# @return [String]
|
|
14587
|
+
#
|
|
14588
|
+
# @!attribute [rw] if_match
|
|
14589
|
+
# The current version (`ETag` value) of the connection function.
|
|
14590
|
+
# @return [String]
|
|
14591
|
+
#
|
|
14592
|
+
# @!attribute [rw] stage
|
|
14593
|
+
# The connection function stage.
|
|
14594
|
+
# @return [String]
|
|
14595
|
+
#
|
|
14596
|
+
# @!attribute [rw] connection_object
|
|
14597
|
+
# The connection object.
|
|
14598
|
+
# @return [String]
|
|
14599
|
+
#
|
|
14600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TestConnectionFunctionRequest AWS API Documentation
|
|
14601
|
+
#
|
|
14602
|
+
class TestConnectionFunctionRequest < Struct.new(
|
|
14603
|
+
:id,
|
|
14604
|
+
:if_match,
|
|
14605
|
+
:stage,
|
|
14606
|
+
:connection_object)
|
|
14607
|
+
SENSITIVE = [:connection_object]
|
|
14608
|
+
include Aws::Structure
|
|
14609
|
+
end
|
|
14610
|
+
|
|
14611
|
+
# @!attribute [rw] connection_function_test_result
|
|
14612
|
+
# The connection function test result.
|
|
14613
|
+
# @return [Types::ConnectionFunctionTestResult]
|
|
14614
|
+
#
|
|
14615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TestConnectionFunctionResult AWS API Documentation
|
|
14616
|
+
#
|
|
14617
|
+
class TestConnectionFunctionResult < Struct.new(
|
|
14618
|
+
:connection_function_test_result)
|
|
14619
|
+
SENSITIVE = []
|
|
14620
|
+
include Aws::Structure
|
|
14621
|
+
end
|
|
14622
|
+
|
|
13701
14623
|
# The CloudFront function failed.
|
|
13702
14624
|
#
|
|
13703
14625
|
# @!attribute [rw] message
|
|
@@ -14695,6 +15617,123 @@ module Aws::CloudFront
|
|
|
14695
15617
|
include Aws::Structure
|
|
14696
15618
|
end
|
|
14697
15619
|
|
|
15620
|
+
# A trust store.
|
|
15621
|
+
#
|
|
15622
|
+
# @!attribute [rw] id
|
|
15623
|
+
# The trust store's ID.
|
|
15624
|
+
# @return [String]
|
|
15625
|
+
#
|
|
15626
|
+
# @!attribute [rw] arn
|
|
15627
|
+
# The trust store's Amazon Resource Name (ARN).
|
|
15628
|
+
# @return [String]
|
|
15629
|
+
#
|
|
15630
|
+
# @!attribute [rw] name
|
|
15631
|
+
# The trust store's name.
|
|
15632
|
+
# @return [String]
|
|
15633
|
+
#
|
|
15634
|
+
# @!attribute [rw] status
|
|
15635
|
+
# The trust store's status.
|
|
15636
|
+
# @return [String]
|
|
15637
|
+
#
|
|
15638
|
+
# @!attribute [rw] number_of_ca_certificates
|
|
15639
|
+
# The trust store's number of CA certificates.
|
|
15640
|
+
# @return [Integer]
|
|
15641
|
+
#
|
|
15642
|
+
# @!attribute [rw] last_modified_time
|
|
15643
|
+
# The trust store's last modified time.
|
|
15644
|
+
# @return [Time]
|
|
15645
|
+
#
|
|
15646
|
+
# @!attribute [rw] reason
|
|
15647
|
+
# The trust store's reason.
|
|
15648
|
+
# @return [String]
|
|
15649
|
+
#
|
|
15650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TrustStore AWS API Documentation
|
|
15651
|
+
#
|
|
15652
|
+
class TrustStore < Struct.new(
|
|
15653
|
+
:id,
|
|
15654
|
+
:arn,
|
|
15655
|
+
:name,
|
|
15656
|
+
:status,
|
|
15657
|
+
:number_of_ca_certificates,
|
|
15658
|
+
:last_modified_time,
|
|
15659
|
+
:reason)
|
|
15660
|
+
SENSITIVE = []
|
|
15661
|
+
include Aws::Structure
|
|
15662
|
+
end
|
|
15663
|
+
|
|
15664
|
+
# A trust store configuration.
|
|
15665
|
+
#
|
|
15666
|
+
# @!attribute [rw] trust_store_id
|
|
15667
|
+
# The trust store ID.
|
|
15668
|
+
# @return [String]
|
|
15669
|
+
#
|
|
15670
|
+
# @!attribute [rw] advertise_trust_store_ca_names
|
|
15671
|
+
# The configuration to use to advertise trust store CA names.
|
|
15672
|
+
# @return [Boolean]
|
|
15673
|
+
#
|
|
15674
|
+
# @!attribute [rw] ignore_certificate_expiry
|
|
15675
|
+
# The configuration to use to ignore certificate expiration.
|
|
15676
|
+
# @return [Boolean]
|
|
15677
|
+
#
|
|
15678
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TrustStoreConfig AWS API Documentation
|
|
15679
|
+
#
|
|
15680
|
+
class TrustStoreConfig < Struct.new(
|
|
15681
|
+
:trust_store_id,
|
|
15682
|
+
:advertise_trust_store_ca_names,
|
|
15683
|
+
:ignore_certificate_expiry)
|
|
15684
|
+
SENSITIVE = []
|
|
15685
|
+
include Aws::Structure
|
|
15686
|
+
end
|
|
15687
|
+
|
|
15688
|
+
# A trust store summary.
|
|
15689
|
+
#
|
|
15690
|
+
# @!attribute [rw] id
|
|
15691
|
+
# The trust store's ID.
|
|
15692
|
+
# @return [String]
|
|
15693
|
+
#
|
|
15694
|
+
# @!attribute [rw] arn
|
|
15695
|
+
# The trust store's Amazon Resource Name (ARN).
|
|
15696
|
+
# @return [String]
|
|
15697
|
+
#
|
|
15698
|
+
# @!attribute [rw] name
|
|
15699
|
+
# The trust store's name.
|
|
15700
|
+
# @return [String]
|
|
15701
|
+
#
|
|
15702
|
+
# @!attribute [rw] status
|
|
15703
|
+
# The trust store's status.
|
|
15704
|
+
# @return [String]
|
|
15705
|
+
#
|
|
15706
|
+
# @!attribute [rw] number_of_ca_certificates
|
|
15707
|
+
# The trust store's number of CA certificates.
|
|
15708
|
+
# @return [Integer]
|
|
15709
|
+
#
|
|
15710
|
+
# @!attribute [rw] last_modified_time
|
|
15711
|
+
# The trust store's last modified time.
|
|
15712
|
+
# @return [Time]
|
|
15713
|
+
#
|
|
15714
|
+
# @!attribute [rw] reason
|
|
15715
|
+
# The trust store's reason.
|
|
15716
|
+
# @return [String]
|
|
15717
|
+
#
|
|
15718
|
+
# @!attribute [rw] etag
|
|
15719
|
+
# The version identifier for the current version of the trust store.
|
|
15720
|
+
# @return [String]
|
|
15721
|
+
#
|
|
15722
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TrustStoreSummary AWS API Documentation
|
|
15723
|
+
#
|
|
15724
|
+
class TrustStoreSummary < Struct.new(
|
|
15725
|
+
:id,
|
|
15726
|
+
:arn,
|
|
15727
|
+
:name,
|
|
15728
|
+
:status,
|
|
15729
|
+
:number_of_ca_certificates,
|
|
15730
|
+
:last_modified_time,
|
|
15731
|
+
:reason,
|
|
15732
|
+
:etag)
|
|
15733
|
+
SENSITIVE = []
|
|
15734
|
+
include Aws::Structure
|
|
15735
|
+
end
|
|
15736
|
+
|
|
14698
15737
|
# The specified key group does not exist.
|
|
14699
15738
|
#
|
|
14700
15739
|
# @!attribute [rw] message
|
|
@@ -14807,6 +15846,59 @@ module Aws::CloudFront
|
|
|
14807
15846
|
include Aws::Structure
|
|
14808
15847
|
end
|
|
14809
15848
|
|
|
15849
|
+
# @!attribute [rw] id
|
|
15850
|
+
# The ID of the Anycast static IP list.
|
|
15851
|
+
# @return [String]
|
|
15852
|
+
#
|
|
15853
|
+
# @!attribute [rw] ip_address_type
|
|
15854
|
+
# The IP address type for the Anycast static IP list. You can specify
|
|
15855
|
+
# one of the following options:
|
|
15856
|
+
#
|
|
15857
|
+
# * `ipv4` only
|
|
15858
|
+
#
|
|
15859
|
+
# * `ipv6` only
|
|
15860
|
+
#
|
|
15861
|
+
# * `dualstack` - Allocate a list of both IPv4 and IPv6 addresses
|
|
15862
|
+
# @return [String]
|
|
15863
|
+
#
|
|
15864
|
+
# @!attribute [rw] if_match
|
|
15865
|
+
# The current version (ETag value) of the Anycast static IP list that
|
|
15866
|
+
# you are updating.
|
|
15867
|
+
# @return [String]
|
|
15868
|
+
#
|
|
15869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateAnycastIpListRequest AWS API Documentation
|
|
15870
|
+
#
|
|
15871
|
+
class UpdateAnycastIpListRequest < Struct.new(
|
|
15872
|
+
:id,
|
|
15873
|
+
:ip_address_type,
|
|
15874
|
+
:if_match)
|
|
15875
|
+
SENSITIVE = []
|
|
15876
|
+
include Aws::Structure
|
|
15877
|
+
end
|
|
15878
|
+
|
|
15879
|
+
# @!attribute [rw] anycast_ip_list
|
|
15880
|
+
# An Anycast static IP list. For more information, see [Request
|
|
15881
|
+
# Anycast static IPs to use for allowlisting][1] in the *Amazon
|
|
15882
|
+
# CloudFront Developer Guide*.
|
|
15883
|
+
#
|
|
15884
|
+
#
|
|
15885
|
+
#
|
|
15886
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/request-static-ips.html
|
|
15887
|
+
# @return [Types::AnycastIpList]
|
|
15888
|
+
#
|
|
15889
|
+
# @!attribute [rw] etag
|
|
15890
|
+
# The current version of the Anycast static IP list.
|
|
15891
|
+
# @return [String]
|
|
15892
|
+
#
|
|
15893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateAnycastIpListResult AWS API Documentation
|
|
15894
|
+
#
|
|
15895
|
+
class UpdateAnycastIpListResult < Struct.new(
|
|
15896
|
+
:anycast_ip_list,
|
|
15897
|
+
:etag)
|
|
15898
|
+
SENSITIVE = []
|
|
15899
|
+
include Aws::Structure
|
|
15900
|
+
end
|
|
15901
|
+
|
|
14810
15902
|
# @!attribute [rw] cache_policy_config
|
|
14811
15903
|
# A cache policy configuration.
|
|
14812
15904
|
# @return [Types::CachePolicyConfig]
|
|
@@ -14895,6 +15987,52 @@ module Aws::CloudFront
|
|
|
14895
15987
|
include Aws::Structure
|
|
14896
15988
|
end
|
|
14897
15989
|
|
|
15990
|
+
# @!attribute [rw] id
|
|
15991
|
+
# The connection function ID.
|
|
15992
|
+
# @return [String]
|
|
15993
|
+
#
|
|
15994
|
+
# @!attribute [rw] if_match
|
|
15995
|
+
# The current version (`ETag` value) of the connection function you
|
|
15996
|
+
# are updating.
|
|
15997
|
+
# @return [String]
|
|
15998
|
+
#
|
|
15999
|
+
# @!attribute [rw] connection_function_config
|
|
16000
|
+
# Contains configuration information about a CloudFront function.
|
|
16001
|
+
# @return [Types::FunctionConfig]
|
|
16002
|
+
#
|
|
16003
|
+
# @!attribute [rw] connection_function_code
|
|
16004
|
+
# The connection function code.
|
|
16005
|
+
# @return [String]
|
|
16006
|
+
#
|
|
16007
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateConnectionFunctionRequest AWS API Documentation
|
|
16008
|
+
#
|
|
16009
|
+
class UpdateConnectionFunctionRequest < Struct.new(
|
|
16010
|
+
:id,
|
|
16011
|
+
:if_match,
|
|
16012
|
+
:connection_function_config,
|
|
16013
|
+
:connection_function_code)
|
|
16014
|
+
SENSITIVE = [:connection_function_code]
|
|
16015
|
+
include Aws::Structure
|
|
16016
|
+
end
|
|
16017
|
+
|
|
16018
|
+
# @!attribute [rw] connection_function_summary
|
|
16019
|
+
# The connection function summary.
|
|
16020
|
+
# @return [Types::ConnectionFunctionSummary]
|
|
16021
|
+
#
|
|
16022
|
+
# @!attribute [rw] etag
|
|
16023
|
+
# The version identifier for the current version of the connection
|
|
16024
|
+
# function.
|
|
16025
|
+
# @return [String]
|
|
16026
|
+
#
|
|
16027
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateConnectionFunctionResult AWS API Documentation
|
|
16028
|
+
#
|
|
16029
|
+
class UpdateConnectionFunctionResult < Struct.new(
|
|
16030
|
+
:connection_function_summary,
|
|
16031
|
+
:etag)
|
|
16032
|
+
SENSITIVE = []
|
|
16033
|
+
include Aws::Structure
|
|
16034
|
+
end
|
|
16035
|
+
|
|
14898
16036
|
# @!attribute [rw] id
|
|
14899
16037
|
# The ID of the connection group.
|
|
14900
16038
|
# @return [String]
|
|
@@ -15699,6 +16837,46 @@ module Aws::CloudFront
|
|
|
15699
16837
|
include Aws::Structure
|
|
15700
16838
|
end
|
|
15701
16839
|
|
|
16840
|
+
# @!attribute [rw] id
|
|
16841
|
+
# The trust store ID.
|
|
16842
|
+
# @return [String]
|
|
16843
|
+
#
|
|
16844
|
+
# @!attribute [rw] ca_certificates_bundle_source
|
|
16845
|
+
# The CA certificates bundle source.
|
|
16846
|
+
# @return [Types::CaCertificatesBundleSource]
|
|
16847
|
+
#
|
|
16848
|
+
# @!attribute [rw] if_match
|
|
16849
|
+
# The current version (`ETag` value) of the trust store you are
|
|
16850
|
+
# updating.
|
|
16851
|
+
# @return [String]
|
|
16852
|
+
#
|
|
16853
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateTrustStoreRequest AWS API Documentation
|
|
16854
|
+
#
|
|
16855
|
+
class UpdateTrustStoreRequest < Struct.new(
|
|
16856
|
+
:id,
|
|
16857
|
+
:ca_certificates_bundle_source,
|
|
16858
|
+
:if_match)
|
|
16859
|
+
SENSITIVE = []
|
|
16860
|
+
include Aws::Structure
|
|
16861
|
+
end
|
|
16862
|
+
|
|
16863
|
+
# @!attribute [rw] trust_store
|
|
16864
|
+
# The trust store.
|
|
16865
|
+
# @return [Types::TrustStore]
|
|
16866
|
+
#
|
|
16867
|
+
# @!attribute [rw] etag
|
|
16868
|
+
# The version identifier for the current version of the trust store.
|
|
16869
|
+
# @return [String]
|
|
16870
|
+
#
|
|
16871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateTrustStoreResult AWS API Documentation
|
|
16872
|
+
#
|
|
16873
|
+
class UpdateTrustStoreResult < Struct.new(
|
|
16874
|
+
:trust_store,
|
|
16875
|
+
:etag)
|
|
16876
|
+
SENSITIVE = []
|
|
16877
|
+
include Aws::Structure
|
|
16878
|
+
end
|
|
16879
|
+
|
|
15702
16880
|
# @!attribute [rw] vpc_origin_endpoint_config
|
|
15703
16881
|
# The VPC origin endpoint configuration.
|
|
15704
16882
|
# @return [Types::VpcOriginEndpointConfig]
|
|
@@ -16003,6 +17181,26 @@ module Aws::CloudFront
|
|
|
16003
17181
|
include Aws::Structure
|
|
16004
17182
|
end
|
|
16005
17183
|
|
|
17184
|
+
# A viewer mTLS configuration.
|
|
17185
|
+
#
|
|
17186
|
+
# @!attribute [rw] mode
|
|
17187
|
+
# The viewer mTLS mode.
|
|
17188
|
+
# @return [String]
|
|
17189
|
+
#
|
|
17190
|
+
# @!attribute [rw] trust_store_config
|
|
17191
|
+
# The trust store configuration associated with the viewer mTLS
|
|
17192
|
+
# configuration.
|
|
17193
|
+
# @return [Types::TrustStoreConfig]
|
|
17194
|
+
#
|
|
17195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ViewerMtlsConfig AWS API Documentation
|
|
17196
|
+
#
|
|
17197
|
+
class ViewerMtlsConfig < Struct.new(
|
|
17198
|
+
:mode,
|
|
17199
|
+
:trust_store_config)
|
|
17200
|
+
SENSITIVE = []
|
|
17201
|
+
include Aws::Structure
|
|
17202
|
+
end
|
|
17203
|
+
|
|
16006
17204
|
# An Amazon CloudFront VPC origin.
|
|
16007
17205
|
#
|
|
16008
17206
|
# @!attribute [rw] id
|
|
@@ -16013,6 +17211,11 @@ module Aws::CloudFront
|
|
|
16013
17211
|
# The VPC origin ARN.
|
|
16014
17212
|
# @return [String]
|
|
16015
17213
|
#
|
|
17214
|
+
# @!attribute [rw] account_id
|
|
17215
|
+
# The account ID of the Amazon Web Services account that owns the VPC
|
|
17216
|
+
# origin.
|
|
17217
|
+
# @return [String]
|
|
17218
|
+
#
|
|
16016
17219
|
# @!attribute [rw] status
|
|
16017
17220
|
# The VPC origin status.
|
|
16018
17221
|
# @return [String]
|
|
@@ -16034,6 +17237,7 @@ module Aws::CloudFront
|
|
|
16034
17237
|
class VpcOrigin < Struct.new(
|
|
16035
17238
|
:id,
|
|
16036
17239
|
:arn,
|
|
17240
|
+
:account_id,
|
|
16037
17241
|
:status,
|
|
16038
17242
|
:created_time,
|
|
16039
17243
|
:last_modified_time,
|
|
@@ -16048,6 +17252,11 @@ module Aws::CloudFront
|
|
|
16048
17252
|
# The VPC origin ID.
|
|
16049
17253
|
# @return [String]
|
|
16050
17254
|
#
|
|
17255
|
+
# @!attribute [rw] owner_account_id
|
|
17256
|
+
# The account ID of the Amazon Web Services account that owns the VPC
|
|
17257
|
+
# origin.
|
|
17258
|
+
# @return [String]
|
|
17259
|
+
#
|
|
16051
17260
|
# @!attribute [rw] origin_read_timeout
|
|
16052
17261
|
# Specifies how long, in seconds, CloudFront waits for a response from
|
|
16053
17262
|
# the origin. This is also known as the *origin response timeout*. The
|
|
@@ -16080,6 +17289,7 @@ module Aws::CloudFront
|
|
|
16080
17289
|
#
|
|
16081
17290
|
class VpcOriginConfig < Struct.new(
|
|
16082
17291
|
:vpc_origin_id,
|
|
17292
|
+
:owner_account_id,
|
|
16083
17293
|
:origin_read_timeout,
|
|
16084
17294
|
:origin_keepalive_timeout)
|
|
16085
17295
|
SENSITIVE = []
|
|
@@ -16198,6 +17408,11 @@ module Aws::CloudFront
|
|
|
16198
17408
|
# The VPC origin summary ARN.
|
|
16199
17409
|
# @return [String]
|
|
16200
17410
|
#
|
|
17411
|
+
# @!attribute [rw] account_id
|
|
17412
|
+
# The account ID of the Amazon Web Services account that owns the VPC
|
|
17413
|
+
# origin.
|
|
17414
|
+
# @return [String]
|
|
17415
|
+
#
|
|
16201
17416
|
# @!attribute [rw] origin_endpoint_arn
|
|
16202
17417
|
# The VPC origin summary origin endpoint ARN.
|
|
16203
17418
|
# @return [String]
|
|
@@ -16211,6 +17426,7 @@ module Aws::CloudFront
|
|
|
16211
17426
|
:created_time,
|
|
16212
17427
|
:last_modified_time,
|
|
16213
17428
|
:arn,
|
|
17429
|
+
:account_id,
|
|
16214
17430
|
:origin_endpoint_arn)
|
|
16215
17431
|
SENSITIVE = []
|
|
16216
17432
|
include Aws::Structure
|