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
data/sig/types.rbs
CHANGED
@@ -83,6 +83,34 @@ module Aws::CloudFront
|
|
83
83
|
SENSITIVE: []
|
84
84
|
end
|
85
85
|
|
86
|
+
class AssociateDistributionTenantWebACLRequest
|
87
|
+
attr_accessor id: ::String
|
88
|
+
attr_accessor web_acl_arn: ::String
|
89
|
+
attr_accessor if_match: ::String
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class AssociateDistributionTenantWebACLResult
|
94
|
+
attr_accessor id: ::String
|
95
|
+
attr_accessor web_acl_arn: ::String
|
96
|
+
attr_accessor etag: ::String
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class AssociateDistributionWebACLRequest
|
101
|
+
attr_accessor id: ::String
|
102
|
+
attr_accessor web_acl_arn: ::String
|
103
|
+
attr_accessor if_match: ::String
|
104
|
+
SENSITIVE: []
|
105
|
+
end
|
106
|
+
|
107
|
+
class AssociateDistributionWebACLResult
|
108
|
+
attr_accessor id: ::String
|
109
|
+
attr_accessor web_acl_arn: ::String
|
110
|
+
attr_accessor etag: ::String
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
86
114
|
class BatchTooLarge
|
87
115
|
attr_accessor message: ::String
|
88
116
|
SENSITIVE: []
|
@@ -203,6 +231,11 @@ module Aws::CloudFront
|
|
203
231
|
SENSITIVE: []
|
204
232
|
end
|
205
233
|
|
234
|
+
class Certificate
|
235
|
+
attr_accessor arn: ::String
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
206
239
|
class CloudFrontOriginAccessIdentity
|
207
240
|
attr_accessor id: ::String
|
208
241
|
attr_accessor s3_canonical_user_id: ::String
|
@@ -258,6 +291,42 @@ module Aws::CloudFront
|
|
258
291
|
SENSITIVE: []
|
259
292
|
end
|
260
293
|
|
294
|
+
class ConnectionGroup
|
295
|
+
attr_accessor id: ::String
|
296
|
+
attr_accessor name: ::String
|
297
|
+
attr_accessor arn: ::String
|
298
|
+
attr_accessor created_time: ::Time
|
299
|
+
attr_accessor last_modified_time: ::Time
|
300
|
+
attr_accessor tags: Types::Tags
|
301
|
+
attr_accessor ipv_6_enabled: bool
|
302
|
+
attr_accessor routing_endpoint: ::String
|
303
|
+
attr_accessor anycast_ip_list_id: ::String
|
304
|
+
attr_accessor status: ::String
|
305
|
+
attr_accessor enabled: bool
|
306
|
+
attr_accessor is_default: bool
|
307
|
+
SENSITIVE: []
|
308
|
+
end
|
309
|
+
|
310
|
+
class ConnectionGroupAssociationFilter
|
311
|
+
attr_accessor anycast_ip_list_id: ::String
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class ConnectionGroupSummary
|
316
|
+
attr_accessor id: ::String
|
317
|
+
attr_accessor name: ::String
|
318
|
+
attr_accessor arn: ::String
|
319
|
+
attr_accessor routing_endpoint: ::String
|
320
|
+
attr_accessor created_time: ::Time
|
321
|
+
attr_accessor last_modified_time: ::Time
|
322
|
+
attr_accessor etag: ::String
|
323
|
+
attr_accessor anycast_ip_list_id: ::String
|
324
|
+
attr_accessor enabled: bool
|
325
|
+
attr_accessor status: ::String
|
326
|
+
attr_accessor is_default: bool
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
261
330
|
class ContentTypeProfile
|
262
331
|
attr_accessor format: ("URLEncoded")
|
263
332
|
attr_accessor profile_id: ::String
|
@@ -391,6 +460,21 @@ module Aws::CloudFront
|
|
391
460
|
SENSITIVE: []
|
392
461
|
end
|
393
462
|
|
463
|
+
class CreateConnectionGroupRequest
|
464
|
+
attr_accessor name: ::String
|
465
|
+
attr_accessor ipv_6_enabled: bool
|
466
|
+
attr_accessor tags: Types::Tags
|
467
|
+
attr_accessor anycast_ip_list_id: ::String
|
468
|
+
attr_accessor enabled: bool
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class CreateConnectionGroupResult
|
473
|
+
attr_accessor connection_group: Types::ConnectionGroup
|
474
|
+
attr_accessor etag: ::String
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
|
394
478
|
class CreateContinuousDeploymentPolicyRequest
|
395
479
|
attr_accessor continuous_deployment_policy_config: Types::ContinuousDeploymentPolicyConfig
|
396
480
|
SENSITIVE: []
|
@@ -415,6 +499,25 @@ module Aws::CloudFront
|
|
415
499
|
SENSITIVE: []
|
416
500
|
end
|
417
501
|
|
502
|
+
class CreateDistributionTenantRequest
|
503
|
+
attr_accessor distribution_id: ::String
|
504
|
+
attr_accessor name: ::String
|
505
|
+
attr_accessor domains: ::Array[Types::DomainItem]
|
506
|
+
attr_accessor tags: Types::Tags
|
507
|
+
attr_accessor customizations: Types::Customizations
|
508
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
509
|
+
attr_accessor connection_group_id: ::String
|
510
|
+
attr_accessor managed_certificate_request: Types::ManagedCertificateRequest
|
511
|
+
attr_accessor enabled: bool
|
512
|
+
SENSITIVE: []
|
513
|
+
end
|
514
|
+
|
515
|
+
class CreateDistributionTenantResult
|
516
|
+
attr_accessor distribution_tenant: Types::DistributionTenant
|
517
|
+
attr_accessor etag: ::String
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
418
521
|
class CreateDistributionWithTagsRequest
|
419
522
|
attr_accessor distribution_config_with_tags: Types::DistributionConfigWithTags
|
420
523
|
SENSITIVE: []
|
@@ -465,6 +568,18 @@ module Aws::CloudFront
|
|
465
568
|
SENSITIVE: []
|
466
569
|
end
|
467
570
|
|
571
|
+
class CreateInvalidationForDistributionTenantRequest
|
572
|
+
attr_accessor id: ::String
|
573
|
+
attr_accessor invalidation_batch: Types::InvalidationBatch
|
574
|
+
SENSITIVE: []
|
575
|
+
end
|
576
|
+
|
577
|
+
class CreateInvalidationForDistributionTenantResult
|
578
|
+
attr_accessor location: ::String
|
579
|
+
attr_accessor invalidation: Types::Invalidation
|
580
|
+
SENSITIVE: []
|
581
|
+
end
|
582
|
+
|
468
583
|
class CreateInvalidationRequest
|
469
584
|
attr_accessor distribution_id: ::String
|
470
585
|
attr_accessor invalidation_batch: Types::InvalidationBatch
|
@@ -642,6 +757,13 @@ module Aws::CloudFront
|
|
642
757
|
SENSITIVE: []
|
643
758
|
end
|
644
759
|
|
760
|
+
class Customizations
|
761
|
+
attr_accessor web_acl: Types::WebAclCustomization
|
762
|
+
attr_accessor certificate: Types::Certificate
|
763
|
+
attr_accessor geo_restrictions: Types::GeoRestrictionCustomization
|
764
|
+
SENSITIVE: []
|
765
|
+
end
|
766
|
+
|
645
767
|
class DefaultCacheBehavior
|
646
768
|
attr_accessor target_origin_id: ::String
|
647
769
|
attr_accessor trusted_signers: Types::TrustedSigners
|
@@ -683,6 +805,12 @@ module Aws::CloudFront
|
|
683
805
|
SENSITIVE: []
|
684
806
|
end
|
685
807
|
|
808
|
+
class DeleteConnectionGroupRequest
|
809
|
+
attr_accessor id: ::String
|
810
|
+
attr_accessor if_match: ::String
|
811
|
+
SENSITIVE: []
|
812
|
+
end
|
813
|
+
|
686
814
|
class DeleteContinuousDeploymentPolicyRequest
|
687
815
|
attr_accessor id: ::String
|
688
816
|
attr_accessor if_match: ::String
|
@@ -695,6 +823,12 @@ module Aws::CloudFront
|
|
695
823
|
SENSITIVE: []
|
696
824
|
end
|
697
825
|
|
826
|
+
class DeleteDistributionTenantRequest
|
827
|
+
attr_accessor id: ::String
|
828
|
+
attr_accessor if_match: ::String
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
698
832
|
class DeleteFieldLevelEncryptionConfigRequest
|
699
833
|
attr_accessor id: ::String
|
700
834
|
attr_accessor if_match: ::String
|
@@ -804,6 +938,30 @@ module Aws::CloudFront
|
|
804
938
|
SENSITIVE: []
|
805
939
|
end
|
806
940
|
|
941
|
+
class DisassociateDistributionTenantWebACLRequest
|
942
|
+
attr_accessor id: ::String
|
943
|
+
attr_accessor if_match: ::String
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
947
|
+
class DisassociateDistributionTenantWebACLResult
|
948
|
+
attr_accessor id: ::String
|
949
|
+
attr_accessor etag: ::String
|
950
|
+
SENSITIVE: []
|
951
|
+
end
|
952
|
+
|
953
|
+
class DisassociateDistributionWebACLRequest
|
954
|
+
attr_accessor id: ::String
|
955
|
+
attr_accessor if_match: ::String
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class DisassociateDistributionWebACLResult
|
960
|
+
attr_accessor id: ::String
|
961
|
+
attr_accessor etag: ::String
|
962
|
+
SENSITIVE: []
|
963
|
+
end
|
964
|
+
|
807
965
|
class Distribution
|
808
966
|
attr_accessor id: ::String
|
809
967
|
attr_accessor arn: ::String
|
@@ -834,7 +992,7 @@ module Aws::CloudFront
|
|
834
992
|
attr_accessor custom_error_responses: Types::CustomErrorResponses
|
835
993
|
attr_accessor comment: ::String
|
836
994
|
attr_accessor logging: Types::LoggingConfig
|
837
|
-
attr_accessor price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All")
|
995
|
+
attr_accessor price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All" | "None")
|
838
996
|
attr_accessor enabled: bool
|
839
997
|
attr_accessor viewer_certificate: Types::ViewerCertificate
|
840
998
|
attr_accessor restrictions: Types::Restrictions
|
@@ -844,6 +1002,8 @@ module Aws::CloudFront
|
|
844
1002
|
attr_accessor continuous_deployment_policy_id: ::String
|
845
1003
|
attr_accessor staging: bool
|
846
1004
|
attr_accessor anycast_ip_list_id: ::String
|
1005
|
+
attr_accessor tenant_config: Types::TenantConfig
|
1006
|
+
attr_accessor connection_mode: ("direct" | "tenant-only")
|
847
1007
|
SENSITIVE: [:comment]
|
848
1008
|
end
|
849
1009
|
|
@@ -878,9 +1038,16 @@ module Aws::CloudFront
|
|
878
1038
|
SENSITIVE: []
|
879
1039
|
end
|
880
1040
|
|
1041
|
+
class DistributionResourceId
|
1042
|
+
attr_accessor distribution_id: ::String
|
1043
|
+
attr_accessor distribution_tenant_id: ::String
|
1044
|
+
SENSITIVE: []
|
1045
|
+
end
|
1046
|
+
|
881
1047
|
class DistributionSummary
|
882
1048
|
attr_accessor id: ::String
|
883
1049
|
attr_accessor arn: ::String
|
1050
|
+
attr_accessor etag: ::String
|
884
1051
|
attr_accessor status: ::String
|
885
1052
|
attr_accessor last_modified_time: ::Time
|
886
1053
|
attr_accessor domain_name: ::String
|
@@ -891,7 +1058,7 @@ module Aws::CloudFront
|
|
891
1058
|
attr_accessor cache_behaviors: Types::CacheBehaviors
|
892
1059
|
attr_accessor custom_error_responses: Types::CustomErrorResponses
|
893
1060
|
attr_accessor comment: ::String
|
894
|
-
attr_accessor price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All")
|
1061
|
+
attr_accessor price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All" | "None")
|
895
1062
|
attr_accessor enabled: bool
|
896
1063
|
attr_accessor viewer_certificate: Types::ViewerCertificate
|
897
1064
|
attr_accessor restrictions: Types::Restrictions
|
@@ -900,10 +1067,76 @@ module Aws::CloudFront
|
|
900
1067
|
attr_accessor is_ipv6_enabled: bool
|
901
1068
|
attr_accessor alias_icp_recordals: ::Array[Types::AliasICPRecordal]
|
902
1069
|
attr_accessor staging: bool
|
1070
|
+
attr_accessor connection_mode: ("direct" | "tenant-only")
|
903
1071
|
attr_accessor anycast_ip_list_id: ::String
|
904
1072
|
SENSITIVE: []
|
905
1073
|
end
|
906
1074
|
|
1075
|
+
class DistributionTenant
|
1076
|
+
attr_accessor id: ::String
|
1077
|
+
attr_accessor distribution_id: ::String
|
1078
|
+
attr_accessor name: ::String
|
1079
|
+
attr_accessor arn: ::String
|
1080
|
+
attr_accessor domains: ::Array[Types::DomainResult]
|
1081
|
+
attr_accessor tags: Types::Tags
|
1082
|
+
attr_accessor customizations: Types::Customizations
|
1083
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
1084
|
+
attr_accessor connection_group_id: ::String
|
1085
|
+
attr_accessor created_time: ::Time
|
1086
|
+
attr_accessor last_modified_time: ::Time
|
1087
|
+
attr_accessor enabled: bool
|
1088
|
+
attr_accessor status: ::String
|
1089
|
+
SENSITIVE: []
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
class DistributionTenantAssociationFilter
|
1093
|
+
attr_accessor distribution_id: ::String
|
1094
|
+
attr_accessor connection_group_id: ::String
|
1095
|
+
SENSITIVE: []
|
1096
|
+
end
|
1097
|
+
|
1098
|
+
class DistributionTenantSummary
|
1099
|
+
attr_accessor id: ::String
|
1100
|
+
attr_accessor distribution_id: ::String
|
1101
|
+
attr_accessor name: ::String
|
1102
|
+
attr_accessor arn: ::String
|
1103
|
+
attr_accessor domains: ::Array[Types::DomainResult]
|
1104
|
+
attr_accessor connection_group_id: ::String
|
1105
|
+
attr_accessor customizations: Types::Customizations
|
1106
|
+
attr_accessor created_time: ::Time
|
1107
|
+
attr_accessor last_modified_time: ::Time
|
1108
|
+
attr_accessor etag: ::String
|
1109
|
+
attr_accessor enabled: bool
|
1110
|
+
attr_accessor status: ::String
|
1111
|
+
SENSITIVE: []
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
class DnsConfiguration
|
1115
|
+
attr_accessor domain: ::String
|
1116
|
+
attr_accessor status: ("valid-configuration" | "invalid-configuration" | "unknown-configuration")
|
1117
|
+
attr_accessor reason: ::String
|
1118
|
+
SENSITIVE: []
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
class DomainConflict
|
1122
|
+
attr_accessor domain: ::String
|
1123
|
+
attr_accessor resource_type: ("distribution" | "distribution-tenant")
|
1124
|
+
attr_accessor resource_id: ::String
|
1125
|
+
attr_accessor account_id: ::String
|
1126
|
+
SENSITIVE: []
|
1127
|
+
end
|
1128
|
+
|
1129
|
+
class DomainItem
|
1130
|
+
attr_accessor domain: ::String
|
1131
|
+
SENSITIVE: []
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class DomainResult
|
1135
|
+
attr_accessor domain: ::String
|
1136
|
+
attr_accessor status: ("active" | "inactive")
|
1137
|
+
SENSITIVE: []
|
1138
|
+
end
|
1139
|
+
|
907
1140
|
class EncryptionEntities
|
908
1141
|
attr_accessor quantity: ::Integer
|
909
1142
|
attr_accessor items: ::Array[Types::EncryptionEntity]
|
@@ -1111,6 +1344,12 @@ module Aws::CloudFront
|
|
1111
1344
|
SENSITIVE: []
|
1112
1345
|
end
|
1113
1346
|
|
1347
|
+
class GeoRestrictionCustomization
|
1348
|
+
attr_accessor restriction_type: ("blacklist" | "whitelist" | "none")
|
1349
|
+
attr_accessor locations: ::Array[::String]
|
1350
|
+
SENSITIVE: []
|
1351
|
+
end
|
1352
|
+
|
1114
1353
|
class GetAnycastIpListRequest
|
1115
1354
|
attr_accessor id: ::String
|
1116
1355
|
SENSITIVE: []
|
@@ -1166,6 +1405,28 @@ module Aws::CloudFront
|
|
1166
1405
|
SENSITIVE: []
|
1167
1406
|
end
|
1168
1407
|
|
1408
|
+
class GetConnectionGroupByRoutingEndpointRequest
|
1409
|
+
attr_accessor routing_endpoint: ::String
|
1410
|
+
SENSITIVE: []
|
1411
|
+
end
|
1412
|
+
|
1413
|
+
class GetConnectionGroupByRoutingEndpointResult
|
1414
|
+
attr_accessor connection_group: Types::ConnectionGroup
|
1415
|
+
attr_accessor etag: ::String
|
1416
|
+
SENSITIVE: []
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
class GetConnectionGroupRequest
|
1420
|
+
attr_accessor identifier: ::String
|
1421
|
+
SENSITIVE: []
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
class GetConnectionGroupResult
|
1425
|
+
attr_accessor connection_group: Types::ConnectionGroup
|
1426
|
+
attr_accessor etag: ::String
|
1427
|
+
SENSITIVE: []
|
1428
|
+
end
|
1429
|
+
|
1169
1430
|
class GetContinuousDeploymentPolicyConfigRequest
|
1170
1431
|
attr_accessor id: ::String
|
1171
1432
|
SENSITIVE: []
|
@@ -1210,6 +1471,28 @@ module Aws::CloudFront
|
|
1210
1471
|
SENSITIVE: []
|
1211
1472
|
end
|
1212
1473
|
|
1474
|
+
class GetDistributionTenantByDomainRequest
|
1475
|
+
attr_accessor domain: ::String
|
1476
|
+
SENSITIVE: []
|
1477
|
+
end
|
1478
|
+
|
1479
|
+
class GetDistributionTenantByDomainResult
|
1480
|
+
attr_accessor distribution_tenant: Types::DistributionTenant
|
1481
|
+
attr_accessor etag: ::String
|
1482
|
+
SENSITIVE: []
|
1483
|
+
end
|
1484
|
+
|
1485
|
+
class GetDistributionTenantRequest
|
1486
|
+
attr_accessor identifier: ::String
|
1487
|
+
SENSITIVE: []
|
1488
|
+
end
|
1489
|
+
|
1490
|
+
class GetDistributionTenantResult
|
1491
|
+
attr_accessor distribution_tenant: Types::DistributionTenant
|
1492
|
+
attr_accessor etag: ::String
|
1493
|
+
SENSITIVE: []
|
1494
|
+
end
|
1495
|
+
|
1213
1496
|
class GetFieldLevelEncryptionConfigRequest
|
1214
1497
|
attr_accessor id: ::String
|
1215
1498
|
SENSITIVE: []
|
@@ -1267,6 +1550,17 @@ module Aws::CloudFront
|
|
1267
1550
|
SENSITIVE: [:function_code]
|
1268
1551
|
end
|
1269
1552
|
|
1553
|
+
class GetInvalidationForDistributionTenantRequest
|
1554
|
+
attr_accessor distribution_tenant_id: ::String
|
1555
|
+
attr_accessor id: ::String
|
1556
|
+
SENSITIVE: []
|
1557
|
+
end
|
1558
|
+
|
1559
|
+
class GetInvalidationForDistributionTenantResult
|
1560
|
+
attr_accessor invalidation: Types::Invalidation
|
1561
|
+
SENSITIVE: []
|
1562
|
+
end
|
1563
|
+
|
1270
1564
|
class GetInvalidationRequest
|
1271
1565
|
attr_accessor distribution_id: ::String
|
1272
1566
|
attr_accessor id: ::String
|
@@ -1300,6 +1594,16 @@ module Aws::CloudFront
|
|
1300
1594
|
SENSITIVE: []
|
1301
1595
|
end
|
1302
1596
|
|
1597
|
+
class GetManagedCertificateDetailsRequest
|
1598
|
+
attr_accessor identifier: ::String
|
1599
|
+
SENSITIVE: []
|
1600
|
+
end
|
1601
|
+
|
1602
|
+
class GetManagedCertificateDetailsResult
|
1603
|
+
attr_accessor managed_certificate_details: Types::ManagedCertificateDetails
|
1604
|
+
SENSITIVE: []
|
1605
|
+
end
|
1606
|
+
|
1303
1607
|
class GetMonitoringSubscriptionRequest
|
1304
1608
|
attr_accessor distribution_id: ::String
|
1305
1609
|
SENSITIVE: []
|
@@ -1489,6 +1793,11 @@ module Aws::CloudFront
|
|
1489
1793
|
SENSITIVE: []
|
1490
1794
|
end
|
1491
1795
|
|
1796
|
+
class InvalidAssociation
|
1797
|
+
attr_accessor message: ::String
|
1798
|
+
SENSITIVE: []
|
1799
|
+
end
|
1800
|
+
|
1492
1801
|
class InvalidDefaultRootObject
|
1493
1802
|
attr_accessor message: ::String
|
1494
1803
|
SENSITIVE: []
|
@@ -1784,6 +2093,19 @@ module Aws::CloudFront
|
|
1784
2093
|
SENSITIVE: []
|
1785
2094
|
end
|
1786
2095
|
|
2096
|
+
class ListConnectionGroupsRequest
|
2097
|
+
attr_accessor association_filter: Types::ConnectionGroupAssociationFilter
|
2098
|
+
attr_accessor marker: ::String
|
2099
|
+
attr_accessor max_items: ::Integer
|
2100
|
+
SENSITIVE: []
|
2101
|
+
end
|
2102
|
+
|
2103
|
+
class ListConnectionGroupsResult
|
2104
|
+
attr_accessor next_marker: ::String
|
2105
|
+
attr_accessor connection_groups: ::Array[Types::ConnectionGroupSummary]
|
2106
|
+
SENSITIVE: []
|
2107
|
+
end
|
2108
|
+
|
1787
2109
|
class ListContinuousDeploymentPoliciesRequest
|
1788
2110
|
attr_accessor marker: ::String
|
1789
2111
|
attr_accessor max_items: ::Integer
|
@@ -1795,6 +2117,33 @@ module Aws::CloudFront
|
|
1795
2117
|
SENSITIVE: []
|
1796
2118
|
end
|
1797
2119
|
|
2120
|
+
class ListDistributionTenantsByCustomizationRequest
|
2121
|
+
attr_accessor web_acl_arn: ::String
|
2122
|
+
attr_accessor certificate_arn: ::String
|
2123
|
+
attr_accessor marker: ::String
|
2124
|
+
attr_accessor max_items: ::Integer
|
2125
|
+
SENSITIVE: []
|
2126
|
+
end
|
2127
|
+
|
2128
|
+
class ListDistributionTenantsByCustomizationResult
|
2129
|
+
attr_accessor next_marker: ::String
|
2130
|
+
attr_accessor distribution_tenant_list: ::Array[Types::DistributionTenantSummary]
|
2131
|
+
SENSITIVE: []
|
2132
|
+
end
|
2133
|
+
|
2134
|
+
class ListDistributionTenantsRequest
|
2135
|
+
attr_accessor association_filter: Types::DistributionTenantAssociationFilter
|
2136
|
+
attr_accessor marker: ::String
|
2137
|
+
attr_accessor max_items: ::Integer
|
2138
|
+
SENSITIVE: []
|
2139
|
+
end
|
2140
|
+
|
2141
|
+
class ListDistributionTenantsResult
|
2142
|
+
attr_accessor next_marker: ::String
|
2143
|
+
attr_accessor distribution_tenant_list: ::Array[Types::DistributionTenantSummary]
|
2144
|
+
SENSITIVE: []
|
2145
|
+
end
|
2146
|
+
|
1798
2147
|
class ListDistributionsByAnycastIpListIdRequest
|
1799
2148
|
attr_accessor marker: ::String
|
1800
2149
|
attr_accessor max_items: ::Integer
|
@@ -1819,6 +2168,18 @@ module Aws::CloudFront
|
|
1819
2168
|
SENSITIVE: []
|
1820
2169
|
end
|
1821
2170
|
|
2171
|
+
class ListDistributionsByConnectionModeRequest
|
2172
|
+
attr_accessor marker: ::String
|
2173
|
+
attr_accessor max_items: ::Integer
|
2174
|
+
attr_accessor connection_mode: ("direct" | "tenant-only")
|
2175
|
+
SENSITIVE: []
|
2176
|
+
end
|
2177
|
+
|
2178
|
+
class ListDistributionsByConnectionModeResult
|
2179
|
+
attr_accessor distribution_list: Types::DistributionList
|
2180
|
+
SENSITIVE: []
|
2181
|
+
end
|
2182
|
+
|
1822
2183
|
class ListDistributionsByKeyGroupRequest
|
1823
2184
|
attr_accessor marker: ::String
|
1824
2185
|
attr_accessor max_items: ::Integer
|
@@ -1903,6 +2264,20 @@ module Aws::CloudFront
|
|
1903
2264
|
SENSITIVE: []
|
1904
2265
|
end
|
1905
2266
|
|
2267
|
+
class ListDomainConflictsRequest
|
2268
|
+
attr_accessor domain: ::String
|
2269
|
+
attr_accessor domain_control_validation_resource: Types::DistributionResourceId
|
2270
|
+
attr_accessor max_items: ::Integer
|
2271
|
+
attr_accessor marker: ::String
|
2272
|
+
SENSITIVE: []
|
2273
|
+
end
|
2274
|
+
|
2275
|
+
class ListDomainConflictsResult
|
2276
|
+
attr_accessor domain_conflicts: ::Array[Types::DomainConflict]
|
2277
|
+
attr_accessor next_marker: ::String
|
2278
|
+
SENSITIVE: []
|
2279
|
+
end
|
2280
|
+
|
1906
2281
|
class ListFieldLevelEncryptionConfigsRequest
|
1907
2282
|
attr_accessor marker: ::String
|
1908
2283
|
attr_accessor max_items: ::Integer
|
@@ -1937,6 +2312,18 @@ module Aws::CloudFront
|
|
1937
2312
|
SENSITIVE: []
|
1938
2313
|
end
|
1939
2314
|
|
2315
|
+
class ListInvalidationsForDistributionTenantRequest
|
2316
|
+
attr_accessor id: ::String
|
2317
|
+
attr_accessor marker: ::String
|
2318
|
+
attr_accessor max_items: ::Integer
|
2319
|
+
SENSITIVE: []
|
2320
|
+
end
|
2321
|
+
|
2322
|
+
class ListInvalidationsForDistributionTenantResult
|
2323
|
+
attr_accessor invalidation_list: Types::InvalidationList
|
2324
|
+
SENSITIVE: []
|
2325
|
+
end
|
2326
|
+
|
1940
2327
|
class ListInvalidationsRequest
|
1941
2328
|
attr_accessor distribution_id: ::String
|
1942
2329
|
attr_accessor marker: ::String
|
@@ -2069,6 +2456,21 @@ module Aws::CloudFront
|
|
2069
2456
|
SENSITIVE: []
|
2070
2457
|
end
|
2071
2458
|
|
2459
|
+
class ManagedCertificateDetails
|
2460
|
+
attr_accessor certificate_arn: ::String
|
2461
|
+
attr_accessor certificate_status: ("pending-validation" | "issued" | "inactive" | "expired" | "validation-timed-out" | "revoked" | "failed")
|
2462
|
+
attr_accessor validation_token_host: ("cloudfront" | "self-hosted")
|
2463
|
+
attr_accessor validation_token_details: ::Array[Types::ValidationTokenDetail]
|
2464
|
+
SENSITIVE: []
|
2465
|
+
end
|
2466
|
+
|
2467
|
+
class ManagedCertificateRequest
|
2468
|
+
attr_accessor validation_token_host: ("cloudfront" | "self-hosted")
|
2469
|
+
attr_accessor primary_domain_name: ::String
|
2470
|
+
attr_accessor certificate_transparency_logging_preference: ("enabled" | "disabled")
|
2471
|
+
SENSITIVE: []
|
2472
|
+
end
|
2473
|
+
|
2072
2474
|
class MissingBody
|
2073
2475
|
attr_accessor message: ::String
|
2074
2476
|
SENSITIVE: []
|
@@ -2341,6 +2743,23 @@ module Aws::CloudFront
|
|
2341
2743
|
SENSITIVE: []
|
2342
2744
|
end
|
2343
2745
|
|
2746
|
+
class Parameter
|
2747
|
+
attr_accessor name: ::String
|
2748
|
+
attr_accessor value: ::String
|
2749
|
+
SENSITIVE: []
|
2750
|
+
end
|
2751
|
+
|
2752
|
+
class ParameterDefinition
|
2753
|
+
attr_accessor name: ::String
|
2754
|
+
attr_accessor definition: Types::ParameterDefinitionSchema
|
2755
|
+
SENSITIVE: []
|
2756
|
+
end
|
2757
|
+
|
2758
|
+
class ParameterDefinitionSchema
|
2759
|
+
attr_accessor string_schema: Types::StringSchemaConfig
|
2760
|
+
SENSITIVE: []
|
2761
|
+
end
|
2762
|
+
|
2344
2763
|
class ParametersInCacheKeyAndForwardedToOrigin
|
2345
2764
|
attr_accessor enable_accept_encoding_gzip: bool
|
2346
2765
|
attr_accessor enable_accept_encoding_brotli: bool
|
@@ -2492,6 +2911,11 @@ module Aws::CloudFront
|
|
2492
2911
|
SENSITIVE: []
|
2493
2912
|
end
|
2494
2913
|
|
2914
|
+
class ResourceNotDisabled
|
2915
|
+
attr_accessor message: ::String
|
2916
|
+
SENSITIVE: []
|
2917
|
+
end
|
2918
|
+
|
2495
2919
|
class ResponseHeadersPolicy
|
2496
2920
|
attr_accessor id: ::String
|
2497
2921
|
attr_accessor last_modified_time: ::Time
|
@@ -2716,7 +3140,7 @@ module Aws::CloudFront
|
|
2716
3140
|
attr_accessor comment: ::String
|
2717
3141
|
attr_accessor logging: Types::StreamingLoggingConfig
|
2718
3142
|
attr_accessor trusted_signers: Types::TrustedSigners
|
2719
|
-
attr_accessor price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All")
|
3143
|
+
attr_accessor price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All" | "None")
|
2720
3144
|
attr_accessor enabled: bool
|
2721
3145
|
SENSITIVE: []
|
2722
3146
|
end
|
@@ -2752,7 +3176,7 @@ module Aws::CloudFront
|
|
2752
3176
|
attr_accessor aliases: Types::Aliases
|
2753
3177
|
attr_accessor trusted_signers: Types::TrustedSigners
|
2754
3178
|
attr_accessor comment: ::String
|
2755
|
-
attr_accessor price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All")
|
3179
|
+
attr_accessor price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All" | "None")
|
2756
3180
|
attr_accessor enabled: bool
|
2757
3181
|
SENSITIVE: []
|
2758
3182
|
end
|
@@ -2764,6 +3188,13 @@ module Aws::CloudFront
|
|
2764
3188
|
SENSITIVE: []
|
2765
3189
|
end
|
2766
3190
|
|
3191
|
+
class StringSchemaConfig
|
3192
|
+
attr_accessor comment: ::String
|
3193
|
+
attr_accessor default_value: ::String
|
3194
|
+
attr_accessor required: bool
|
3195
|
+
SENSITIVE: []
|
3196
|
+
end
|
3197
|
+
|
2767
3198
|
class Tag
|
2768
3199
|
attr_accessor key: ::String
|
2769
3200
|
attr_accessor value: ::String
|
@@ -2786,6 +3217,11 @@ module Aws::CloudFront
|
|
2786
3217
|
SENSITIVE: []
|
2787
3218
|
end
|
2788
3219
|
|
3220
|
+
class TenantConfig
|
3221
|
+
attr_accessor parameter_definitions: ::Array[Types::ParameterDefinition]
|
3222
|
+
SENSITIVE: []
|
3223
|
+
end
|
3224
|
+
|
2789
3225
|
class TestFunctionFailed
|
2790
3226
|
attr_accessor message: ::String
|
2791
3227
|
SENSITIVE: []
|
@@ -3141,6 +3577,21 @@ module Aws::CloudFront
|
|
3141
3577
|
SENSITIVE: []
|
3142
3578
|
end
|
3143
3579
|
|
3580
|
+
class UpdateConnectionGroupRequest
|
3581
|
+
attr_accessor id: ::String
|
3582
|
+
attr_accessor ipv_6_enabled: bool
|
3583
|
+
attr_accessor if_match: ::String
|
3584
|
+
attr_accessor anycast_ip_list_id: ::String
|
3585
|
+
attr_accessor enabled: bool
|
3586
|
+
SENSITIVE: []
|
3587
|
+
end
|
3588
|
+
|
3589
|
+
class UpdateConnectionGroupResult
|
3590
|
+
attr_accessor connection_group: Types::ConnectionGroup
|
3591
|
+
attr_accessor etag: ::String
|
3592
|
+
SENSITIVE: []
|
3593
|
+
end
|
3594
|
+
|
3144
3595
|
class UpdateContinuousDeploymentPolicyRequest
|
3145
3596
|
attr_accessor continuous_deployment_policy_config: Types::ContinuousDeploymentPolicyConfig
|
3146
3597
|
attr_accessor id: ::String
|
@@ -3167,6 +3618,25 @@ module Aws::CloudFront
|
|
3167
3618
|
SENSITIVE: []
|
3168
3619
|
end
|
3169
3620
|
|
3621
|
+
class UpdateDistributionTenantRequest
|
3622
|
+
attr_accessor id: ::String
|
3623
|
+
attr_accessor distribution_id: ::String
|
3624
|
+
attr_accessor domains: ::Array[Types::DomainItem]
|
3625
|
+
attr_accessor customizations: Types::Customizations
|
3626
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
3627
|
+
attr_accessor connection_group_id: ::String
|
3628
|
+
attr_accessor if_match: ::String
|
3629
|
+
attr_accessor managed_certificate_request: Types::ManagedCertificateRequest
|
3630
|
+
attr_accessor enabled: bool
|
3631
|
+
SENSITIVE: []
|
3632
|
+
end
|
3633
|
+
|
3634
|
+
class UpdateDistributionTenantResult
|
3635
|
+
attr_accessor distribution_tenant: Types::DistributionTenant
|
3636
|
+
attr_accessor etag: ::String
|
3637
|
+
SENSITIVE: []
|
3638
|
+
end
|
3639
|
+
|
3170
3640
|
class UpdateDistributionWithStagingConfigRequest
|
3171
3641
|
attr_accessor id: ::String
|
3172
3642
|
attr_accessor staging_distribution_id: ::String
|
@@ -3180,6 +3650,20 @@ module Aws::CloudFront
|
|
3180
3650
|
SENSITIVE: []
|
3181
3651
|
end
|
3182
3652
|
|
3653
|
+
class UpdateDomainAssociationRequest
|
3654
|
+
attr_accessor domain: ::String
|
3655
|
+
attr_accessor target_resource: Types::DistributionResourceId
|
3656
|
+
attr_accessor if_match: ::String
|
3657
|
+
SENSITIVE: []
|
3658
|
+
end
|
3659
|
+
|
3660
|
+
class UpdateDomainAssociationResult
|
3661
|
+
attr_accessor domain: ::String
|
3662
|
+
attr_accessor resource_id: ::String
|
3663
|
+
attr_accessor etag: ::String
|
3664
|
+
SENSITIVE: []
|
3665
|
+
end
|
3666
|
+
|
3183
3667
|
class UpdateFieldLevelEncryptionConfigRequest
|
3184
3668
|
attr_accessor field_level_encryption_config: Types::FieldLevelEncryptionConfig
|
3185
3669
|
attr_accessor id: ::String
|
@@ -3338,6 +3822,24 @@ module Aws::CloudFront
|
|
3338
3822
|
SENSITIVE: []
|
3339
3823
|
end
|
3340
3824
|
|
3825
|
+
class ValidationTokenDetail
|
3826
|
+
attr_accessor domain: ::String
|
3827
|
+
attr_accessor redirect_to: ::String
|
3828
|
+
attr_accessor redirect_from: ::String
|
3829
|
+
SENSITIVE: []
|
3830
|
+
end
|
3831
|
+
|
3832
|
+
class VerifyDnsConfigurationRequest
|
3833
|
+
attr_accessor domain: ::String
|
3834
|
+
attr_accessor identifier: ::String
|
3835
|
+
SENSITIVE: []
|
3836
|
+
end
|
3837
|
+
|
3838
|
+
class VerifyDnsConfigurationResult
|
3839
|
+
attr_accessor dns_configuration_list: ::Array[Types::DnsConfiguration]
|
3840
|
+
SENSITIVE: []
|
3841
|
+
end
|
3842
|
+
|
3341
3843
|
class ViewerCertificate
|
3342
3844
|
attr_accessor cloud_front_default_certificate: bool
|
3343
3845
|
attr_accessor iam_certificate_id: ::String
|
@@ -3396,5 +3898,11 @@ module Aws::CloudFront
|
|
3396
3898
|
attr_accessor origin_endpoint_arn: ::String
|
3397
3899
|
SENSITIVE: []
|
3398
3900
|
end
|
3901
|
+
|
3902
|
+
class WebAclCustomization
|
3903
|
+
attr_accessor action: ("override" | "disable")
|
3904
|
+
attr_accessor arn: ::String
|
3905
|
+
SENSITIVE: []
|
3906
|
+
end
|
3399
3907
|
end
|
3400
3908
|
end
|