aws-sdk-cloudfront 1.113.0 → 1.115.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +1745 -119
- data/lib/aws-sdk-cloudfront/client_api.rb +907 -0
- data/lib/aws-sdk-cloudfront/errors.rb +32 -0
- data/lib/aws-sdk-cloudfront/types.rb +1893 -36
- data/lib/aws-sdk-cloudfront/waiters.rb +43 -5
- data/lib/aws-sdk-cloudfront.rb +1 -1
- data/sig/client.rbs +454 -9
- data/sig/errors.rbs +6 -0
- data/sig/types.rbs +512 -4
- data/sig/waiters.rbs +11 -0
- metadata +2 -2
@@ -106,7 +106,7 @@ module Aws::CloudFront
|
|
106
106
|
# @!attribute [rw] icp_recordal_status
|
107
107
|
# The Internet Content Provider (ICP) recordal status for a CNAME. The
|
108
108
|
# ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in
|
109
|
-
#
|
109
|
+
# Amazon Web Services Regions outside of China.
|
110
110
|
#
|
111
111
|
# The status values returned are the following:
|
112
112
|
#
|
@@ -114,8 +114,8 @@ module Aws::CloudFront
|
|
114
114
|
# recordal number. Multiple CNAMEs can be associated with a
|
115
115
|
# distribution, and CNAMEs can correspond to different ICP
|
116
116
|
# recordals. To be marked as APPROVED, that is, valid to use with
|
117
|
-
# China
|
118
|
-
# with it.
|
117
|
+
# the China Regions, a CNAME must have one ICP recordal number
|
118
|
+
# associated with it.
|
119
119
|
#
|
120
120
|
# * **SUSPENDED** indicates that the associated CNAME does not have a
|
121
121
|
# valid ICP recordal number.
|
@@ -369,6 +369,99 @@ module Aws::CloudFront
|
|
369
369
|
include Aws::Structure
|
370
370
|
end
|
371
371
|
|
372
|
+
# @!attribute [rw] id
|
373
|
+
# The ID of the distribution tenant.
|
374
|
+
# @return [String]
|
375
|
+
#
|
376
|
+
# @!attribute [rw] web_acl_arn
|
377
|
+
# The Amazon Resource Name (ARN) of the WAF web ACL to associate.
|
378
|
+
# @return [String]
|
379
|
+
#
|
380
|
+
# @!attribute [rw] if_match
|
381
|
+
# The current `ETag` of the distribution tenant. This value is
|
382
|
+
# returned in the response of the `GetDistributionTenant` API
|
383
|
+
# operation.
|
384
|
+
# @return [String]
|
385
|
+
#
|
386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/AssociateDistributionTenantWebACLRequest AWS API Documentation
|
387
|
+
#
|
388
|
+
class AssociateDistributionTenantWebACLRequest < Struct.new(
|
389
|
+
:id,
|
390
|
+
:web_acl_arn,
|
391
|
+
:if_match)
|
392
|
+
SENSITIVE = []
|
393
|
+
include Aws::Structure
|
394
|
+
end
|
395
|
+
|
396
|
+
# @!attribute [rw] id
|
397
|
+
# The ID of the distribution tenant.
|
398
|
+
# @return [String]
|
399
|
+
#
|
400
|
+
# @!attribute [rw] web_acl_arn
|
401
|
+
# The ARN of the WAF web ACL that you associated with the distribution
|
402
|
+
# tenant.
|
403
|
+
# @return [String]
|
404
|
+
#
|
405
|
+
# @!attribute [rw] etag
|
406
|
+
# The current version of the distribution tenant.
|
407
|
+
# @return [String]
|
408
|
+
#
|
409
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/AssociateDistributionTenantWebACLResult AWS API Documentation
|
410
|
+
#
|
411
|
+
class AssociateDistributionTenantWebACLResult < Struct.new(
|
412
|
+
:id,
|
413
|
+
:web_acl_arn,
|
414
|
+
:etag)
|
415
|
+
SENSITIVE = []
|
416
|
+
include Aws::Structure
|
417
|
+
end
|
418
|
+
|
419
|
+
# @!attribute [rw] id
|
420
|
+
# The ID of the distribution.
|
421
|
+
# @return [String]
|
422
|
+
#
|
423
|
+
# @!attribute [rw] web_acl_arn
|
424
|
+
# The Amazon Resource Name (ARN) of the WAF web ACL to associate.
|
425
|
+
# @return [String]
|
426
|
+
#
|
427
|
+
# @!attribute [rw] if_match
|
428
|
+
# The value of the `ETag` header that you received when retrieving the
|
429
|
+
# distribution that you're associating with the WAF web ACL.
|
430
|
+
# @return [String]
|
431
|
+
#
|
432
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/AssociateDistributionWebACLRequest AWS API Documentation
|
433
|
+
#
|
434
|
+
class AssociateDistributionWebACLRequest < Struct.new(
|
435
|
+
:id,
|
436
|
+
:web_acl_arn,
|
437
|
+
:if_match)
|
438
|
+
SENSITIVE = []
|
439
|
+
include Aws::Structure
|
440
|
+
end
|
441
|
+
|
442
|
+
# @!attribute [rw] id
|
443
|
+
# The ID of the distribution.
|
444
|
+
# @return [String]
|
445
|
+
#
|
446
|
+
# @!attribute [rw] web_acl_arn
|
447
|
+
# The ARN of the WAF web ACL that you associated with the
|
448
|
+
# distribution.
|
449
|
+
# @return [String]
|
450
|
+
#
|
451
|
+
# @!attribute [rw] etag
|
452
|
+
# The current version of the distribution.
|
453
|
+
# @return [String]
|
454
|
+
#
|
455
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/AssociateDistributionWebACLResult AWS API Documentation
|
456
|
+
#
|
457
|
+
class AssociateDistributionWebACLResult < Struct.new(
|
458
|
+
:id,
|
459
|
+
:web_acl_arn,
|
460
|
+
:etag)
|
461
|
+
SENSITIVE = []
|
462
|
+
include Aws::Structure
|
463
|
+
end
|
464
|
+
|
372
465
|
# Invalidation batch specified is too large.
|
373
466
|
#
|
374
467
|
# @!attribute [rw] message
|
@@ -1197,6 +1290,21 @@ module Aws::CloudFront
|
|
1197
1290
|
include Aws::Structure
|
1198
1291
|
end
|
1199
1292
|
|
1293
|
+
# The Certificate Manager (ACM) certificate associated with your
|
1294
|
+
# distribution.
|
1295
|
+
#
|
1296
|
+
# @!attribute [rw] arn
|
1297
|
+
# The Amazon Resource Name (ARN) of the ACM certificate.
|
1298
|
+
# @return [String]
|
1299
|
+
#
|
1300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/Certificate AWS API Documentation
|
1301
|
+
#
|
1302
|
+
class Certificate < Struct.new(
|
1303
|
+
:arn)
|
1304
|
+
SENSITIVE = []
|
1305
|
+
include Aws::Structure
|
1306
|
+
end
|
1307
|
+
|
1200
1308
|
# CloudFront origin access identity.
|
1201
1309
|
#
|
1202
1310
|
# @!attribute [rw] id
|
@@ -1447,6 +1555,163 @@ module Aws::CloudFront
|
|
1447
1555
|
include Aws::Structure
|
1448
1556
|
end
|
1449
1557
|
|
1558
|
+
# The connection group for your distribution tenants. When you first
|
1559
|
+
# create a distribution tenant and you don't specify a connection
|
1560
|
+
# group, CloudFront will automatically create a default connection group
|
1561
|
+
# for you. When you create a new distribution tenant and don't specify
|
1562
|
+
# a connection group, the default one will be associated with your
|
1563
|
+
# distribution tenant.
|
1564
|
+
#
|
1565
|
+
# @!attribute [rw] id
|
1566
|
+
# The ID of the connection group.
|
1567
|
+
# @return [String]
|
1568
|
+
#
|
1569
|
+
# @!attribute [rw] name
|
1570
|
+
# The name of the connection group.
|
1571
|
+
# @return [String]
|
1572
|
+
#
|
1573
|
+
# @!attribute [rw] arn
|
1574
|
+
# The Amazon Resource Name (ARN) of the connection group.
|
1575
|
+
# @return [String]
|
1576
|
+
#
|
1577
|
+
# @!attribute [rw] created_time
|
1578
|
+
# The date and time when the connection group was created.
|
1579
|
+
# @return [Time]
|
1580
|
+
#
|
1581
|
+
# @!attribute [rw] last_modified_time
|
1582
|
+
# The date and time when the connection group was updated.
|
1583
|
+
# @return [Time]
|
1584
|
+
#
|
1585
|
+
# @!attribute [rw] tags
|
1586
|
+
# A complex type that contains zero or more `Tag` elements.
|
1587
|
+
# @return [Types::Tags]
|
1588
|
+
#
|
1589
|
+
# @!attribute [rw] ipv_6_enabled
|
1590
|
+
# IPv6 is enabled for the connection group.
|
1591
|
+
# @return [Boolean]
|
1592
|
+
#
|
1593
|
+
# @!attribute [rw] routing_endpoint
|
1594
|
+
# The routing endpoint (also known as the DNS name) that is assigned
|
1595
|
+
# to the connection group, such as d111111abcdef8.cloudfront.net.
|
1596
|
+
# @return [String]
|
1597
|
+
#
|
1598
|
+
# @!attribute [rw] anycast_ip_list_id
|
1599
|
+
# The ID of the Anycast static IP list.
|
1600
|
+
# @return [String]
|
1601
|
+
#
|
1602
|
+
# @!attribute [rw] status
|
1603
|
+
# The status of the connection group.
|
1604
|
+
# @return [String]
|
1605
|
+
#
|
1606
|
+
# @!attribute [rw] enabled
|
1607
|
+
# Whether the connection group is enabled.
|
1608
|
+
# @return [Boolean]
|
1609
|
+
#
|
1610
|
+
# @!attribute [rw] is_default
|
1611
|
+
# Whether the connection group is the default connection group for the
|
1612
|
+
# distribution tenants.
|
1613
|
+
# @return [Boolean]
|
1614
|
+
#
|
1615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConnectionGroup AWS API Documentation
|
1616
|
+
#
|
1617
|
+
class ConnectionGroup < Struct.new(
|
1618
|
+
:id,
|
1619
|
+
:name,
|
1620
|
+
:arn,
|
1621
|
+
:created_time,
|
1622
|
+
:last_modified_time,
|
1623
|
+
:tags,
|
1624
|
+
:ipv_6_enabled,
|
1625
|
+
:routing_endpoint,
|
1626
|
+
:anycast_ip_list_id,
|
1627
|
+
:status,
|
1628
|
+
:enabled,
|
1629
|
+
:is_default)
|
1630
|
+
SENSITIVE = []
|
1631
|
+
include Aws::Structure
|
1632
|
+
end
|
1633
|
+
|
1634
|
+
# Contains information about what CloudFront resources your connection
|
1635
|
+
# groups are associated with.
|
1636
|
+
#
|
1637
|
+
# @!attribute [rw] anycast_ip_list_id
|
1638
|
+
# The ID of the Anycast static IP list.
|
1639
|
+
# @return [String]
|
1640
|
+
#
|
1641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConnectionGroupAssociationFilter AWS API Documentation
|
1642
|
+
#
|
1643
|
+
class ConnectionGroupAssociationFilter < Struct.new(
|
1644
|
+
:anycast_ip_list_id)
|
1645
|
+
SENSITIVE = []
|
1646
|
+
include Aws::Structure
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
# A summary that contains details about your connection groups.
|
1650
|
+
#
|
1651
|
+
# @!attribute [rw] id
|
1652
|
+
# The ID of the connection group.
|
1653
|
+
# @return [String]
|
1654
|
+
#
|
1655
|
+
# @!attribute [rw] name
|
1656
|
+
# The name of the connection group.
|
1657
|
+
# @return [String]
|
1658
|
+
#
|
1659
|
+
# @!attribute [rw] arn
|
1660
|
+
# The Amazon Resource Name (ARN) of the connection group.
|
1661
|
+
# @return [String]
|
1662
|
+
#
|
1663
|
+
# @!attribute [rw] routing_endpoint
|
1664
|
+
# The routing endpoint (also known as the DNS name) that is assigned
|
1665
|
+
# to the connection group, such as d111111abcdef8.cloudfront.net.
|
1666
|
+
# @return [String]
|
1667
|
+
#
|
1668
|
+
# @!attribute [rw] created_time
|
1669
|
+
# The date and time when the connection group was created.
|
1670
|
+
# @return [Time]
|
1671
|
+
#
|
1672
|
+
# @!attribute [rw] last_modified_time
|
1673
|
+
# The date and time when the connection group was updated.
|
1674
|
+
# @return [Time]
|
1675
|
+
#
|
1676
|
+
# @!attribute [rw] etag
|
1677
|
+
# The current version of the connection group.
|
1678
|
+
# @return [String]
|
1679
|
+
#
|
1680
|
+
# @!attribute [rw] anycast_ip_list_id
|
1681
|
+
# The ID of the Anycast static IP list.
|
1682
|
+
# @return [String]
|
1683
|
+
#
|
1684
|
+
# @!attribute [rw] enabled
|
1685
|
+
# Whether the connection group is enabled
|
1686
|
+
# @return [Boolean]
|
1687
|
+
#
|
1688
|
+
# @!attribute [rw] status
|
1689
|
+
# The status of the connection group.
|
1690
|
+
# @return [String]
|
1691
|
+
#
|
1692
|
+
# @!attribute [rw] is_default
|
1693
|
+
# Whether the connection group is the default connection group for the
|
1694
|
+
# distribution tenants.
|
1695
|
+
# @return [Boolean]
|
1696
|
+
#
|
1697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConnectionGroupSummary AWS API Documentation
|
1698
|
+
#
|
1699
|
+
class ConnectionGroupSummary < Struct.new(
|
1700
|
+
:id,
|
1701
|
+
:name,
|
1702
|
+
:arn,
|
1703
|
+
:routing_endpoint,
|
1704
|
+
:created_time,
|
1705
|
+
:last_modified_time,
|
1706
|
+
:etag,
|
1707
|
+
:anycast_ip_list_id,
|
1708
|
+
:enabled,
|
1709
|
+
:status,
|
1710
|
+
:is_default)
|
1711
|
+
SENSITIVE = []
|
1712
|
+
include Aws::Structure
|
1713
|
+
end
|
1714
|
+
|
1450
1715
|
# A field-level encryption content type profile.
|
1451
1716
|
#
|
1452
1717
|
# @!attribute [rw] format
|
@@ -1882,7 +2147,7 @@ module Aws::CloudFront
|
|
1882
2147
|
#
|
1883
2148
|
# @!attribute [rw] ip_count
|
1884
2149
|
# The number of static IP addresses that are allocated to the Anycast
|
1885
|
-
# static IP list.
|
2150
|
+
# static IP list. Valid values: 21 or 3.
|
1886
2151
|
# @return [Integer]
|
1887
2152
|
#
|
1888
2153
|
# @!attribute [rw] tags
|
@@ -2000,6 +2265,63 @@ module Aws::CloudFront
|
|
2000
2265
|
include Aws::Structure
|
2001
2266
|
end
|
2002
2267
|
|
2268
|
+
# @!attribute [rw] name
|
2269
|
+
# The name of the connection group. Enter a friendly identifier that
|
2270
|
+
# is unique within your Amazon Web Services account. This name can't
|
2271
|
+
# be updated after you create the connection group.
|
2272
|
+
# @return [String]
|
2273
|
+
#
|
2274
|
+
# @!attribute [rw] ipv_6_enabled
|
2275
|
+
# Enable IPv6 for the connection group. The default is `true`. For
|
2276
|
+
# more information, see [Enable IPv6][1] in the *Amazon CloudFront
|
2277
|
+
# Developer Guide*.
|
2278
|
+
#
|
2279
|
+
#
|
2280
|
+
#
|
2281
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesEnableIPv6
|
2282
|
+
# @return [Boolean]
|
2283
|
+
#
|
2284
|
+
# @!attribute [rw] tags
|
2285
|
+
# A complex type that contains zero or more `Tag` elements.
|
2286
|
+
# @return [Types::Tags]
|
2287
|
+
#
|
2288
|
+
# @!attribute [rw] anycast_ip_list_id
|
2289
|
+
# The ID of the Anycast static IP list.
|
2290
|
+
# @return [String]
|
2291
|
+
#
|
2292
|
+
# @!attribute [rw] enabled
|
2293
|
+
# Enable the connection group.
|
2294
|
+
# @return [Boolean]
|
2295
|
+
#
|
2296
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateConnectionGroupRequest AWS API Documentation
|
2297
|
+
#
|
2298
|
+
class CreateConnectionGroupRequest < Struct.new(
|
2299
|
+
:name,
|
2300
|
+
:ipv_6_enabled,
|
2301
|
+
:tags,
|
2302
|
+
:anycast_ip_list_id,
|
2303
|
+
:enabled)
|
2304
|
+
SENSITIVE = []
|
2305
|
+
include Aws::Structure
|
2306
|
+
end
|
2307
|
+
|
2308
|
+
# @!attribute [rw] connection_group
|
2309
|
+
# The connection group that you created.
|
2310
|
+
# @return [Types::ConnectionGroup]
|
2311
|
+
#
|
2312
|
+
# @!attribute [rw] etag
|
2313
|
+
# The current version of the connection group.
|
2314
|
+
# @return [String]
|
2315
|
+
#
|
2316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateConnectionGroupResult AWS API Documentation
|
2317
|
+
#
|
2318
|
+
class CreateConnectionGroupResult < Struct.new(
|
2319
|
+
:connection_group,
|
2320
|
+
:etag)
|
2321
|
+
SENSITIVE = []
|
2322
|
+
include Aws::Structure
|
2323
|
+
end
|
2324
|
+
|
2003
2325
|
# @!attribute [rw] continuous_deployment_policy_config
|
2004
2326
|
# Contains the configuration for a continuous deployment policy.
|
2005
2327
|
# @return [Types::ContinuousDeploymentPolicyConfig]
|
@@ -2074,6 +2396,91 @@ module Aws::CloudFront
|
|
2074
2396
|
include Aws::Structure
|
2075
2397
|
end
|
2076
2398
|
|
2399
|
+
# @!attribute [rw] distribution_id
|
2400
|
+
# The ID of the multi-tenant distribution to use for creating the
|
2401
|
+
# distribution tenant.
|
2402
|
+
# @return [String]
|
2403
|
+
#
|
2404
|
+
# @!attribute [rw] name
|
2405
|
+
# The name of the distribution tenant. Enter a friendly identifier
|
2406
|
+
# that is unique within your Amazon Web Services account. This name
|
2407
|
+
# can't be updated after you create the distribution tenant.
|
2408
|
+
# @return [String]
|
2409
|
+
#
|
2410
|
+
# @!attribute [rw] domains
|
2411
|
+
# The domains associated with the distribution tenant. You must
|
2412
|
+
# specify at least one domain in the request.
|
2413
|
+
# @return [Array<Types::DomainItem>]
|
2414
|
+
#
|
2415
|
+
# @!attribute [rw] tags
|
2416
|
+
# A complex type that contains zero or more `Tag` elements.
|
2417
|
+
# @return [Types::Tags]
|
2418
|
+
#
|
2419
|
+
# @!attribute [rw] customizations
|
2420
|
+
# Customizations for the distribution tenant. For each distribution
|
2421
|
+
# tenant, you can specify the geographic restrictions, and the Amazon
|
2422
|
+
# Resource Names (ARNs) for the ACM certificate and WAF web ACL. These
|
2423
|
+
# are specific values that you can override or disable from the
|
2424
|
+
# multi-tenant distribution that was used to create the distribution
|
2425
|
+
# tenant.
|
2426
|
+
# @return [Types::Customizations]
|
2427
|
+
#
|
2428
|
+
# @!attribute [rw] parameters
|
2429
|
+
# A list of parameter values to add to the resource. A parameter is
|
2430
|
+
# specified as a key-value pair. A valid parameter value must exist
|
2431
|
+
# for any parameter that is marked as required in the multi-tenant
|
2432
|
+
# distribution.
|
2433
|
+
# @return [Array<Types::Parameter>]
|
2434
|
+
#
|
2435
|
+
# @!attribute [rw] connection_group_id
|
2436
|
+
# The ID of the connection group to associate with the distribution
|
2437
|
+
# tenant.
|
2438
|
+
# @return [String]
|
2439
|
+
#
|
2440
|
+
# @!attribute [rw] managed_certificate_request
|
2441
|
+
# The configuration for the CloudFront managed ACM certificate
|
2442
|
+
# request.
|
2443
|
+
# @return [Types::ManagedCertificateRequest]
|
2444
|
+
#
|
2445
|
+
# @!attribute [rw] enabled
|
2446
|
+
# Indicates whether the distribution tenant should be enabled when
|
2447
|
+
# created. If the distribution tenant is disabled, the distribution
|
2448
|
+
# tenant won't serve traffic.
|
2449
|
+
# @return [Boolean]
|
2450
|
+
#
|
2451
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateDistributionTenantRequest AWS API Documentation
|
2452
|
+
#
|
2453
|
+
class CreateDistributionTenantRequest < Struct.new(
|
2454
|
+
:distribution_id,
|
2455
|
+
:name,
|
2456
|
+
:domains,
|
2457
|
+
:tags,
|
2458
|
+
:customizations,
|
2459
|
+
:parameters,
|
2460
|
+
:connection_group_id,
|
2461
|
+
:managed_certificate_request,
|
2462
|
+
:enabled)
|
2463
|
+
SENSITIVE = []
|
2464
|
+
include Aws::Structure
|
2465
|
+
end
|
2466
|
+
|
2467
|
+
# @!attribute [rw] distribution_tenant
|
2468
|
+
# The distribution tenant that you created.
|
2469
|
+
# @return [Types::DistributionTenant]
|
2470
|
+
#
|
2471
|
+
# @!attribute [rw] etag
|
2472
|
+
# The current version of the distribution tenant.
|
2473
|
+
# @return [String]
|
2474
|
+
#
|
2475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateDistributionTenantResult AWS API Documentation
|
2476
|
+
#
|
2477
|
+
class CreateDistributionTenantResult < Struct.new(
|
2478
|
+
:distribution_tenant,
|
2479
|
+
:etag)
|
2480
|
+
SENSITIVE = []
|
2481
|
+
include Aws::Structure
|
2482
|
+
end
|
2483
|
+
|
2077
2484
|
# The request to create a new distribution with tags.
|
2078
2485
|
#
|
2079
2486
|
# @!attribute [rw] distribution_config_with_tags
|
@@ -2238,9 +2645,43 @@ module Aws::CloudFront
|
|
2238
2645
|
include Aws::Structure
|
2239
2646
|
end
|
2240
2647
|
|
2241
|
-
#
|
2648
|
+
# @!attribute [rw] id
|
2649
|
+
# The ID of the distribution tenant.
|
2650
|
+
# @return [String]
|
2242
2651
|
#
|
2243
|
-
# @!attribute [rw]
|
2652
|
+
# @!attribute [rw] invalidation_batch
|
2653
|
+
# An invalidation batch.
|
2654
|
+
# @return [Types::InvalidationBatch]
|
2655
|
+
#
|
2656
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateInvalidationForDistributionTenantRequest AWS API Documentation
|
2657
|
+
#
|
2658
|
+
class CreateInvalidationForDistributionTenantRequest < Struct.new(
|
2659
|
+
:id,
|
2660
|
+
:invalidation_batch)
|
2661
|
+
SENSITIVE = []
|
2662
|
+
include Aws::Structure
|
2663
|
+
end
|
2664
|
+
|
2665
|
+
# @!attribute [rw] location
|
2666
|
+
# The location for the invalidation.
|
2667
|
+
# @return [String]
|
2668
|
+
#
|
2669
|
+
# @!attribute [rw] invalidation
|
2670
|
+
# An invalidation.
|
2671
|
+
# @return [Types::Invalidation]
|
2672
|
+
#
|
2673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateInvalidationForDistributionTenantResult AWS API Documentation
|
2674
|
+
#
|
2675
|
+
class CreateInvalidationForDistributionTenantResult < Struct.new(
|
2676
|
+
:location,
|
2677
|
+
:invalidation)
|
2678
|
+
SENSITIVE = []
|
2679
|
+
include Aws::Structure
|
2680
|
+
end
|
2681
|
+
|
2682
|
+
# The request to create an invalidation.
|
2683
|
+
#
|
2684
|
+
# @!attribute [rw] distribution_id
|
2244
2685
|
# The distribution's id.
|
2245
2686
|
# @return [String]
|
2246
2687
|
#
|
@@ -2939,6 +3380,35 @@ module Aws::CloudFront
|
|
2939
3380
|
include Aws::Structure
|
2940
3381
|
end
|
2941
3382
|
|
3383
|
+
# Customizations for the distribution tenant. For each distribution
|
3384
|
+
# tenant, you can specify the geographic restrictions, and the Amazon
|
3385
|
+
# Resource Names (ARNs) for the ACM certificate and WAF web ACL. These
|
3386
|
+
# are specific values that you can override or disable from the
|
3387
|
+
# multi-tenant distribution that was used to create the distribution
|
3388
|
+
# tenant.
|
3389
|
+
#
|
3390
|
+
# @!attribute [rw] web_acl
|
3391
|
+
# The WAF web ACL.
|
3392
|
+
# @return [Types::WebAclCustomization]
|
3393
|
+
#
|
3394
|
+
# @!attribute [rw] certificate
|
3395
|
+
# The Certificate Manager (ACM) certificate.
|
3396
|
+
# @return [Types::Certificate]
|
3397
|
+
#
|
3398
|
+
# @!attribute [rw] geo_restrictions
|
3399
|
+
# The geographic restrictions.
|
3400
|
+
# @return [Types::GeoRestrictionCustomization]
|
3401
|
+
#
|
3402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/Customizations AWS API Documentation
|
3403
|
+
#
|
3404
|
+
class Customizations < Struct.new(
|
3405
|
+
:web_acl,
|
3406
|
+
:certificate,
|
3407
|
+
:geo_restrictions)
|
3408
|
+
SENSITIVE = []
|
3409
|
+
include Aws::Structure
|
3410
|
+
end
|
3411
|
+
|
2942
3412
|
# A complex type that describes the default cache behavior if you don't
|
2943
3413
|
# specify a `CacheBehavior` element or if request URLs don't match any
|
2944
3414
|
# of the values of `PathPattern` in `CacheBehavior` elements. You must
|
@@ -3307,6 +3777,24 @@ module Aws::CloudFront
|
|
3307
3777
|
include Aws::Structure
|
3308
3778
|
end
|
3309
3779
|
|
3780
|
+
# @!attribute [rw] id
|
3781
|
+
# The ID of the connection group to delete.
|
3782
|
+
# @return [String]
|
3783
|
+
#
|
3784
|
+
# @!attribute [rw] if_match
|
3785
|
+
# The value of the `ETag` header that you received when retrieving the
|
3786
|
+
# connection group to delete.
|
3787
|
+
# @return [String]
|
3788
|
+
#
|
3789
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DeleteConnectionGroupRequest AWS API Documentation
|
3790
|
+
#
|
3791
|
+
class DeleteConnectionGroupRequest < Struct.new(
|
3792
|
+
:id,
|
3793
|
+
:if_match)
|
3794
|
+
SENSITIVE = []
|
3795
|
+
include Aws::Structure
|
3796
|
+
end
|
3797
|
+
|
3310
3798
|
# @!attribute [rw] id
|
3311
3799
|
# The identifier of the continuous deployment policy that you are
|
3312
3800
|
# deleting.
|
@@ -3388,6 +3876,25 @@ module Aws::CloudFront
|
|
3388
3876
|
include Aws::Structure
|
3389
3877
|
end
|
3390
3878
|
|
3879
|
+
# @!attribute [rw] id
|
3880
|
+
# The ID of the distribution tenant to delete.
|
3881
|
+
# @return [String]
|
3882
|
+
#
|
3883
|
+
# @!attribute [rw] if_match
|
3884
|
+
# The value of the `ETag` header that you received when retrieving the
|
3885
|
+
# distribution tenant. This value is returned in the response of the
|
3886
|
+
# `GetDistributionTenant` API operation.
|
3887
|
+
# @return [String]
|
3888
|
+
#
|
3889
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DeleteDistributionTenantRequest AWS API Documentation
|
3890
|
+
#
|
3891
|
+
class DeleteDistributionTenantRequest < Struct.new(
|
3892
|
+
:id,
|
3893
|
+
:if_match)
|
3894
|
+
SENSITIVE = []
|
3895
|
+
include Aws::Structure
|
3896
|
+
end
|
3897
|
+
|
3391
3898
|
# @!attribute [rw] id
|
3392
3899
|
# The ID of the configuration you want to delete from CloudFront.
|
3393
3900
|
# @return [String]
|
@@ -3716,6 +4223,78 @@ module Aws::CloudFront
|
|
3716
4223
|
include Aws::Structure
|
3717
4224
|
end
|
3718
4225
|
|
4226
|
+
# @!attribute [rw] id
|
4227
|
+
# The ID of the distribution tenant.
|
4228
|
+
# @return [String]
|
4229
|
+
#
|
4230
|
+
# @!attribute [rw] if_match
|
4231
|
+
# The current version of the distribution tenant that you're
|
4232
|
+
# disassociating from the WAF web ACL. This is the `ETag` value
|
4233
|
+
# returned in the response to the `GetDistributionTenant` API
|
4234
|
+
# operation.
|
4235
|
+
# @return [String]
|
4236
|
+
#
|
4237
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DisassociateDistributionTenantWebACLRequest AWS API Documentation
|
4238
|
+
#
|
4239
|
+
class DisassociateDistributionTenantWebACLRequest < Struct.new(
|
4240
|
+
:id,
|
4241
|
+
:if_match)
|
4242
|
+
SENSITIVE = []
|
4243
|
+
include Aws::Structure
|
4244
|
+
end
|
4245
|
+
|
4246
|
+
# @!attribute [rw] id
|
4247
|
+
# The ID of the distribution tenant.
|
4248
|
+
# @return [String]
|
4249
|
+
#
|
4250
|
+
# @!attribute [rw] etag
|
4251
|
+
# The current version of the distribution tenant.
|
4252
|
+
# @return [String]
|
4253
|
+
#
|
4254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DisassociateDistributionTenantWebACLResult AWS API Documentation
|
4255
|
+
#
|
4256
|
+
class DisassociateDistributionTenantWebACLResult < Struct.new(
|
4257
|
+
:id,
|
4258
|
+
:etag)
|
4259
|
+
SENSITIVE = []
|
4260
|
+
include Aws::Structure
|
4261
|
+
end
|
4262
|
+
|
4263
|
+
# @!attribute [rw] id
|
4264
|
+
# The ID of the distribution.
|
4265
|
+
# @return [String]
|
4266
|
+
#
|
4267
|
+
# @!attribute [rw] if_match
|
4268
|
+
# The value of the `ETag` header that you received when retrieving the
|
4269
|
+
# distribution that you're disassociating from the WAF web ACL.
|
4270
|
+
# @return [String]
|
4271
|
+
#
|
4272
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DisassociateDistributionWebACLRequest AWS API Documentation
|
4273
|
+
#
|
4274
|
+
class DisassociateDistributionWebACLRequest < Struct.new(
|
4275
|
+
:id,
|
4276
|
+
:if_match)
|
4277
|
+
SENSITIVE = []
|
4278
|
+
include Aws::Structure
|
4279
|
+
end
|
4280
|
+
|
4281
|
+
# @!attribute [rw] id
|
4282
|
+
# The ID of the distribution.
|
4283
|
+
# @return [String]
|
4284
|
+
#
|
4285
|
+
# @!attribute [rw] etag
|
4286
|
+
# The current version of the distribution.
|
4287
|
+
# @return [String]
|
4288
|
+
#
|
4289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DisassociateDistributionWebACLResult AWS API Documentation
|
4290
|
+
#
|
4291
|
+
class DisassociateDistributionWebACLResult < Struct.new(
|
4292
|
+
:id,
|
4293
|
+
:etag)
|
4294
|
+
SENSITIVE = []
|
4295
|
+
include Aws::Structure
|
4296
|
+
end
|
4297
|
+
|
3719
4298
|
# A distribution tells CloudFront where you want content to be delivered
|
3720
4299
|
# from, and the details about how to track and manage content delivery.
|
3721
4300
|
#
|
@@ -4066,6 +4645,14 @@ module Aws::CloudFront
|
|
4066
4645
|
# distribution.
|
4067
4646
|
# @return [String]
|
4068
4647
|
#
|
4648
|
+
# @!attribute [rw] tenant_config
|
4649
|
+
# A distribution tenant configuration.
|
4650
|
+
# @return [Types::TenantConfig]
|
4651
|
+
#
|
4652
|
+
# @!attribute [rw] connection_mode
|
4653
|
+
# The connection mode to filter distributions by.
|
4654
|
+
# @return [String]
|
4655
|
+
#
|
4069
4656
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionConfig AWS API Documentation
|
4070
4657
|
#
|
4071
4658
|
class DistributionConfig < Struct.new(
|
@@ -4088,7 +4675,9 @@ module Aws::CloudFront
|
|
4088
4675
|
:is_ipv6_enabled,
|
4089
4676
|
:continuous_deployment_policy_id,
|
4090
4677
|
:staging,
|
4091
|
-
:anycast_ip_list_id
|
4678
|
+
:anycast_ip_list_id,
|
4679
|
+
:tenant_config,
|
4680
|
+
:connection_mode)
|
4092
4681
|
SENSITIVE = [:comment]
|
4093
4682
|
include Aws::Structure
|
4094
4683
|
end
|
@@ -4218,6 +4807,25 @@ module Aws::CloudFront
|
|
4218
4807
|
include Aws::Structure
|
4219
4808
|
end
|
4220
4809
|
|
4810
|
+
# The IDs for the distribution resources.
|
4811
|
+
#
|
4812
|
+
# @!attribute [rw] distribution_id
|
4813
|
+
# The ID of the multi-tenant distribution.
|
4814
|
+
# @return [String]
|
4815
|
+
#
|
4816
|
+
# @!attribute [rw] distribution_tenant_id
|
4817
|
+
# The ID of the distribution tenant.
|
4818
|
+
# @return [String]
|
4819
|
+
#
|
4820
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionResourceId AWS API Documentation
|
4821
|
+
#
|
4822
|
+
class DistributionResourceId < Struct.new(
|
4823
|
+
:distribution_id,
|
4824
|
+
:distribution_tenant_id)
|
4825
|
+
SENSITIVE = []
|
4826
|
+
include Aws::Structure
|
4827
|
+
end
|
4828
|
+
|
4221
4829
|
# A summary of the information about a CloudFront distribution.
|
4222
4830
|
#
|
4223
4831
|
# @!attribute [rw] id
|
@@ -4230,6 +4838,10 @@ module Aws::CloudFront
|
|
4230
4838
|
# where `123456789012` is your Amazon Web Services account ID.
|
4231
4839
|
# @return [String]
|
4232
4840
|
#
|
4841
|
+
# @!attribute [rw] etag
|
4842
|
+
# The current version of the distribution.
|
4843
|
+
# @return [String]
|
4844
|
+
#
|
4233
4845
|
# @!attribute [rw] status
|
4234
4846
|
# The current status of the distribution. When the status is
|
4235
4847
|
# `Deployed`, the distribution's information is propagated to all
|
@@ -4338,6 +4950,10 @@ module Aws::CloudFront
|
|
4338
4950
|
# value is `false`, this is not a staging distribution.
|
4339
4951
|
# @return [Boolean]
|
4340
4952
|
#
|
4953
|
+
# @!attribute [rw] connection_mode
|
4954
|
+
# The connection mode to filter distributions by.
|
4955
|
+
# @return [String]
|
4956
|
+
#
|
4341
4957
|
# @!attribute [rw] anycast_ip_list_id
|
4342
4958
|
# ID of the Anycast static IP list that is associated with the
|
4343
4959
|
# distribution.
|
@@ -4348,6 +4964,7 @@ module Aws::CloudFront
|
|
4348
4964
|
class DistributionSummary < Struct.new(
|
4349
4965
|
:id,
|
4350
4966
|
:arn,
|
4967
|
+
:etag,
|
4351
4968
|
:status,
|
4352
4969
|
:last_modified_time,
|
4353
4970
|
:domain_name,
|
@@ -4367,11 +4984,297 @@ module Aws::CloudFront
|
|
4367
4984
|
:is_ipv6_enabled,
|
4368
4985
|
:alias_icp_recordals,
|
4369
4986
|
:staging,
|
4987
|
+
:connection_mode,
|
4370
4988
|
:anycast_ip_list_id)
|
4371
4989
|
SENSITIVE = []
|
4372
4990
|
include Aws::Structure
|
4373
4991
|
end
|
4374
4992
|
|
4993
|
+
# The distribution tenant.
|
4994
|
+
#
|
4995
|
+
# @!attribute [rw] id
|
4996
|
+
# The ID of the distribution tenant.
|
4997
|
+
# @return [String]
|
4998
|
+
#
|
4999
|
+
# @!attribute [rw] distribution_id
|
5000
|
+
# The ID of the multi-tenant distribution.
|
5001
|
+
# @return [String]
|
5002
|
+
#
|
5003
|
+
# @!attribute [rw] name
|
5004
|
+
# The name of the distribution tenant.
|
5005
|
+
# @return [String]
|
5006
|
+
#
|
5007
|
+
# @!attribute [rw] arn
|
5008
|
+
# The Amazon Resource Name (ARN) of the distribution tenant.
|
5009
|
+
# @return [String]
|
5010
|
+
#
|
5011
|
+
# @!attribute [rw] domains
|
5012
|
+
# The domains associated with the distribution tenant.
|
5013
|
+
# @return [Array<Types::DomainResult>]
|
5014
|
+
#
|
5015
|
+
# @!attribute [rw] tags
|
5016
|
+
# A complex type that contains zero or more `Tag` elements.
|
5017
|
+
# @return [Types::Tags]
|
5018
|
+
#
|
5019
|
+
# @!attribute [rw] customizations
|
5020
|
+
# Customizations for the distribution tenant. For each distribution
|
5021
|
+
# tenant, you can specify the geographic restrictions, and the Amazon
|
5022
|
+
# Resource Names (ARNs) for the ACM certificate and WAF web ACL. These
|
5023
|
+
# are specific values that you can override or disable from the
|
5024
|
+
# multi-tenant distribution that was used to create the distribution
|
5025
|
+
# tenant.
|
5026
|
+
# @return [Types::Customizations]
|
5027
|
+
#
|
5028
|
+
# @!attribute [rw] parameters
|
5029
|
+
# A list of parameter values to add to the resource. A parameter is
|
5030
|
+
# specified as a key-value pair. A valid parameter value must exist
|
5031
|
+
# for any parameter that is marked as required in the multi-tenant
|
5032
|
+
# distribution.
|
5033
|
+
# @return [Array<Types::Parameter>]
|
5034
|
+
#
|
5035
|
+
# @!attribute [rw] connection_group_id
|
5036
|
+
# The ID of the connection group for the distribution tenant. If you
|
5037
|
+
# don't specify a connection group, CloudFront uses the default
|
5038
|
+
# connection group.
|
5039
|
+
# @return [String]
|
5040
|
+
#
|
5041
|
+
# @!attribute [rw] created_time
|
5042
|
+
# The date and time when the distribution tenant was created.
|
5043
|
+
# @return [Time]
|
5044
|
+
#
|
5045
|
+
# @!attribute [rw] last_modified_time
|
5046
|
+
# The date and time when the distribution tenant was updated.
|
5047
|
+
# @return [Time]
|
5048
|
+
#
|
5049
|
+
# @!attribute [rw] enabled
|
5050
|
+
# Indicates whether the distribution tenant is in an enabled state. If
|
5051
|
+
# disabled, the distribution tenant won't serve traffic.
|
5052
|
+
# @return [Boolean]
|
5053
|
+
#
|
5054
|
+
# @!attribute [rw] status
|
5055
|
+
# The status of the distribution tenant.
|
5056
|
+
# @return [String]
|
5057
|
+
#
|
5058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionTenant AWS API Documentation
|
5059
|
+
#
|
5060
|
+
class DistributionTenant < Struct.new(
|
5061
|
+
:id,
|
5062
|
+
:distribution_id,
|
5063
|
+
:name,
|
5064
|
+
:arn,
|
5065
|
+
:domains,
|
5066
|
+
:tags,
|
5067
|
+
:customizations,
|
5068
|
+
:parameters,
|
5069
|
+
:connection_group_id,
|
5070
|
+
:created_time,
|
5071
|
+
:last_modified_time,
|
5072
|
+
:enabled,
|
5073
|
+
:status)
|
5074
|
+
SENSITIVE = []
|
5075
|
+
include Aws::Structure
|
5076
|
+
end
|
5077
|
+
|
5078
|
+
# Filter by the associated distribution ID or connection group ID.
|
5079
|
+
#
|
5080
|
+
# @!attribute [rw] distribution_id
|
5081
|
+
# The distribution ID to filter by. You can find distribution tenants
|
5082
|
+
# associated with a specific distribution.
|
5083
|
+
# @return [String]
|
5084
|
+
#
|
5085
|
+
# @!attribute [rw] connection_group_id
|
5086
|
+
# The ID of the connection group to filter by. You can find
|
5087
|
+
# distribution tenants associated with a specific connection group.
|
5088
|
+
# @return [String]
|
5089
|
+
#
|
5090
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionTenantAssociationFilter AWS API Documentation
|
5091
|
+
#
|
5092
|
+
class DistributionTenantAssociationFilter < Struct.new(
|
5093
|
+
:distribution_id,
|
5094
|
+
:connection_group_id)
|
5095
|
+
SENSITIVE = []
|
5096
|
+
include Aws::Structure
|
5097
|
+
end
|
5098
|
+
|
5099
|
+
# A summary of the information about a distribution tenant.
|
5100
|
+
#
|
5101
|
+
# @!attribute [rw] id
|
5102
|
+
# The ID of the distribution tenant.
|
5103
|
+
# @return [String]
|
5104
|
+
#
|
5105
|
+
# @!attribute [rw] distribution_id
|
5106
|
+
# The identifier for the multi-tenant distribution. For example:
|
5107
|
+
# `EDFDVBD632BHDS5`.
|
5108
|
+
# @return [String]
|
5109
|
+
#
|
5110
|
+
# @!attribute [rw] name
|
5111
|
+
# The name of the distribution tenant.
|
5112
|
+
# @return [String]
|
5113
|
+
#
|
5114
|
+
# @!attribute [rw] arn
|
5115
|
+
# The Amazon Resource Name (ARN) of the distribution tenant.
|
5116
|
+
# @return [String]
|
5117
|
+
#
|
5118
|
+
# @!attribute [rw] domains
|
5119
|
+
# The domains associated with the distribution tenant.
|
5120
|
+
# @return [Array<Types::DomainResult>]
|
5121
|
+
#
|
5122
|
+
# @!attribute [rw] connection_group_id
|
5123
|
+
# The ID of the connection group ID for the distribution tenant. If
|
5124
|
+
# you don't specify a connection group, CloudFront uses the default
|
5125
|
+
# connection group.
|
5126
|
+
# @return [String]
|
5127
|
+
#
|
5128
|
+
# @!attribute [rw] customizations
|
5129
|
+
# Customizations for the distribution tenant. For each distribution
|
5130
|
+
# tenant, you can specify the geographic restrictions, and the Amazon
|
5131
|
+
# Resource Names (ARNs) for the ACM certificate and WAF web ACL. These
|
5132
|
+
# are specific values that you can override or disable from the
|
5133
|
+
# multi-tenant distribution that was used to create the distribution
|
5134
|
+
# tenant.
|
5135
|
+
# @return [Types::Customizations]
|
5136
|
+
#
|
5137
|
+
# @!attribute [rw] created_time
|
5138
|
+
# The date and time when the distribution tenant was created.
|
5139
|
+
# @return [Time]
|
5140
|
+
#
|
5141
|
+
# @!attribute [rw] last_modified_time
|
5142
|
+
# The date and time when the distribution tenant was updated.
|
5143
|
+
# @return [Time]
|
5144
|
+
#
|
5145
|
+
# @!attribute [rw] etag
|
5146
|
+
# The current version of the distribution tenant.
|
5147
|
+
# @return [String]
|
5148
|
+
#
|
5149
|
+
# @!attribute [rw] enabled
|
5150
|
+
# Indicates whether the distribution tenants are in an enabled state.
|
5151
|
+
# If disabled, the distribution tenant won't service traffic.
|
5152
|
+
# @return [Boolean]
|
5153
|
+
#
|
5154
|
+
# @!attribute [rw] status
|
5155
|
+
# The status of the distribution tenant.
|
5156
|
+
# @return [String]
|
5157
|
+
#
|
5158
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionTenantSummary AWS API Documentation
|
5159
|
+
#
|
5160
|
+
class DistributionTenantSummary < Struct.new(
|
5161
|
+
:id,
|
5162
|
+
:distribution_id,
|
5163
|
+
:name,
|
5164
|
+
:arn,
|
5165
|
+
:domains,
|
5166
|
+
:connection_group_id,
|
5167
|
+
:customizations,
|
5168
|
+
:created_time,
|
5169
|
+
:last_modified_time,
|
5170
|
+
:etag,
|
5171
|
+
:enabled,
|
5172
|
+
:status)
|
5173
|
+
SENSITIVE = []
|
5174
|
+
include Aws::Structure
|
5175
|
+
end
|
5176
|
+
|
5177
|
+
# The DNS configuration for your domain names.
|
5178
|
+
#
|
5179
|
+
# @!attribute [rw] domain
|
5180
|
+
# The domain name that you're verifying.
|
5181
|
+
# @return [String]
|
5182
|
+
#
|
5183
|
+
# @!attribute [rw] status
|
5184
|
+
# The status of your domain name.
|
5185
|
+
#
|
5186
|
+
# * `valid-configuration`: The domain name is correctly configured and
|
5187
|
+
# points to the correct routing endpoint of the connection group.
|
5188
|
+
#
|
5189
|
+
# * `invalid-configuration`: There is either a missing DNS record or
|
5190
|
+
# the DNS record exists but it's using an incorrect routing
|
5191
|
+
# endpoint. Update the DNS record to point to the correct routing
|
5192
|
+
# endpoint.
|
5193
|
+
#
|
5194
|
+
# * `unknown-configuration`: CloudFront can't validate your DNS
|
5195
|
+
# configuration. This status can appear if CloudFront can't verify
|
5196
|
+
# the DNS record, or the DNS lookup request failed or timed out.
|
5197
|
+
# @return [String]
|
5198
|
+
#
|
5199
|
+
# @!attribute [rw] reason
|
5200
|
+
# Explains the status of the DNS configuration.
|
5201
|
+
# @return [String]
|
5202
|
+
#
|
5203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DnsConfiguration AWS API Documentation
|
5204
|
+
#
|
5205
|
+
class DnsConfiguration < Struct.new(
|
5206
|
+
:domain,
|
5207
|
+
:status,
|
5208
|
+
:reason)
|
5209
|
+
SENSITIVE = []
|
5210
|
+
include Aws::Structure
|
5211
|
+
end
|
5212
|
+
|
5213
|
+
# Contains information about the domain conflict. Use this information
|
5214
|
+
# to determine the affected domain, the related resource, and the
|
5215
|
+
# affected Amazon Web Services account.
|
5216
|
+
#
|
5217
|
+
# @!attribute [rw] domain
|
5218
|
+
# The domain used to find existing conflicts for domain
|
5219
|
+
# configurations.
|
5220
|
+
# @return [String]
|
5221
|
+
#
|
5222
|
+
# @!attribute [rw] resource_type
|
5223
|
+
# The CloudFront resource type that has a domain conflict.
|
5224
|
+
# @return [String]
|
5225
|
+
#
|
5226
|
+
# @!attribute [rw] resource_id
|
5227
|
+
# The ID of the resource that has a domain conflict.
|
5228
|
+
# @return [String]
|
5229
|
+
#
|
5230
|
+
# @!attribute [rw] account_id
|
5231
|
+
# The ID of the Amazon Web Services account for the domain conflict.
|
5232
|
+
# @return [String]
|
5233
|
+
#
|
5234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DomainConflict AWS API Documentation
|
5235
|
+
#
|
5236
|
+
class DomainConflict < Struct.new(
|
5237
|
+
:domain,
|
5238
|
+
:resource_type,
|
5239
|
+
:resource_id,
|
5240
|
+
:account_id)
|
5241
|
+
SENSITIVE = []
|
5242
|
+
include Aws::Structure
|
5243
|
+
end
|
5244
|
+
|
5245
|
+
# The domain for the specified distribution tenant.
|
5246
|
+
#
|
5247
|
+
# @!attribute [rw] domain
|
5248
|
+
# The domain name.
|
5249
|
+
# @return [String]
|
5250
|
+
#
|
5251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DomainItem AWS API Documentation
|
5252
|
+
#
|
5253
|
+
class DomainItem < Struct.new(
|
5254
|
+
:domain)
|
5255
|
+
SENSITIVE = []
|
5256
|
+
include Aws::Structure
|
5257
|
+
end
|
5258
|
+
|
5259
|
+
# The details about the domain result.
|
5260
|
+
#
|
5261
|
+
# @!attribute [rw] domain
|
5262
|
+
# The specified domain.
|
5263
|
+
# @return [String]
|
5264
|
+
#
|
5265
|
+
# @!attribute [rw] status
|
5266
|
+
# Whether the domain is active or inactive.
|
5267
|
+
# @return [String]
|
5268
|
+
#
|
5269
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DomainResult AWS API Documentation
|
5270
|
+
#
|
5271
|
+
class DomainResult < Struct.new(
|
5272
|
+
:domain,
|
5273
|
+
:status)
|
5274
|
+
SENSITIVE = []
|
5275
|
+
include Aws::Structure
|
5276
|
+
end
|
5277
|
+
|
4375
5278
|
# Complex data type for field-level encryption profiles that includes
|
4376
5279
|
# all of the encryption entities.
|
4377
5280
|
#
|
@@ -4428,8 +5331,8 @@ module Aws::CloudFront
|
|
4428
5331
|
include Aws::Structure
|
4429
5332
|
end
|
4430
5333
|
|
4431
|
-
# Contains information about the Amazon Kinesis data stream where
|
4432
|
-
#
|
5334
|
+
# Contains information about the Amazon Kinesis data stream where
|
5335
|
+
# you're sending real-time log data in a real-time log configuration.
|
4433
5336
|
#
|
4434
5337
|
# @!attribute [rw] stream_type
|
4435
5338
|
# The type of data stream where you are sending real-time log data.
|
@@ -4438,7 +5341,7 @@ module Aws::CloudFront
|
|
4438
5341
|
#
|
4439
5342
|
# @!attribute [rw] kinesis_stream_config
|
4440
5343
|
# Contains information about the Amazon Kinesis data stream where you
|
4441
|
-
# are sending real-time log data.
|
5344
|
+
# are sending real-time log data in a real-time log configuration.
|
4442
5345
|
# @return [Types::KinesisStreamConfig]
|
4443
5346
|
#
|
4444
5347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/EndPoint AWS API Documentation
|
@@ -5266,6 +6169,36 @@ module Aws::CloudFront
|
|
5266
6169
|
include Aws::Structure
|
5267
6170
|
end
|
5268
6171
|
|
6172
|
+
# The customizations that you specified for the distribution tenant for
|
6173
|
+
# geographic restrictions.
|
6174
|
+
#
|
6175
|
+
# @!attribute [rw] restriction_type
|
6176
|
+
# The method that you want to use to restrict distribution of your
|
6177
|
+
# content by country:
|
6178
|
+
#
|
6179
|
+
# * `none`: No geographic restriction is enabled, meaning access to
|
6180
|
+
# content is not restricted by client geo location.
|
6181
|
+
#
|
6182
|
+
# * `blacklist`: The `Location` elements specify the countries in
|
6183
|
+
# which you don't want CloudFront to distribute your content.
|
6184
|
+
#
|
6185
|
+
# * `whitelist`: The `Location` elements specify the countries in
|
6186
|
+
# which you want CloudFront to distribute your content.
|
6187
|
+
# @return [String]
|
6188
|
+
#
|
6189
|
+
# @!attribute [rw] locations
|
6190
|
+
# The locations for geographic restrictions.
|
6191
|
+
# @return [Array<String>]
|
6192
|
+
#
|
6193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GeoRestrictionCustomization AWS API Documentation
|
6194
|
+
#
|
6195
|
+
class GeoRestrictionCustomization < Struct.new(
|
6196
|
+
:restriction_type,
|
6197
|
+
:locations)
|
6198
|
+
SENSITIVE = []
|
6199
|
+
include Aws::Structure
|
6200
|
+
end
|
6201
|
+
|
5269
6202
|
# @!attribute [rw] id
|
5270
6203
|
# The ID of the Anycast static IP list.
|
5271
6204
|
# @return [String]
|
@@ -5401,35 +6334,99 @@ module Aws::CloudFront
|
|
5401
6334
|
include Aws::Structure
|
5402
6335
|
end
|
5403
6336
|
|
5404
|
-
# The request to get an origin access identity's information.
|
5405
|
-
#
|
5406
|
-
# @!attribute [rw] id
|
5407
|
-
# The identity's ID.
|
6337
|
+
# The request to get an origin access identity's information.
|
6338
|
+
#
|
6339
|
+
# @!attribute [rw] id
|
6340
|
+
# The identity's ID.
|
6341
|
+
# @return [String]
|
6342
|
+
#
|
6343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetCloudFrontOriginAccessIdentityRequest AWS API Documentation
|
6344
|
+
#
|
6345
|
+
class GetCloudFrontOriginAccessIdentityRequest < Struct.new(
|
6346
|
+
:id)
|
6347
|
+
SENSITIVE = []
|
6348
|
+
include Aws::Structure
|
6349
|
+
end
|
6350
|
+
|
6351
|
+
# The returned result of the corresponding request.
|
6352
|
+
#
|
6353
|
+
# @!attribute [rw] cloud_front_origin_access_identity
|
6354
|
+
# The origin access identity's information.
|
6355
|
+
# @return [Types::CloudFrontOriginAccessIdentity]
|
6356
|
+
#
|
6357
|
+
# @!attribute [rw] etag
|
6358
|
+
# The current version of the origin access identity's information.
|
6359
|
+
# For example: `E2QWRUHAPOMQZL`.
|
6360
|
+
# @return [String]
|
6361
|
+
#
|
6362
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetCloudFrontOriginAccessIdentityResult AWS API Documentation
|
6363
|
+
#
|
6364
|
+
class GetCloudFrontOriginAccessIdentityResult < Struct.new(
|
6365
|
+
:cloud_front_origin_access_identity,
|
6366
|
+
:etag)
|
6367
|
+
SENSITIVE = []
|
6368
|
+
include Aws::Structure
|
6369
|
+
end
|
6370
|
+
|
6371
|
+
# @!attribute [rw] routing_endpoint
|
6372
|
+
# The routing endpoint for the target connection group, such as
|
6373
|
+
# d111111abcdef8.cloudfront.net.
|
6374
|
+
# @return [String]
|
6375
|
+
#
|
6376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetConnectionGroupByRoutingEndpointRequest AWS API Documentation
|
6377
|
+
#
|
6378
|
+
class GetConnectionGroupByRoutingEndpointRequest < Struct.new(
|
6379
|
+
:routing_endpoint)
|
6380
|
+
SENSITIVE = []
|
6381
|
+
include Aws::Structure
|
6382
|
+
end
|
6383
|
+
|
6384
|
+
# @!attribute [rw] connection_group
|
6385
|
+
# The connection group for your distribution tenants. When you first
|
6386
|
+
# create a distribution tenant and you don't specify a connection
|
6387
|
+
# group, CloudFront will automatically create a default connection
|
6388
|
+
# group for you. When you create a new distribution tenant and don't
|
6389
|
+
# specify a connection group, the default one will be associated with
|
6390
|
+
# your distribution tenant.
|
6391
|
+
# @return [Types::ConnectionGroup]
|
6392
|
+
#
|
6393
|
+
# @!attribute [rw] etag
|
6394
|
+
# The current version of the connection group.
|
6395
|
+
# @return [String]
|
6396
|
+
#
|
6397
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetConnectionGroupByRoutingEndpointResult AWS API Documentation
|
6398
|
+
#
|
6399
|
+
class GetConnectionGroupByRoutingEndpointResult < Struct.new(
|
6400
|
+
:connection_group,
|
6401
|
+
:etag)
|
6402
|
+
SENSITIVE = []
|
6403
|
+
include Aws::Structure
|
6404
|
+
end
|
6405
|
+
|
6406
|
+
# @!attribute [rw] identifier
|
6407
|
+
# The ID, name, or Amazon Resource Name (ARN) of the connection group.
|
5408
6408
|
# @return [String]
|
5409
6409
|
#
|
5410
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/
|
6410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetConnectionGroupRequest AWS API Documentation
|
5411
6411
|
#
|
5412
|
-
class
|
5413
|
-
:
|
6412
|
+
class GetConnectionGroupRequest < Struct.new(
|
6413
|
+
:identifier)
|
5414
6414
|
SENSITIVE = []
|
5415
6415
|
include Aws::Structure
|
5416
6416
|
end
|
5417
6417
|
|
5418
|
-
#
|
5419
|
-
#
|
5420
|
-
#
|
5421
|
-
# The origin access identity's information.
|
5422
|
-
# @return [Types::CloudFrontOriginAccessIdentity]
|
6418
|
+
# @!attribute [rw] connection_group
|
6419
|
+
# The connection group that you retrieved.
|
6420
|
+
# @return [Types::ConnectionGroup]
|
5423
6421
|
#
|
5424
6422
|
# @!attribute [rw] etag
|
5425
|
-
# The current version of the
|
5426
|
-
# For example: `E2QWRUHAPOMQZL`.
|
6423
|
+
# The current version of the connection group.
|
5427
6424
|
# @return [String]
|
5428
6425
|
#
|
5429
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/
|
6426
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetConnectionGroupResult AWS API Documentation
|
5430
6427
|
#
|
5431
|
-
class
|
5432
|
-
:
|
6428
|
+
class GetConnectionGroupResult < Struct.new(
|
6429
|
+
:connection_group,
|
5433
6430
|
:etag)
|
5434
6431
|
SENSITIVE = []
|
5435
6432
|
include Aws::Structure
|
@@ -5567,6 +6564,65 @@ module Aws::CloudFront
|
|
5567
6564
|
include Aws::Structure
|
5568
6565
|
end
|
5569
6566
|
|
6567
|
+
# @!attribute [rw] domain
|
6568
|
+
# A domain name associated with the target distribution tenant.
|
6569
|
+
# @return [String]
|
6570
|
+
#
|
6571
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetDistributionTenantByDomainRequest AWS API Documentation
|
6572
|
+
#
|
6573
|
+
class GetDistributionTenantByDomainRequest < Struct.new(
|
6574
|
+
:domain)
|
6575
|
+
SENSITIVE = []
|
6576
|
+
include Aws::Structure
|
6577
|
+
end
|
6578
|
+
|
6579
|
+
# @!attribute [rw] distribution_tenant
|
6580
|
+
# The distribution tenant.
|
6581
|
+
# @return [Types::DistributionTenant]
|
6582
|
+
#
|
6583
|
+
# @!attribute [rw] etag
|
6584
|
+
# The current version of the distribution tenant.
|
6585
|
+
# @return [String]
|
6586
|
+
#
|
6587
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetDistributionTenantByDomainResult AWS API Documentation
|
6588
|
+
#
|
6589
|
+
class GetDistributionTenantByDomainResult < Struct.new(
|
6590
|
+
:distribution_tenant,
|
6591
|
+
:etag)
|
6592
|
+
SENSITIVE = []
|
6593
|
+
include Aws::Structure
|
6594
|
+
end
|
6595
|
+
|
6596
|
+
# @!attribute [rw] identifier
|
6597
|
+
# The ID of the distribution tenant. You can specify the ARN ID, or
|
6598
|
+
# name of the distribution tenant.
|
6599
|
+
# @return [String]
|
6600
|
+
#
|
6601
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetDistributionTenantRequest AWS API Documentation
|
6602
|
+
#
|
6603
|
+
class GetDistributionTenantRequest < Struct.new(
|
6604
|
+
:identifier)
|
6605
|
+
SENSITIVE = []
|
6606
|
+
include Aws::Structure
|
6607
|
+
end
|
6608
|
+
|
6609
|
+
# @!attribute [rw] distribution_tenant
|
6610
|
+
# The distribution tenant that you retrieved.
|
6611
|
+
# @return [Types::DistributionTenant]
|
6612
|
+
#
|
6613
|
+
# @!attribute [rw] etag
|
6614
|
+
# The current version of the distribution tenant.
|
6615
|
+
# @return [String]
|
6616
|
+
#
|
6617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetDistributionTenantResult AWS API Documentation
|
6618
|
+
#
|
6619
|
+
class GetDistributionTenantResult < Struct.new(
|
6620
|
+
:distribution_tenant,
|
6621
|
+
:etag)
|
6622
|
+
SENSITIVE = []
|
6623
|
+
include Aws::Structure
|
6624
|
+
end
|
6625
|
+
|
5570
6626
|
# @!attribute [rw] id
|
5571
6627
|
# Request the ID for the field-level encryption configuration
|
5572
6628
|
# information.
|
@@ -5730,6 +6786,35 @@ module Aws::CloudFront
|
|
5730
6786
|
include Aws::Structure
|
5731
6787
|
end
|
5732
6788
|
|
6789
|
+
# @!attribute [rw] distribution_tenant_id
|
6790
|
+
# The ID of the distribution tenant.
|
6791
|
+
# @return [String]
|
6792
|
+
#
|
6793
|
+
# @!attribute [rw] id
|
6794
|
+
# The ID of the invalidation to retrieve.
|
6795
|
+
# @return [String]
|
6796
|
+
#
|
6797
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetInvalidationForDistributionTenantRequest AWS API Documentation
|
6798
|
+
#
|
6799
|
+
class GetInvalidationForDistributionTenantRequest < Struct.new(
|
6800
|
+
:distribution_tenant_id,
|
6801
|
+
:id)
|
6802
|
+
SENSITIVE = []
|
6803
|
+
include Aws::Structure
|
6804
|
+
end
|
6805
|
+
|
6806
|
+
# @!attribute [rw] invalidation
|
6807
|
+
# An invalidation.
|
6808
|
+
# @return [Types::Invalidation]
|
6809
|
+
#
|
6810
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetInvalidationForDistributionTenantResult AWS API Documentation
|
6811
|
+
#
|
6812
|
+
class GetInvalidationForDistributionTenantResult < Struct.new(
|
6813
|
+
:invalidation)
|
6814
|
+
SENSITIVE = []
|
6815
|
+
include Aws::Structure
|
6816
|
+
end
|
6817
|
+
|
5733
6818
|
# The request to get an invalidation's information.
|
5734
6819
|
#
|
5735
6820
|
# @!attribute [rw] distribution_id
|
@@ -5829,6 +6914,30 @@ module Aws::CloudFront
|
|
5829
6914
|
include Aws::Structure
|
5830
6915
|
end
|
5831
6916
|
|
6917
|
+
# @!attribute [rw] identifier
|
6918
|
+
# The identifier of the multi-tenant distribution.
|
6919
|
+
# @return [String]
|
6920
|
+
#
|
6921
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetManagedCertificateDetailsRequest AWS API Documentation
|
6922
|
+
#
|
6923
|
+
class GetManagedCertificateDetailsRequest < Struct.new(
|
6924
|
+
:identifier)
|
6925
|
+
SENSITIVE = []
|
6926
|
+
include Aws::Structure
|
6927
|
+
end
|
6928
|
+
|
6929
|
+
# @!attribute [rw] managed_certificate_details
|
6930
|
+
# Contains details about the CloudFront managed ACM certificate.
|
6931
|
+
# @return [Types::ManagedCertificateDetails]
|
6932
|
+
#
|
6933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetManagedCertificateDetailsResult AWS API Documentation
|
6934
|
+
#
|
6935
|
+
class GetManagedCertificateDetailsResult < Struct.new(
|
6936
|
+
:managed_certificate_details)
|
6937
|
+
SENSITIVE = []
|
6938
|
+
include Aws::Structure
|
6939
|
+
end
|
6940
|
+
|
5832
6941
|
# @!attribute [rw] distribution_id
|
5833
6942
|
# The ID of the distribution that you are getting metrics information
|
5834
6943
|
# for.
|
@@ -6390,6 +7499,19 @@ module Aws::CloudFront
|
|
6390
7499
|
include Aws::Structure
|
6391
7500
|
end
|
6392
7501
|
|
7502
|
+
# The specified CloudFront resource can't be associated.
|
7503
|
+
#
|
7504
|
+
# @!attribute [rw] message
|
7505
|
+
# @return [String]
|
7506
|
+
#
|
7507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/InvalidAssociation AWS API Documentation
|
7508
|
+
#
|
7509
|
+
class InvalidAssociation < Struct.new(
|
7510
|
+
:message)
|
7511
|
+
SENSITIVE = []
|
7512
|
+
include Aws::Structure
|
7513
|
+
end
|
7514
|
+
|
6393
7515
|
# The default root object file name is too big or contains an invalid
|
6394
7516
|
# character.
|
6395
7517
|
#
|
@@ -7428,6 +8550,47 @@ module Aws::CloudFront
|
|
7428
8550
|
include Aws::Structure
|
7429
8551
|
end
|
7430
8552
|
|
8553
|
+
# @!attribute [rw] association_filter
|
8554
|
+
# Filter by associated Anycast IP list ID.
|
8555
|
+
# @return [Types::ConnectionGroupAssociationFilter]
|
8556
|
+
#
|
8557
|
+
# @!attribute [rw] marker
|
8558
|
+
# The marker for the next set of connection groups to retrieve.
|
8559
|
+
# @return [String]
|
8560
|
+
#
|
8561
|
+
# @!attribute [rw] max_items
|
8562
|
+
# The maximum number of connection groups to return.
|
8563
|
+
# @return [Integer]
|
8564
|
+
#
|
8565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListConnectionGroupsRequest AWS API Documentation
|
8566
|
+
#
|
8567
|
+
class ListConnectionGroupsRequest < Struct.new(
|
8568
|
+
:association_filter,
|
8569
|
+
:marker,
|
8570
|
+
:max_items)
|
8571
|
+
SENSITIVE = []
|
8572
|
+
include Aws::Structure
|
8573
|
+
end
|
8574
|
+
|
8575
|
+
# @!attribute [rw] next_marker
|
8576
|
+
# A token used for pagination of results returned in the response. You
|
8577
|
+
# can use the token from the previous request to define where the
|
8578
|
+
# current request should begin.
|
8579
|
+
# @return [String]
|
8580
|
+
#
|
8581
|
+
# @!attribute [rw] connection_groups
|
8582
|
+
# The list of connection groups that you retrieved.
|
8583
|
+
# @return [Array<Types::ConnectionGroupSummary>]
|
8584
|
+
#
|
8585
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListConnectionGroupsResult AWS API Documentation
|
8586
|
+
#
|
8587
|
+
class ListConnectionGroupsResult < Struct.new(
|
8588
|
+
:next_marker,
|
8589
|
+
:connection_groups)
|
8590
|
+
SENSITIVE = []
|
8591
|
+
include Aws::Structure
|
8592
|
+
end
|
8593
|
+
|
7431
8594
|
# @!attribute [rw] marker
|
7432
8595
|
# Use this field when paginating results to indicate where to begin in
|
7433
8596
|
# your list of continuous deployment policies. The response includes
|
@@ -7462,6 +8625,94 @@ module Aws::CloudFront
|
|
7462
8625
|
include Aws::Structure
|
7463
8626
|
end
|
7464
8627
|
|
8628
|
+
# @!attribute [rw] web_acl_arn
|
8629
|
+
# Filter by the ARN of the associated WAF web ACL.
|
8630
|
+
# @return [String]
|
8631
|
+
#
|
8632
|
+
# @!attribute [rw] certificate_arn
|
8633
|
+
# Filter by the ARN of the associated ACM certificate.
|
8634
|
+
# @return [String]
|
8635
|
+
#
|
8636
|
+
# @!attribute [rw] marker
|
8637
|
+
# The marker for the next set of results.
|
8638
|
+
# @return [String]
|
8639
|
+
#
|
8640
|
+
# @!attribute [rw] max_items
|
8641
|
+
# The maximum number of distribution tenants to return by the
|
8642
|
+
# specified customization.
|
8643
|
+
# @return [Integer]
|
8644
|
+
#
|
8645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionTenantsByCustomizationRequest AWS API Documentation
|
8646
|
+
#
|
8647
|
+
class ListDistributionTenantsByCustomizationRequest < Struct.new(
|
8648
|
+
:web_acl_arn,
|
8649
|
+
:certificate_arn,
|
8650
|
+
:marker,
|
8651
|
+
:max_items)
|
8652
|
+
SENSITIVE = []
|
8653
|
+
include Aws::Structure
|
8654
|
+
end
|
8655
|
+
|
8656
|
+
# @!attribute [rw] next_marker
|
8657
|
+
# A token used for pagination of results returned in the response. You
|
8658
|
+
# can use the token from the previous request to define where the
|
8659
|
+
# current request should begin.
|
8660
|
+
# @return [String]
|
8661
|
+
#
|
8662
|
+
# @!attribute [rw] distribution_tenant_list
|
8663
|
+
# A list of distribution tenants with the specified customization.
|
8664
|
+
# @return [Array<Types::DistributionTenantSummary>]
|
8665
|
+
#
|
8666
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionTenantsByCustomizationResult AWS API Documentation
|
8667
|
+
#
|
8668
|
+
class ListDistributionTenantsByCustomizationResult < Struct.new(
|
8669
|
+
:next_marker,
|
8670
|
+
:distribution_tenant_list)
|
8671
|
+
SENSITIVE = []
|
8672
|
+
include Aws::Structure
|
8673
|
+
end
|
8674
|
+
|
8675
|
+
# @!attribute [rw] association_filter
|
8676
|
+
# Filter by the associated distribution ID or connection group ID.
|
8677
|
+
# @return [Types::DistributionTenantAssociationFilter]
|
8678
|
+
#
|
8679
|
+
# @!attribute [rw] marker
|
8680
|
+
# The marker for the next set of results.
|
8681
|
+
# @return [String]
|
8682
|
+
#
|
8683
|
+
# @!attribute [rw] max_items
|
8684
|
+
# The maximum number of distribution tenants to return.
|
8685
|
+
# @return [Integer]
|
8686
|
+
#
|
8687
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionTenantsRequest AWS API Documentation
|
8688
|
+
#
|
8689
|
+
class ListDistributionTenantsRequest < Struct.new(
|
8690
|
+
:association_filter,
|
8691
|
+
:marker,
|
8692
|
+
:max_items)
|
8693
|
+
SENSITIVE = []
|
8694
|
+
include Aws::Structure
|
8695
|
+
end
|
8696
|
+
|
8697
|
+
# @!attribute [rw] next_marker
|
8698
|
+
# A token used for pagination of results returned in the response. You
|
8699
|
+
# can use the token from the previous request to define where the
|
8700
|
+
# current request should begin.
|
8701
|
+
# @return [String]
|
8702
|
+
#
|
8703
|
+
# @!attribute [rw] distribution_tenant_list
|
8704
|
+
# The list of distribution tenants that you retrieved.
|
8705
|
+
# @return [Array<Types::DistributionTenantSummary>]
|
8706
|
+
#
|
8707
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionTenantsResult AWS API Documentation
|
8708
|
+
#
|
8709
|
+
class ListDistributionTenantsResult < Struct.new(
|
8710
|
+
:next_marker,
|
8711
|
+
:distribution_tenant_list)
|
8712
|
+
SENSITIVE = []
|
8713
|
+
include Aws::Structure
|
8714
|
+
end
|
8715
|
+
|
7465
8716
|
# @!attribute [rw] marker
|
7466
8717
|
# Use this field when paginating results to indicate where to begin in
|
7467
8718
|
# your list. The response includes items in the list that occur after
|
@@ -7541,6 +8792,40 @@ module Aws::CloudFront
|
|
7541
8792
|
include Aws::Structure
|
7542
8793
|
end
|
7543
8794
|
|
8795
|
+
# @!attribute [rw] marker
|
8796
|
+
# The marker for the next set of distributions to retrieve.
|
8797
|
+
# @return [String]
|
8798
|
+
#
|
8799
|
+
# @!attribute [rw] max_items
|
8800
|
+
# The maximum number of distributions to return.
|
8801
|
+
# @return [Integer]
|
8802
|
+
#
|
8803
|
+
# @!attribute [rw] connection_mode
|
8804
|
+
# The connection mode to filter distributions by.
|
8805
|
+
# @return [String]
|
8806
|
+
#
|
8807
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByConnectionModeRequest AWS API Documentation
|
8808
|
+
#
|
8809
|
+
class ListDistributionsByConnectionModeRequest < Struct.new(
|
8810
|
+
:marker,
|
8811
|
+
:max_items,
|
8812
|
+
:connection_mode)
|
8813
|
+
SENSITIVE = []
|
8814
|
+
include Aws::Structure
|
8815
|
+
end
|
8816
|
+
|
8817
|
+
# @!attribute [rw] distribution_list
|
8818
|
+
# A distribution list.
|
8819
|
+
# @return [Types::DistributionList]
|
8820
|
+
#
|
8821
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByConnectionModeResult AWS API Documentation
|
8822
|
+
#
|
8823
|
+
class ListDistributionsByConnectionModeResult < Struct.new(
|
8824
|
+
:distribution_list)
|
8825
|
+
SENSITIVE = []
|
8826
|
+
include Aws::Structure
|
8827
|
+
end
|
8828
|
+
|
7544
8829
|
# @!attribute [rw] marker
|
7545
8830
|
# Use this field when paginating results to indicate where to begin in
|
7546
8831
|
# your list of distribution IDs. The response includes distribution
|
@@ -7834,6 +9119,54 @@ module Aws::CloudFront
|
|
7834
9119
|
include Aws::Structure
|
7835
9120
|
end
|
7836
9121
|
|
9122
|
+
# @!attribute [rw] domain
|
9123
|
+
# The domain to check for conflicts.
|
9124
|
+
# @return [String]
|
9125
|
+
#
|
9126
|
+
# @!attribute [rw] domain_control_validation_resource
|
9127
|
+
# The distribution resource identifier. This can be the distribution
|
9128
|
+
# or distribution tenant that has a valid certificate, which covers
|
9129
|
+
# the domain that you specify.
|
9130
|
+
# @return [Types::DistributionResourceId]
|
9131
|
+
#
|
9132
|
+
# @!attribute [rw] max_items
|
9133
|
+
# The maximum number of domain conflicts to return.
|
9134
|
+
# @return [Integer]
|
9135
|
+
#
|
9136
|
+
# @!attribute [rw] marker
|
9137
|
+
# The marker for the next set of domain conflicts.
|
9138
|
+
# @return [String]
|
9139
|
+
#
|
9140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDomainConflictsRequest AWS API Documentation
|
9141
|
+
#
|
9142
|
+
class ListDomainConflictsRequest < Struct.new(
|
9143
|
+
:domain,
|
9144
|
+
:domain_control_validation_resource,
|
9145
|
+
:max_items,
|
9146
|
+
:marker)
|
9147
|
+
SENSITIVE = []
|
9148
|
+
include Aws::Structure
|
9149
|
+
end
|
9150
|
+
|
9151
|
+
# @!attribute [rw] domain_conflicts
|
9152
|
+
# Contains details about the domain conflicts.
|
9153
|
+
# @return [Array<Types::DomainConflict>]
|
9154
|
+
#
|
9155
|
+
# @!attribute [rw] next_marker
|
9156
|
+
# A token used for pagination of results returned in the response. You
|
9157
|
+
# can use the token from the previous request to define where the
|
9158
|
+
# current request should begin.
|
9159
|
+
# @return [String]
|
9160
|
+
#
|
9161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDomainConflictsResult AWS API Documentation
|
9162
|
+
#
|
9163
|
+
class ListDomainConflictsResult < Struct.new(
|
9164
|
+
:domain_conflicts,
|
9165
|
+
:next_marker)
|
9166
|
+
SENSITIVE = []
|
9167
|
+
include Aws::Structure
|
9168
|
+
end
|
9169
|
+
|
7837
9170
|
# @!attribute [rw] marker
|
7838
9171
|
# Use this when paginating results to indicate where to begin in your
|
7839
9172
|
# list of configurations. The results include configurations in the
|
@@ -7932,14 +9265,63 @@ module Aws::CloudFront
|
|
7932
9265
|
include Aws::Structure
|
7933
9266
|
end
|
7934
9267
|
|
7935
|
-
# @!attribute [rw] function_list
|
7936
|
-
# A list of CloudFront functions.
|
7937
|
-
# @return [Types::FunctionList]
|
9268
|
+
# @!attribute [rw] function_list
|
9269
|
+
# A list of CloudFront functions.
|
9270
|
+
# @return [Types::FunctionList]
|
9271
|
+
#
|
9272
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListFunctionsResult AWS API Documentation
|
9273
|
+
#
|
9274
|
+
class ListFunctionsResult < Struct.new(
|
9275
|
+
:function_list)
|
9276
|
+
SENSITIVE = []
|
9277
|
+
include Aws::Structure
|
9278
|
+
end
|
9279
|
+
|
9280
|
+
# @!attribute [rw] id
|
9281
|
+
# The ID of the distribution tenant.
|
9282
|
+
# @return [String]
|
9283
|
+
#
|
9284
|
+
# @!attribute [rw] marker
|
9285
|
+
# Use this parameter when paginating results to indicate where to
|
9286
|
+
# begin in your list of invalidation batches. Because the results are
|
9287
|
+
# returned in decreasing order from most recent to oldest, the most
|
9288
|
+
# recent results are on the first page, the second page will contain
|
9289
|
+
# earlier results, and so on. To get the next page of results, set
|
9290
|
+
# `Marker` to the value of the `NextMarker` from the current page's
|
9291
|
+
# response. This value is the same as the ID of the last invalidation
|
9292
|
+
# batch on that page.
|
9293
|
+
# @return [String]
|
9294
|
+
#
|
9295
|
+
# @!attribute [rw] max_items
|
9296
|
+
# The maximum number of invalidations to return for the distribution
|
9297
|
+
# tenant.
|
9298
|
+
# @return [Integer]
|
9299
|
+
#
|
9300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListInvalidationsForDistributionTenantRequest AWS API Documentation
|
9301
|
+
#
|
9302
|
+
class ListInvalidationsForDistributionTenantRequest < Struct.new(
|
9303
|
+
:id,
|
9304
|
+
:marker,
|
9305
|
+
:max_items)
|
9306
|
+
SENSITIVE = []
|
9307
|
+
include Aws::Structure
|
9308
|
+
end
|
9309
|
+
|
9310
|
+
# @!attribute [rw] invalidation_list
|
9311
|
+
# The `InvalidationList` complex type describes the list of
|
9312
|
+
# invalidation objects. For more information about invalidation, see
|
9313
|
+
# [Invalidating Objects (Web Distributions Only)][1] in the *Amazon
|
9314
|
+
# CloudFront Developer Guide*.
|
7938
9315
|
#
|
7939
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListFunctionsResult AWS API Documentation
|
7940
9316
|
#
|
7941
|
-
|
7942
|
-
|
9317
|
+
#
|
9318
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html
|
9319
|
+
# @return [Types::InvalidationList]
|
9320
|
+
#
|
9321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListInvalidationsForDistributionTenantResult AWS API Documentation
|
9322
|
+
#
|
9323
|
+
class ListInvalidationsForDistributionTenantResult < Struct.new(
|
9324
|
+
:invalidation_list)
|
7943
9325
|
SENSITIVE = []
|
7944
9326
|
include Aws::Structure
|
7945
9327
|
end
|
@@ -8404,6 +9786,109 @@ module Aws::CloudFront
|
|
8404
9786
|
include Aws::Structure
|
8405
9787
|
end
|
8406
9788
|
|
9789
|
+
# Contains details about the CloudFront managed ACM certificate.
|
9790
|
+
#
|
9791
|
+
# @!attribute [rw] certificate_arn
|
9792
|
+
# The ARN of the CloudFront managed ACM certificate.
|
9793
|
+
# @return [String]
|
9794
|
+
#
|
9795
|
+
# @!attribute [rw] certificate_status
|
9796
|
+
# The status of the CloudFront managed ACM certificate.
|
9797
|
+
#
|
9798
|
+
# <note markdown="1"> Your distribution tenant will be updated with the latest certificate
|
9799
|
+
# status. When calling the [UpdateDistributionTenant][1] operation,
|
9800
|
+
# use the latest value for the `ETag`.
|
9801
|
+
#
|
9802
|
+
# </note>
|
9803
|
+
#
|
9804
|
+
#
|
9805
|
+
#
|
9806
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_UpdateDistributionTenant.html
|
9807
|
+
# @return [String]
|
9808
|
+
#
|
9809
|
+
# @!attribute [rw] validation_token_host
|
9810
|
+
# Contains details about the validation token host of the specified
|
9811
|
+
# CloudFront managed ACM certificate.
|
9812
|
+
#
|
9813
|
+
# * For `cloudfront`, CloudFront will automatically serve the
|
9814
|
+
# validation token. Choose this mode if you can point the domain's
|
9815
|
+
# DNS to CloudFront immediately.
|
9816
|
+
#
|
9817
|
+
# * For `self-hosted`, you serve the validation token from your
|
9818
|
+
# existing infrastructure. Choose this mode when you need to
|
9819
|
+
# maintain current traffic flow while your certificate is being
|
9820
|
+
# issued. You can place the validation token at the well-known path
|
9821
|
+
# on your existing web server, wait for ACM to validate and issue
|
9822
|
+
# the certificate, and then update your DNS to point to CloudFront.
|
9823
|
+
#
|
9824
|
+
# <note markdown="1"> This setting only affects the initial certificate request. Once the
|
9825
|
+
# DNS points to CloudFront, all future certificate renewals are
|
9826
|
+
# automatically handled through CloudFront.
|
9827
|
+
#
|
9828
|
+
# </note>
|
9829
|
+
# @return [String]
|
9830
|
+
#
|
9831
|
+
# @!attribute [rw] validation_token_details
|
9832
|
+
# Contains details about the validation token of the specified
|
9833
|
+
# CloudFront managed ACM certificate.
|
9834
|
+
# @return [Array<Types::ValidationTokenDetail>]
|
9835
|
+
#
|
9836
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ManagedCertificateDetails AWS API Documentation
|
9837
|
+
#
|
9838
|
+
class ManagedCertificateDetails < Struct.new(
|
9839
|
+
:certificate_arn,
|
9840
|
+
:certificate_status,
|
9841
|
+
:validation_token_host,
|
9842
|
+
:validation_token_details)
|
9843
|
+
SENSITIVE = []
|
9844
|
+
include Aws::Structure
|
9845
|
+
end
|
9846
|
+
|
9847
|
+
# An object that represents the request for the Amazon CloudFront
|
9848
|
+
# managed ACM certificate.
|
9849
|
+
#
|
9850
|
+
# @!attribute [rw] validation_token_host
|
9851
|
+
# Specify how the HTTP validation token will be served when requesting
|
9852
|
+
# the CloudFront managed ACM certificate.
|
9853
|
+
#
|
9854
|
+
# * For `cloudfront`, CloudFront will automatically serve the
|
9855
|
+
# validation token. Choose this mode if you can point the domain's
|
9856
|
+
# DNS to CloudFront immediately.
|
9857
|
+
#
|
9858
|
+
# * For `self-hosted`, you serve the validation token from your
|
9859
|
+
# existing infrastructure. Choose this mode when you need to
|
9860
|
+
# maintain current traffic flow while your certificate is being
|
9861
|
+
# issued. You can place the validation token at the well-known path
|
9862
|
+
# on your existing web server, wait for ACM to validate and issue
|
9863
|
+
# the certificate, and then update your DNS to point to CloudFront.
|
9864
|
+
# @return [String]
|
9865
|
+
#
|
9866
|
+
# @!attribute [rw] primary_domain_name
|
9867
|
+
# The primary domain name associated with the CloudFront managed ACM
|
9868
|
+
# certificate.
|
9869
|
+
# @return [String]
|
9870
|
+
#
|
9871
|
+
# @!attribute [rw] certificate_transparency_logging_preference
|
9872
|
+
# You can opt out of certificate transparency logging by specifying
|
9873
|
+
# the `disabled` option. Opt in by specifying `enabled`. For more
|
9874
|
+
# information, see [Certificate Transparency Logging ][1] in the
|
9875
|
+
# *Certificate Manager User Guide*.
|
9876
|
+
#
|
9877
|
+
#
|
9878
|
+
#
|
9879
|
+
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency
|
9880
|
+
# @return [String]
|
9881
|
+
#
|
9882
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ManagedCertificateRequest AWS API Documentation
|
9883
|
+
#
|
9884
|
+
class ManagedCertificateRequest < Struct.new(
|
9885
|
+
:validation_token_host,
|
9886
|
+
:primary_domain_name,
|
9887
|
+
:certificate_transparency_logging_preference)
|
9888
|
+
SENSITIVE = []
|
9889
|
+
include Aws::Structure
|
9890
|
+
end
|
9891
|
+
|
8407
9892
|
# This operation requires a body. Ensure that the body is present and
|
8408
9893
|
# the `Content-Type` header is set.
|
8409
9894
|
#
|
@@ -9593,6 +11078,64 @@ module Aws::CloudFront
|
|
9593
11078
|
include Aws::Structure
|
9594
11079
|
end
|
9595
11080
|
|
11081
|
+
# A list of parameter values to add to the resource. A parameter is
|
11082
|
+
# specified as a key-value pair. A valid parameter value must exist for
|
11083
|
+
# any parameter that is marked as required in the multi-tenant
|
11084
|
+
# distribution.
|
11085
|
+
#
|
11086
|
+
# @!attribute [rw] name
|
11087
|
+
# The parameter name.
|
11088
|
+
# @return [String]
|
11089
|
+
#
|
11090
|
+
# @!attribute [rw] value
|
11091
|
+
# The parameter value.
|
11092
|
+
# @return [String]
|
11093
|
+
#
|
11094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/Parameter AWS API Documentation
|
11095
|
+
#
|
11096
|
+
class Parameter < Struct.new(
|
11097
|
+
:name,
|
11098
|
+
:value)
|
11099
|
+
SENSITIVE = []
|
11100
|
+
include Aws::Structure
|
11101
|
+
end
|
11102
|
+
|
11103
|
+
# A list of parameter values to add to the resource. A parameter is
|
11104
|
+
# specified as a key-value pair. A valid parameter value must exist for
|
11105
|
+
# any parameter that is marked as required in the multi-tenant
|
11106
|
+
# distribution.
|
11107
|
+
#
|
11108
|
+
# @!attribute [rw] name
|
11109
|
+
# The name of the parameter.
|
11110
|
+
# @return [String]
|
11111
|
+
#
|
11112
|
+
# @!attribute [rw] definition
|
11113
|
+
# The value that you assigned to the parameter.
|
11114
|
+
# @return [Types::ParameterDefinitionSchema]
|
11115
|
+
#
|
11116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ParameterDefinition AWS API Documentation
|
11117
|
+
#
|
11118
|
+
class ParameterDefinition < Struct.new(
|
11119
|
+
:name,
|
11120
|
+
:definition)
|
11121
|
+
SENSITIVE = []
|
11122
|
+
include Aws::Structure
|
11123
|
+
end
|
11124
|
+
|
11125
|
+
# An object that contains information about the parameter definition.
|
11126
|
+
#
|
11127
|
+
# @!attribute [rw] string_schema
|
11128
|
+
# An object that contains information about the string schema.
|
11129
|
+
# @return [Types::StringSchemaConfig]
|
11130
|
+
#
|
11131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ParameterDefinitionSchema AWS API Documentation
|
11132
|
+
#
|
11133
|
+
class ParameterDefinitionSchema < Struct.new(
|
11134
|
+
:string_schema)
|
11135
|
+
SENSITIVE = []
|
11136
|
+
include Aws::Structure
|
11137
|
+
end
|
11138
|
+
|
9596
11139
|
# This object determines the values that CloudFront includes in the
|
9597
11140
|
# cache key. These values can include HTTP headers, cookies, and URL
|
9598
11141
|
# query strings. CloudFront uses the cache key to find an object in its
|
@@ -10253,6 +11796,19 @@ module Aws::CloudFront
|
|
10253
11796
|
include Aws::Structure
|
10254
11797
|
end
|
10255
11798
|
|
11799
|
+
# The specified CloudFront resource hasn't been disabled yet.
|
11800
|
+
#
|
11801
|
+
# @!attribute [rw] message
|
11802
|
+
# @return [String]
|
11803
|
+
#
|
11804
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ResourceNotDisabled AWS API Documentation
|
11805
|
+
#
|
11806
|
+
class ResourceNotDisabled < Struct.new(
|
11807
|
+
:message)
|
11808
|
+
SENSITIVE = []
|
11809
|
+
include Aws::Structure
|
11810
|
+
end
|
11811
|
+
|
10256
11812
|
# A response headers policy.
|
10257
11813
|
#
|
10258
11814
|
# A response headers policy contains information about a set of HTTP
|
@@ -11750,6 +13306,30 @@ module Aws::CloudFront
|
|
11750
13306
|
include Aws::Structure
|
11751
13307
|
end
|
11752
13308
|
|
13309
|
+
# The configuration for a string schema.
|
13310
|
+
#
|
13311
|
+
# @!attribute [rw] comment
|
13312
|
+
# A comment to describe the parameter.
|
13313
|
+
# @return [String]
|
13314
|
+
#
|
13315
|
+
# @!attribute [rw] default_value
|
13316
|
+
# The default value of the parameter.
|
13317
|
+
# @return [String]
|
13318
|
+
#
|
13319
|
+
# @!attribute [rw] required
|
13320
|
+
# Whether the defined parameter is required.
|
13321
|
+
# @return [Boolean]
|
13322
|
+
#
|
13323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/StringSchemaConfig AWS API Documentation
|
13324
|
+
#
|
13325
|
+
class StringSchemaConfig < Struct.new(
|
13326
|
+
:comment,
|
13327
|
+
:default_value,
|
13328
|
+
:required)
|
13329
|
+
SENSITIVE = []
|
13330
|
+
include Aws::Structure
|
13331
|
+
end
|
13332
|
+
|
11753
13333
|
# A complex type that contains `Tag` key and `Tag` value.
|
11754
13334
|
#
|
11755
13335
|
# @!attribute [rw] key
|
@@ -11824,6 +13404,20 @@ module Aws::CloudFront
|
|
11824
13404
|
include Aws::Structure
|
11825
13405
|
end
|
11826
13406
|
|
13407
|
+
# The configuration for a distribution tenant.
|
13408
|
+
#
|
13409
|
+
# @!attribute [rw] parameter_definitions
|
13410
|
+
# The parameters that you specify for a distribution tenant.
|
13411
|
+
# @return [Array<Types::ParameterDefinition>]
|
13412
|
+
#
|
13413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TenantConfig AWS API Documentation
|
13414
|
+
#
|
13415
|
+
class TenantConfig < Struct.new(
|
13416
|
+
:parameter_definitions)
|
13417
|
+
SENSITIVE = []
|
13418
|
+
include Aws::Structure
|
13419
|
+
end
|
13420
|
+
|
11827
13421
|
# The CloudFront function failed.
|
11828
13422
|
#
|
11829
13423
|
# @!attribute [rw] message
|
@@ -12901,7 +14495,7 @@ module Aws::CloudFront
|
|
12901
14495
|
include Aws::Structure
|
12902
14496
|
end
|
12903
14497
|
|
12904
|
-
# This operation is not supported in this
|
14498
|
+
# This operation is not supported in this Amazon Web Services Region.
|
12905
14499
|
#
|
12906
14500
|
# @!attribute [rw] message
|
12907
14501
|
# @return [String]
|
@@ -13021,6 +14615,61 @@ module Aws::CloudFront
|
|
13021
14615
|
include Aws::Structure
|
13022
14616
|
end
|
13023
14617
|
|
14618
|
+
# @!attribute [rw] id
|
14619
|
+
# The ID of the connection group.
|
14620
|
+
# @return [String]
|
14621
|
+
#
|
14622
|
+
# @!attribute [rw] ipv_6_enabled
|
14623
|
+
# Enable IPv6 for the connection group. For more information, see
|
14624
|
+
# [Enable IPv6][1] in the *Amazon CloudFront Developer Guide*.
|
14625
|
+
#
|
14626
|
+
#
|
14627
|
+
#
|
14628
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesEnableIPv6
|
14629
|
+
# @return [Boolean]
|
14630
|
+
#
|
14631
|
+
# @!attribute [rw] if_match
|
14632
|
+
# The value of the `ETag` header that you received when retrieving the
|
14633
|
+
# connection group that you're updating.
|
14634
|
+
# @return [String]
|
14635
|
+
#
|
14636
|
+
# @!attribute [rw] anycast_ip_list_id
|
14637
|
+
# The ID of the Anycast static IP list.
|
14638
|
+
# @return [String]
|
14639
|
+
#
|
14640
|
+
# @!attribute [rw] enabled
|
14641
|
+
# Whether the connection group is enabled.
|
14642
|
+
# @return [Boolean]
|
14643
|
+
#
|
14644
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateConnectionGroupRequest AWS API Documentation
|
14645
|
+
#
|
14646
|
+
class UpdateConnectionGroupRequest < Struct.new(
|
14647
|
+
:id,
|
14648
|
+
:ipv_6_enabled,
|
14649
|
+
:if_match,
|
14650
|
+
:anycast_ip_list_id,
|
14651
|
+
:enabled)
|
14652
|
+
SENSITIVE = []
|
14653
|
+
include Aws::Structure
|
14654
|
+
end
|
14655
|
+
|
14656
|
+
# @!attribute [rw] connection_group
|
14657
|
+
# The connection group that you updated.
|
14658
|
+
# @return [Types::ConnectionGroup]
|
14659
|
+
#
|
14660
|
+
# @!attribute [rw] etag
|
14661
|
+
# The current version of the connection group.
|
14662
|
+
# @return [String]
|
14663
|
+
#
|
14664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateConnectionGroupResult AWS API Documentation
|
14665
|
+
#
|
14666
|
+
class UpdateConnectionGroupResult < Struct.new(
|
14667
|
+
:connection_group,
|
14668
|
+
:etag)
|
14669
|
+
SENSITIVE = []
|
14670
|
+
include Aws::Structure
|
14671
|
+
end
|
14672
|
+
|
13024
14673
|
# @!attribute [rw] continuous_deployment_policy_config
|
13025
14674
|
# The continuous deployment policy configuration.
|
13026
14675
|
# @return [Types::ContinuousDeploymentPolicyConfig]
|
@@ -13108,6 +14757,90 @@ module Aws::CloudFront
|
|
13108
14757
|
include Aws::Structure
|
13109
14758
|
end
|
13110
14759
|
|
14760
|
+
# @!attribute [rw] id
|
14761
|
+
# The ID of the distribution tenant.
|
14762
|
+
# @return [String]
|
14763
|
+
#
|
14764
|
+
# @!attribute [rw] distribution_id
|
14765
|
+
# The ID for the multi-tenant distribution.
|
14766
|
+
# @return [String]
|
14767
|
+
#
|
14768
|
+
# @!attribute [rw] domains
|
14769
|
+
# The domains to update for the distribution tenant. A domain object
|
14770
|
+
# can contain only a domain property. You must specify at least one
|
14771
|
+
# domain. Each distribution tenant can have up to 5 domains.
|
14772
|
+
# @return [Array<Types::DomainItem>]
|
14773
|
+
#
|
14774
|
+
# @!attribute [rw] customizations
|
14775
|
+
# Customizations for the distribution tenant. For each distribution
|
14776
|
+
# tenant, you can specify the geographic restrictions, and the Amazon
|
14777
|
+
# Resource Names (ARNs) for the ACM certificate and WAF web ACL. These
|
14778
|
+
# are specific values that you can override or disable from the
|
14779
|
+
# multi-tenant distribution that was used to create the distribution
|
14780
|
+
# tenant.
|
14781
|
+
# @return [Types::Customizations]
|
14782
|
+
#
|
14783
|
+
# @!attribute [rw] parameters
|
14784
|
+
# A list of parameter values to add to the resource. A parameter is
|
14785
|
+
# specified as a key-value pair. A valid parameter value must exist
|
14786
|
+
# for any parameter that is marked as required in the multi-tenant
|
14787
|
+
# distribution.
|
14788
|
+
# @return [Array<Types::Parameter>]
|
14789
|
+
#
|
14790
|
+
# @!attribute [rw] connection_group_id
|
14791
|
+
# The ID of the target connection group.
|
14792
|
+
# @return [String]
|
14793
|
+
#
|
14794
|
+
# @!attribute [rw] if_match
|
14795
|
+
# The value of the `ETag` header that you received when retrieving the
|
14796
|
+
# distribution tenant to update. This value is returned in the
|
14797
|
+
# response of the `GetDistributionTenant` API operation.
|
14798
|
+
# @return [String]
|
14799
|
+
#
|
14800
|
+
# @!attribute [rw] managed_certificate_request
|
14801
|
+
# An object that contains the CloudFront managed ACM certificate
|
14802
|
+
# request.
|
14803
|
+
# @return [Types::ManagedCertificateRequest]
|
14804
|
+
#
|
14805
|
+
# @!attribute [rw] enabled
|
14806
|
+
# Indicates whether the distribution tenant should be updated to an
|
14807
|
+
# enabled state. If you update the distribution tenant and it's not
|
14808
|
+
# enabled, the distribution tenant won't serve traffic.
|
14809
|
+
# @return [Boolean]
|
14810
|
+
#
|
14811
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateDistributionTenantRequest AWS API Documentation
|
14812
|
+
#
|
14813
|
+
class UpdateDistributionTenantRequest < Struct.new(
|
14814
|
+
:id,
|
14815
|
+
:distribution_id,
|
14816
|
+
:domains,
|
14817
|
+
:customizations,
|
14818
|
+
:parameters,
|
14819
|
+
:connection_group_id,
|
14820
|
+
:if_match,
|
14821
|
+
:managed_certificate_request,
|
14822
|
+
:enabled)
|
14823
|
+
SENSITIVE = []
|
14824
|
+
include Aws::Structure
|
14825
|
+
end
|
14826
|
+
|
14827
|
+
# @!attribute [rw] distribution_tenant
|
14828
|
+
# The distribution tenant that you're updating.
|
14829
|
+
# @return [Types::DistributionTenant]
|
14830
|
+
#
|
14831
|
+
# @!attribute [rw] etag
|
14832
|
+
# The current version of the distribution tenant.
|
14833
|
+
# @return [String]
|
14834
|
+
#
|
14835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateDistributionTenantResult AWS API Documentation
|
14836
|
+
#
|
14837
|
+
class UpdateDistributionTenantResult < Struct.new(
|
14838
|
+
:distribution_tenant,
|
14839
|
+
:etag)
|
14840
|
+
SENSITIVE = []
|
14841
|
+
include Aws::Structure
|
14842
|
+
end
|
14843
|
+
|
13111
14844
|
# @!attribute [rw] id
|
13112
14845
|
# The identifier of the primary distribution to which you are copying
|
13113
14846
|
# a staging distribution's configuration.
|
@@ -13155,6 +14888,53 @@ module Aws::CloudFront
|
|
13155
14888
|
include Aws::Structure
|
13156
14889
|
end
|
13157
14890
|
|
14891
|
+
# @!attribute [rw] domain
|
14892
|
+
# The domain to update.
|
14893
|
+
# @return [String]
|
14894
|
+
#
|
14895
|
+
# @!attribute [rw] target_resource
|
14896
|
+
# The target distribution resource for the domain. You can specify
|
14897
|
+
# either `DistributionId` or `DistributionTenantId`, but not both.
|
14898
|
+
# @return [Types::DistributionResourceId]
|
14899
|
+
#
|
14900
|
+
# @!attribute [rw] if_match
|
14901
|
+
# The value of the `ETag` identifier for the distribution or
|
14902
|
+
# distribution tenant that will be associated with the domain.
|
14903
|
+
# @return [String]
|
14904
|
+
#
|
14905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateDomainAssociationRequest AWS API Documentation
|
14906
|
+
#
|
14907
|
+
class UpdateDomainAssociationRequest < Struct.new(
|
14908
|
+
:domain,
|
14909
|
+
:target_resource,
|
14910
|
+
:if_match)
|
14911
|
+
SENSITIVE = []
|
14912
|
+
include Aws::Structure
|
14913
|
+
end
|
14914
|
+
|
14915
|
+
# @!attribute [rw] domain
|
14916
|
+
# The domain that you're moving.
|
14917
|
+
# @return [String]
|
14918
|
+
#
|
14919
|
+
# @!attribute [rw] resource_id
|
14920
|
+
# The intended destination for the domain.
|
14921
|
+
# @return [String]
|
14922
|
+
#
|
14923
|
+
# @!attribute [rw] etag
|
14924
|
+
# The current version of the target distribution or distribution
|
14925
|
+
# tenant that was associated with the domain.
|
14926
|
+
# @return [String]
|
14927
|
+
#
|
14928
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateDomainAssociationResult AWS API Documentation
|
14929
|
+
#
|
14930
|
+
class UpdateDomainAssociationResult < Struct.new(
|
14931
|
+
:domain,
|
14932
|
+
:resource_id,
|
14933
|
+
:etag)
|
14934
|
+
SENSITIVE = []
|
14935
|
+
include Aws::Structure
|
14936
|
+
end
|
14937
|
+
|
13158
14938
|
# @!attribute [rw] field_level_encryption_config
|
13159
14939
|
# Request to update a field-level encryption configuration.
|
13160
14940
|
# @return [Types::FieldLevelEncryptionConfig]
|
@@ -13677,6 +15457,60 @@ module Aws::CloudFront
|
|
13677
15457
|
include Aws::Structure
|
13678
15458
|
end
|
13679
15459
|
|
15460
|
+
# Contains details about the validation token.
|
15461
|
+
#
|
15462
|
+
# @!attribute [rw] domain
|
15463
|
+
# The domain name.
|
15464
|
+
# @return [String]
|
15465
|
+
#
|
15466
|
+
# @!attribute [rw] redirect_to
|
15467
|
+
# The domain to redirect to.
|
15468
|
+
# @return [String]
|
15469
|
+
#
|
15470
|
+
# @!attribute [rw] redirect_from
|
15471
|
+
# The domain to redirect from.
|
15472
|
+
# @return [String]
|
15473
|
+
#
|
15474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ValidationTokenDetail AWS API Documentation
|
15475
|
+
#
|
15476
|
+
class ValidationTokenDetail < Struct.new(
|
15477
|
+
:domain,
|
15478
|
+
:redirect_to,
|
15479
|
+
:redirect_from)
|
15480
|
+
SENSITIVE = []
|
15481
|
+
include Aws::Structure
|
15482
|
+
end
|
15483
|
+
|
15484
|
+
# @!attribute [rw] domain
|
15485
|
+
# The domain name that you're verifying.
|
15486
|
+
# @return [String]
|
15487
|
+
#
|
15488
|
+
# @!attribute [rw] identifier
|
15489
|
+
# The ID of the distribution tenant.
|
15490
|
+
# @return [String]
|
15491
|
+
#
|
15492
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/VerifyDnsConfigurationRequest AWS API Documentation
|
15493
|
+
#
|
15494
|
+
class VerifyDnsConfigurationRequest < Struct.new(
|
15495
|
+
:domain,
|
15496
|
+
:identifier)
|
15497
|
+
SENSITIVE = []
|
15498
|
+
include Aws::Structure
|
15499
|
+
end
|
15500
|
+
|
15501
|
+
# @!attribute [rw] dns_configuration_list
|
15502
|
+
# The list of domain names, their statuses, and a description of each
|
15503
|
+
# status.
|
15504
|
+
# @return [Array<Types::DnsConfiguration>]
|
15505
|
+
#
|
15506
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/VerifyDnsConfigurationResult AWS API Documentation
|
15507
|
+
#
|
15508
|
+
class VerifyDnsConfigurationResult < Struct.new(
|
15509
|
+
:dns_configuration_list)
|
15510
|
+
SENSITIVE = []
|
15511
|
+
include Aws::Structure
|
15512
|
+
end
|
15513
|
+
|
13680
15514
|
# A complex type that determines the distribution's SSL/TLS
|
13681
15515
|
# configuration for communicating with viewers.
|
13682
15516
|
#
|
@@ -13796,8 +15630,8 @@ module Aws::CloudFront
|
|
13796
15630
|
# * `static-ip` - Do not specify this value unless your distribution
|
13797
15631
|
# has been enabled for this feature by the CloudFront team. If you
|
13798
15632
|
# have a use case that requires static IP addresses for a
|
13799
|
-
# distribution, contact CloudFront through the [Amazon Web
|
13800
|
-
#
|
15633
|
+
# distribution, contact CloudFront through the [Amazon Web Services
|
15634
|
+
# Support Center][2].
|
13801
15635
|
#
|
13802
15636
|
# If the distribution uses the CloudFront domain name such as
|
13803
15637
|
# `d111111abcdef8.cloudfront.net`, don't set a value for this field.
|
@@ -14091,6 +15925,29 @@ module Aws::CloudFront
|
|
14091
15925
|
include Aws::Structure
|
14092
15926
|
end
|
14093
15927
|
|
15928
|
+
# The WAF web ACL customization specified for the distribution tenant.
|
15929
|
+
#
|
15930
|
+
# @!attribute [rw] action
|
15931
|
+
# The action for the WAF web ACL customization. You can specify
|
15932
|
+
# `override` to specify a separate WAF web ACL for the distribution
|
15933
|
+
# tenant. If you specify `disable`, the distribution tenant won't
|
15934
|
+
# have WAF web ACL protections and won't inherit from the
|
15935
|
+
# multi-tenant distribution.
|
15936
|
+
# @return [String]
|
15937
|
+
#
|
15938
|
+
# @!attribute [rw] arn
|
15939
|
+
# The Amazon Resource Name (ARN) of the WAF web ACL.
|
15940
|
+
# @return [String]
|
15941
|
+
#
|
15942
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/WebAclCustomization AWS API Documentation
|
15943
|
+
#
|
15944
|
+
class WebAclCustomization < Struct.new(
|
15945
|
+
:action,
|
15946
|
+
:arn)
|
15947
|
+
SENSITIVE = []
|
15948
|
+
include Aws::Structure
|
15949
|
+
end
|
15950
|
+
|
14094
15951
|
end
|
14095
15952
|
end
|
14096
15953
|
|