aws-sdk-cloudfront 1.128.0 → 1.140.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +60 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +1518 -83
- data/lib/aws-sdk-cloudfront/client_api.rb +680 -0
- data/lib/aws-sdk-cloudfront/customizations.rb +0 -1
- data/lib/aws-sdk-cloudfront/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-cloudfront/signer.rb +14 -20
- data/lib/aws-sdk-cloudfront/types.rb +1225 -9
- data/lib/aws-sdk-cloudfront.rb +1 -1
- data/sig/client.rbs +333 -7
- data/sig/types.rbs +354 -1
- metadata +3 -3
data/sig/types.rbs
CHANGED
|
@@ -51,6 +51,8 @@ module Aws::CloudFront
|
|
|
51
51
|
attr_accessor name: ::String
|
|
52
52
|
attr_accessor status: ::String
|
|
53
53
|
attr_accessor arn: ::String
|
|
54
|
+
attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
|
|
55
|
+
attr_accessor ipam_config: Types::IpamConfig
|
|
54
56
|
attr_accessor anycast_ips: ::Array[::String]
|
|
55
57
|
attr_accessor ip_count: ::Integer
|
|
56
58
|
attr_accessor last_modified_time: ::Time
|
|
@@ -74,6 +76,9 @@ module Aws::CloudFront
|
|
|
74
76
|
attr_accessor arn: ::String
|
|
75
77
|
attr_accessor ip_count: ::Integer
|
|
76
78
|
attr_accessor last_modified_time: ::Time
|
|
79
|
+
attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
|
|
80
|
+
attr_accessor etag: ::String
|
|
81
|
+
attr_accessor ipam_config: Types::IpamConfig
|
|
77
82
|
SENSITIVE: []
|
|
78
83
|
end
|
|
79
84
|
|
|
@@ -121,6 +126,25 @@ module Aws::CloudFront
|
|
|
121
126
|
SENSITIVE: []
|
|
122
127
|
end
|
|
123
128
|
|
|
129
|
+
class CaCertificatesBundleS3Location
|
|
130
|
+
attr_accessor bucket: ::String
|
|
131
|
+
attr_accessor key: ::String
|
|
132
|
+
attr_accessor region: ::String
|
|
133
|
+
attr_accessor version: ::String
|
|
134
|
+
SENSITIVE: []
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
class CaCertificatesBundleSource
|
|
138
|
+
attr_accessor ca_certificates_bundle_s3_location: Types::CaCertificatesBundleS3Location
|
|
139
|
+
attr_accessor unknown: untyped
|
|
140
|
+
SENSITIVE: []
|
|
141
|
+
|
|
142
|
+
class CaCertificatesBundleS3Location < CaCertificatesBundleSource
|
|
143
|
+
end
|
|
144
|
+
class Unknown < CaCertificatesBundleSource
|
|
145
|
+
end
|
|
146
|
+
end
|
|
147
|
+
|
|
124
148
|
class CacheBehavior
|
|
125
149
|
attr_accessor path_pattern: ::String
|
|
126
150
|
attr_accessor target_origin_id: ::String
|
|
@@ -291,6 +315,32 @@ module Aws::CloudFront
|
|
|
291
315
|
SENSITIVE: []
|
|
292
316
|
end
|
|
293
317
|
|
|
318
|
+
class ConnectionFunctionAssociation
|
|
319
|
+
attr_accessor id: ::String
|
|
320
|
+
SENSITIVE: []
|
|
321
|
+
end
|
|
322
|
+
|
|
323
|
+
class ConnectionFunctionSummary
|
|
324
|
+
attr_accessor name: ::String
|
|
325
|
+
attr_accessor id: ::String
|
|
326
|
+
attr_accessor connection_function_config: Types::FunctionConfig
|
|
327
|
+
attr_accessor connection_function_arn: ::String
|
|
328
|
+
attr_accessor status: ::String
|
|
329
|
+
attr_accessor stage: ("DEVELOPMENT" | "LIVE")
|
|
330
|
+
attr_accessor created_time: ::Time
|
|
331
|
+
attr_accessor last_modified_time: ::Time
|
|
332
|
+
SENSITIVE: []
|
|
333
|
+
end
|
|
334
|
+
|
|
335
|
+
class ConnectionFunctionTestResult
|
|
336
|
+
attr_accessor connection_function_summary: Types::ConnectionFunctionSummary
|
|
337
|
+
attr_accessor compute_utilization: ::String
|
|
338
|
+
attr_accessor connection_function_execution_logs: ::Array[::String]
|
|
339
|
+
attr_accessor connection_function_error_message: ::String
|
|
340
|
+
attr_accessor connection_function_output: ::String
|
|
341
|
+
SENSITIVE: [:connection_function_execution_logs, :connection_function_error_message, :connection_function_output]
|
|
342
|
+
end
|
|
343
|
+
|
|
294
344
|
class ConnectionGroup
|
|
295
345
|
attr_accessor id: ::String
|
|
296
346
|
attr_accessor name: ::String
|
|
@@ -427,6 +477,8 @@ module Aws::CloudFront
|
|
|
427
477
|
attr_accessor name: ::String
|
|
428
478
|
attr_accessor ip_count: ::Integer
|
|
429
479
|
attr_accessor tags: Types::Tags
|
|
480
|
+
attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
|
|
481
|
+
attr_accessor ipam_cidr_configs: ::Array[Types::IpamCidrConfig]
|
|
430
482
|
SENSITIVE: []
|
|
431
483
|
end
|
|
432
484
|
|
|
@@ -460,6 +512,21 @@ module Aws::CloudFront
|
|
|
460
512
|
SENSITIVE: []
|
|
461
513
|
end
|
|
462
514
|
|
|
515
|
+
class CreateConnectionFunctionRequest
|
|
516
|
+
attr_accessor name: ::String
|
|
517
|
+
attr_accessor connection_function_config: Types::FunctionConfig
|
|
518
|
+
attr_accessor connection_function_code: ::String
|
|
519
|
+
attr_accessor tags: Types::Tags
|
|
520
|
+
SENSITIVE: [:connection_function_code]
|
|
521
|
+
end
|
|
522
|
+
|
|
523
|
+
class CreateConnectionFunctionResult
|
|
524
|
+
attr_accessor connection_function_summary: Types::ConnectionFunctionSummary
|
|
525
|
+
attr_accessor location: ::String
|
|
526
|
+
attr_accessor etag: ::String
|
|
527
|
+
SENSITIVE: []
|
|
528
|
+
end
|
|
529
|
+
|
|
463
530
|
class CreateConnectionGroupRequest
|
|
464
531
|
attr_accessor name: ::String
|
|
465
532
|
attr_accessor ipv_6_enabled: bool
|
|
@@ -714,6 +781,19 @@ module Aws::CloudFront
|
|
|
714
781
|
SENSITIVE: []
|
|
715
782
|
end
|
|
716
783
|
|
|
784
|
+
class CreateTrustStoreRequest
|
|
785
|
+
attr_accessor name: ::String
|
|
786
|
+
attr_accessor ca_certificates_bundle_source: Types::CaCertificatesBundleSource
|
|
787
|
+
attr_accessor tags: Types::Tags
|
|
788
|
+
SENSITIVE: []
|
|
789
|
+
end
|
|
790
|
+
|
|
791
|
+
class CreateTrustStoreResult
|
|
792
|
+
attr_accessor trust_store: Types::TrustStore
|
|
793
|
+
attr_accessor etag: ::String
|
|
794
|
+
SENSITIVE: []
|
|
795
|
+
end
|
|
796
|
+
|
|
717
797
|
class CreateVpcOriginRequest
|
|
718
798
|
attr_accessor vpc_origin_endpoint_config: Types::VpcOriginEndpointConfig
|
|
719
799
|
attr_accessor tags: Types::Tags
|
|
@@ -806,6 +886,12 @@ module Aws::CloudFront
|
|
|
806
886
|
SENSITIVE: []
|
|
807
887
|
end
|
|
808
888
|
|
|
889
|
+
class DeleteConnectionFunctionRequest
|
|
890
|
+
attr_accessor id: ::String
|
|
891
|
+
attr_accessor if_match: ::String
|
|
892
|
+
SENSITIVE: []
|
|
893
|
+
end
|
|
894
|
+
|
|
809
895
|
class DeleteConnectionGroupRequest
|
|
810
896
|
attr_accessor id: ::String
|
|
811
897
|
attr_accessor if_match: ::String
|
|
@@ -892,6 +978,11 @@ module Aws::CloudFront
|
|
|
892
978
|
SENSITIVE: []
|
|
893
979
|
end
|
|
894
980
|
|
|
981
|
+
class DeleteResourcePolicyRequest
|
|
982
|
+
attr_accessor resource_arn: ::String
|
|
983
|
+
SENSITIVE: []
|
|
984
|
+
end
|
|
985
|
+
|
|
895
986
|
class DeleteResponseHeadersPolicyRequest
|
|
896
987
|
attr_accessor id: ::String
|
|
897
988
|
attr_accessor if_match: ::String
|
|
@@ -904,6 +995,12 @@ module Aws::CloudFront
|
|
|
904
995
|
SENSITIVE: []
|
|
905
996
|
end
|
|
906
997
|
|
|
998
|
+
class DeleteTrustStoreRequest
|
|
999
|
+
attr_accessor id: ::String
|
|
1000
|
+
attr_accessor if_match: ::String
|
|
1001
|
+
SENSITIVE: []
|
|
1002
|
+
end
|
|
1003
|
+
|
|
907
1004
|
class DeleteVpcOriginRequest
|
|
908
1005
|
attr_accessor id: ::String
|
|
909
1006
|
attr_accessor if_match: ::String
|
|
@@ -916,6 +1013,18 @@ module Aws::CloudFront
|
|
|
916
1013
|
SENSITIVE: []
|
|
917
1014
|
end
|
|
918
1015
|
|
|
1016
|
+
class DescribeConnectionFunctionRequest
|
|
1017
|
+
attr_accessor identifier: ::String
|
|
1018
|
+
attr_accessor stage: ("DEVELOPMENT" | "LIVE")
|
|
1019
|
+
SENSITIVE: []
|
|
1020
|
+
end
|
|
1021
|
+
|
|
1022
|
+
class DescribeConnectionFunctionResult
|
|
1023
|
+
attr_accessor connection_function_summary: Types::ConnectionFunctionSummary
|
|
1024
|
+
attr_accessor etag: ::String
|
|
1025
|
+
SENSITIVE: []
|
|
1026
|
+
end
|
|
1027
|
+
|
|
919
1028
|
class DescribeFunctionRequest
|
|
920
1029
|
attr_accessor name: ::String
|
|
921
1030
|
attr_accessor stage: ("DEVELOPMENT" | "LIVE")
|
|
@@ -1005,6 +1114,8 @@ module Aws::CloudFront
|
|
|
1005
1114
|
attr_accessor anycast_ip_list_id: ::String
|
|
1006
1115
|
attr_accessor tenant_config: Types::TenantConfig
|
|
1007
1116
|
attr_accessor connection_mode: ("direct" | "tenant-only")
|
|
1117
|
+
attr_accessor viewer_mtls_config: Types::ViewerMtlsConfig
|
|
1118
|
+
attr_accessor connection_function_association: Types::ConnectionFunctionAssociation
|
|
1008
1119
|
SENSITIVE: [:comment]
|
|
1009
1120
|
end
|
|
1010
1121
|
|
|
@@ -1024,6 +1135,22 @@ module Aws::CloudFront
|
|
|
1024
1135
|
SENSITIVE: []
|
|
1025
1136
|
end
|
|
1026
1137
|
|
|
1138
|
+
class DistributionIdOwner
|
|
1139
|
+
attr_accessor distribution_id: ::String
|
|
1140
|
+
attr_accessor owner_account_id: ::String
|
|
1141
|
+
SENSITIVE: []
|
|
1142
|
+
end
|
|
1143
|
+
|
|
1144
|
+
class DistributionIdOwnerList
|
|
1145
|
+
attr_accessor marker: ::String
|
|
1146
|
+
attr_accessor next_marker: ::String
|
|
1147
|
+
attr_accessor max_items: ::Integer
|
|
1148
|
+
attr_accessor is_truncated: bool
|
|
1149
|
+
attr_accessor quantity: ::Integer
|
|
1150
|
+
attr_accessor items: ::Array[Types::DistributionIdOwner]
|
|
1151
|
+
SENSITIVE: []
|
|
1152
|
+
end
|
|
1153
|
+
|
|
1027
1154
|
class DistributionList
|
|
1028
1155
|
attr_accessor marker: ::String
|
|
1029
1156
|
attr_accessor next_marker: ::String
|
|
@@ -1070,6 +1197,8 @@ module Aws::CloudFront
|
|
|
1070
1197
|
attr_accessor staging: bool
|
|
1071
1198
|
attr_accessor connection_mode: ("direct" | "tenant-only")
|
|
1072
1199
|
attr_accessor anycast_ip_list_id: ::String
|
|
1200
|
+
attr_accessor viewer_mtls_config: Types::ViewerMtlsConfig
|
|
1201
|
+
attr_accessor connection_function_association: Types::ConnectionFunctionAssociation
|
|
1073
1202
|
SENSITIVE: [:comment]
|
|
1074
1203
|
end
|
|
1075
1204
|
|
|
@@ -1406,6 +1535,19 @@ module Aws::CloudFront
|
|
|
1406
1535
|
SENSITIVE: []
|
|
1407
1536
|
end
|
|
1408
1537
|
|
|
1538
|
+
class GetConnectionFunctionRequest
|
|
1539
|
+
attr_accessor identifier: ::String
|
|
1540
|
+
attr_accessor stage: ("DEVELOPMENT" | "LIVE")
|
|
1541
|
+
SENSITIVE: []
|
|
1542
|
+
end
|
|
1543
|
+
|
|
1544
|
+
class GetConnectionFunctionResult
|
|
1545
|
+
attr_accessor connection_function_code: ::String
|
|
1546
|
+
attr_accessor etag: ::String
|
|
1547
|
+
attr_accessor content_type: ::String
|
|
1548
|
+
SENSITIVE: [:connection_function_code]
|
|
1549
|
+
end
|
|
1550
|
+
|
|
1409
1551
|
class GetConnectionGroupByRoutingEndpointRequest
|
|
1410
1552
|
attr_accessor routing_endpoint: ::String
|
|
1411
1553
|
SENSITIVE: []
|
|
@@ -1692,6 +1834,17 @@ module Aws::CloudFront
|
|
|
1692
1834
|
SENSITIVE: []
|
|
1693
1835
|
end
|
|
1694
1836
|
|
|
1837
|
+
class GetResourcePolicyRequest
|
|
1838
|
+
attr_accessor resource_arn: ::String
|
|
1839
|
+
SENSITIVE: []
|
|
1840
|
+
end
|
|
1841
|
+
|
|
1842
|
+
class GetResourcePolicyResult
|
|
1843
|
+
attr_accessor resource_arn: ::String
|
|
1844
|
+
attr_accessor policy_document: ::String
|
|
1845
|
+
SENSITIVE: []
|
|
1846
|
+
end
|
|
1847
|
+
|
|
1695
1848
|
class GetResponseHeadersPolicyConfigRequest
|
|
1696
1849
|
attr_accessor id: ::String
|
|
1697
1850
|
SENSITIVE: []
|
|
@@ -1736,6 +1889,17 @@ module Aws::CloudFront
|
|
|
1736
1889
|
SENSITIVE: []
|
|
1737
1890
|
end
|
|
1738
1891
|
|
|
1892
|
+
class GetTrustStoreRequest
|
|
1893
|
+
attr_accessor identifier: ::String
|
|
1894
|
+
SENSITIVE: []
|
|
1895
|
+
end
|
|
1896
|
+
|
|
1897
|
+
class GetTrustStoreResult
|
|
1898
|
+
attr_accessor trust_store: Types::TrustStore
|
|
1899
|
+
attr_accessor etag: ::String
|
|
1900
|
+
SENSITIVE: []
|
|
1901
|
+
end
|
|
1902
|
+
|
|
1739
1903
|
class GetVpcOriginRequest
|
|
1740
1904
|
attr_accessor id: ::String
|
|
1741
1905
|
SENSITIVE: []
|
|
@@ -1955,6 +2119,20 @@ module Aws::CloudFront
|
|
|
1955
2119
|
SENSITIVE: []
|
|
1956
2120
|
end
|
|
1957
2121
|
|
|
2122
|
+
class IpamCidrConfig
|
|
2123
|
+
attr_accessor cidr: ::String
|
|
2124
|
+
attr_accessor ipam_pool_arn: ::String
|
|
2125
|
+
attr_accessor anycast_ip: ::String
|
|
2126
|
+
attr_accessor status: ("provisioned" | "failed-provision" | "provisioning" | "deprovisioned" | "failed-deprovision" | "deprovisioning" | "advertised" | "failed-advertise" | "advertising" | "withdrawn" | "failed-withdraw" | "withdrawing")
|
|
2127
|
+
SENSITIVE: []
|
|
2128
|
+
end
|
|
2129
|
+
|
|
2130
|
+
class IpamConfig
|
|
2131
|
+
attr_accessor quantity: ::Integer
|
|
2132
|
+
attr_accessor ipam_cidr_configs: ::Array[Types::IpamCidrConfig]
|
|
2133
|
+
SENSITIVE: []
|
|
2134
|
+
end
|
|
2135
|
+
|
|
1958
2136
|
class KGKeyPairIds
|
|
1959
2137
|
attr_accessor key_group_id: ::String
|
|
1960
2138
|
attr_accessor key_pair_ids: Types::KeyPairIds
|
|
@@ -2094,6 +2272,19 @@ module Aws::CloudFront
|
|
|
2094
2272
|
SENSITIVE: []
|
|
2095
2273
|
end
|
|
2096
2274
|
|
|
2275
|
+
class ListConnectionFunctionsRequest
|
|
2276
|
+
attr_accessor marker: ::String
|
|
2277
|
+
attr_accessor max_items: ::Integer
|
|
2278
|
+
attr_accessor stage: ("DEVELOPMENT" | "LIVE")
|
|
2279
|
+
SENSITIVE: []
|
|
2280
|
+
end
|
|
2281
|
+
|
|
2282
|
+
class ListConnectionFunctionsResult
|
|
2283
|
+
attr_accessor next_marker: ::String
|
|
2284
|
+
attr_accessor connection_functions: ::Array[Types::ConnectionFunctionSummary]
|
|
2285
|
+
SENSITIVE: []
|
|
2286
|
+
end
|
|
2287
|
+
|
|
2097
2288
|
class ListConnectionGroupsRequest
|
|
2098
2289
|
attr_accessor association_filter: Types::ConnectionGroupAssociationFilter
|
|
2099
2290
|
attr_accessor marker: ::String
|
|
@@ -2169,6 +2360,18 @@ module Aws::CloudFront
|
|
|
2169
2360
|
SENSITIVE: []
|
|
2170
2361
|
end
|
|
2171
2362
|
|
|
2363
|
+
class ListDistributionsByConnectionFunctionRequest
|
|
2364
|
+
attr_accessor marker: ::String
|
|
2365
|
+
attr_accessor max_items: ::Integer
|
|
2366
|
+
attr_accessor connection_function_identifier: ::String
|
|
2367
|
+
SENSITIVE: []
|
|
2368
|
+
end
|
|
2369
|
+
|
|
2370
|
+
class ListDistributionsByConnectionFunctionResult
|
|
2371
|
+
attr_accessor distribution_list: Types::DistributionList
|
|
2372
|
+
SENSITIVE: []
|
|
2373
|
+
end
|
|
2374
|
+
|
|
2172
2375
|
class ListDistributionsByConnectionModeRequest
|
|
2173
2376
|
attr_accessor marker: ::String
|
|
2174
2377
|
attr_accessor max_items: ::Integer
|
|
@@ -2205,6 +2408,18 @@ module Aws::CloudFront
|
|
|
2205
2408
|
SENSITIVE: []
|
|
2206
2409
|
end
|
|
2207
2410
|
|
|
2411
|
+
class ListDistributionsByOwnedResourceRequest
|
|
2412
|
+
attr_accessor resource_arn: ::String
|
|
2413
|
+
attr_accessor marker: ::String
|
|
2414
|
+
attr_accessor max_items: ::Integer
|
|
2415
|
+
SENSITIVE: []
|
|
2416
|
+
end
|
|
2417
|
+
|
|
2418
|
+
class ListDistributionsByOwnedResourceResult
|
|
2419
|
+
attr_accessor distribution_list: Types::DistributionIdOwnerList
|
|
2420
|
+
SENSITIVE: []
|
|
2421
|
+
end
|
|
2422
|
+
|
|
2208
2423
|
class ListDistributionsByRealtimeLogConfigRequest
|
|
2209
2424
|
attr_accessor marker: ::String
|
|
2210
2425
|
attr_accessor max_items: ::Integer
|
|
@@ -2230,6 +2445,18 @@ module Aws::CloudFront
|
|
|
2230
2445
|
SENSITIVE: []
|
|
2231
2446
|
end
|
|
2232
2447
|
|
|
2448
|
+
class ListDistributionsByTrustStoreRequest
|
|
2449
|
+
attr_accessor trust_store_identifier: ::String
|
|
2450
|
+
attr_accessor marker: ::String
|
|
2451
|
+
attr_accessor max_items: ::Integer
|
|
2452
|
+
SENSITIVE: []
|
|
2453
|
+
end
|
|
2454
|
+
|
|
2455
|
+
class ListDistributionsByTrustStoreResult
|
|
2456
|
+
attr_accessor distribution_list: Types::DistributionList
|
|
2457
|
+
SENSITIVE: []
|
|
2458
|
+
end
|
|
2459
|
+
|
|
2233
2460
|
class ListDistributionsByVpcOriginIdRequest
|
|
2234
2461
|
attr_accessor marker: ::String
|
|
2235
2462
|
attr_accessor max_items: ::Integer
|
|
@@ -2438,6 +2665,18 @@ module Aws::CloudFront
|
|
|
2438
2665
|
SENSITIVE: []
|
|
2439
2666
|
end
|
|
2440
2667
|
|
|
2668
|
+
class ListTrustStoresRequest
|
|
2669
|
+
attr_accessor marker: ::String
|
|
2670
|
+
attr_accessor max_items: ::Integer
|
|
2671
|
+
SENSITIVE: []
|
|
2672
|
+
end
|
|
2673
|
+
|
|
2674
|
+
class ListTrustStoresResult
|
|
2675
|
+
attr_accessor next_marker: ::String
|
|
2676
|
+
attr_accessor trust_store_list: ::Array[Types::TrustStoreSummary]
|
|
2677
|
+
SENSITIVE: []
|
|
2678
|
+
end
|
|
2679
|
+
|
|
2441
2680
|
class ListVpcOriginsRequest
|
|
2442
2681
|
attr_accessor marker: ::String
|
|
2443
2682
|
attr_accessor max_items: ::Integer
|
|
@@ -2824,6 +3063,17 @@ module Aws::CloudFront
|
|
|
2824
3063
|
SENSITIVE: []
|
|
2825
3064
|
end
|
|
2826
3065
|
|
|
3066
|
+
class PublishConnectionFunctionRequest
|
|
3067
|
+
attr_accessor id: ::String
|
|
3068
|
+
attr_accessor if_match: ::String
|
|
3069
|
+
SENSITIVE: []
|
|
3070
|
+
end
|
|
3071
|
+
|
|
3072
|
+
class PublishConnectionFunctionResult
|
|
3073
|
+
attr_accessor connection_function_summary: Types::ConnectionFunctionSummary
|
|
3074
|
+
SENSITIVE: []
|
|
3075
|
+
end
|
|
3076
|
+
|
|
2827
3077
|
class PublishFunctionRequest
|
|
2828
3078
|
attr_accessor name: ::String
|
|
2829
3079
|
attr_accessor if_match: ::String
|
|
@@ -2835,6 +3085,17 @@ module Aws::CloudFront
|
|
|
2835
3085
|
SENSITIVE: []
|
|
2836
3086
|
end
|
|
2837
3087
|
|
|
3088
|
+
class PutResourcePolicyRequest
|
|
3089
|
+
attr_accessor resource_arn: ::String
|
|
3090
|
+
attr_accessor policy_document: ::String
|
|
3091
|
+
SENSITIVE: []
|
|
3092
|
+
end
|
|
3093
|
+
|
|
3094
|
+
class PutResourcePolicyResult
|
|
3095
|
+
attr_accessor resource_arn: ::String
|
|
3096
|
+
SENSITIVE: []
|
|
3097
|
+
end
|
|
3098
|
+
|
|
2838
3099
|
class QueryArgProfile
|
|
2839
3100
|
attr_accessor query_arg: ::String
|
|
2840
3101
|
attr_accessor profile_id: ::String
|
|
@@ -3225,6 +3486,19 @@ module Aws::CloudFront
|
|
|
3225
3486
|
SENSITIVE: []
|
|
3226
3487
|
end
|
|
3227
3488
|
|
|
3489
|
+
class TestConnectionFunctionRequest
|
|
3490
|
+
attr_accessor id: ::String
|
|
3491
|
+
attr_accessor if_match: ::String
|
|
3492
|
+
attr_accessor stage: ("DEVELOPMENT" | "LIVE")
|
|
3493
|
+
attr_accessor connection_object: ::String
|
|
3494
|
+
SENSITIVE: [:connection_object]
|
|
3495
|
+
end
|
|
3496
|
+
|
|
3497
|
+
class TestConnectionFunctionResult
|
|
3498
|
+
attr_accessor connection_function_test_result: Types::ConnectionFunctionTestResult
|
|
3499
|
+
SENSITIVE: []
|
|
3500
|
+
end
|
|
3501
|
+
|
|
3228
3502
|
class TestFunctionFailed
|
|
3229
3503
|
attr_accessor message: ::String
|
|
3230
3504
|
SENSITIVE: []
|
|
@@ -3519,6 +3793,36 @@ module Aws::CloudFront
|
|
|
3519
3793
|
SENSITIVE: []
|
|
3520
3794
|
end
|
|
3521
3795
|
|
|
3796
|
+
class TrustStore
|
|
3797
|
+
attr_accessor id: ::String
|
|
3798
|
+
attr_accessor arn: ::String
|
|
3799
|
+
attr_accessor name: ::String
|
|
3800
|
+
attr_accessor status: ("pending" | "active" | "failed")
|
|
3801
|
+
attr_accessor number_of_ca_certificates: ::Integer
|
|
3802
|
+
attr_accessor last_modified_time: ::Time
|
|
3803
|
+
attr_accessor reason: ::String
|
|
3804
|
+
SENSITIVE: []
|
|
3805
|
+
end
|
|
3806
|
+
|
|
3807
|
+
class TrustStoreConfig
|
|
3808
|
+
attr_accessor trust_store_id: ::String
|
|
3809
|
+
attr_accessor advertise_trust_store_ca_names: bool
|
|
3810
|
+
attr_accessor ignore_certificate_expiry: bool
|
|
3811
|
+
SENSITIVE: []
|
|
3812
|
+
end
|
|
3813
|
+
|
|
3814
|
+
class TrustStoreSummary
|
|
3815
|
+
attr_accessor id: ::String
|
|
3816
|
+
attr_accessor arn: ::String
|
|
3817
|
+
attr_accessor name: ::String
|
|
3818
|
+
attr_accessor status: ("pending" | "active" | "failed")
|
|
3819
|
+
attr_accessor number_of_ca_certificates: ::Integer
|
|
3820
|
+
attr_accessor last_modified_time: ::Time
|
|
3821
|
+
attr_accessor reason: ::String
|
|
3822
|
+
attr_accessor etag: ::String
|
|
3823
|
+
SENSITIVE: []
|
|
3824
|
+
end
|
|
3825
|
+
|
|
3522
3826
|
class TrustedKeyGroupDoesNotExist
|
|
3523
3827
|
attr_accessor message: ::String
|
|
3524
3828
|
SENSITIVE: []
|
|
@@ -3554,6 +3858,19 @@ module Aws::CloudFront
|
|
|
3554
3858
|
SENSITIVE: []
|
|
3555
3859
|
end
|
|
3556
3860
|
|
|
3861
|
+
class UpdateAnycastIpListRequest
|
|
3862
|
+
attr_accessor id: ::String
|
|
3863
|
+
attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
|
|
3864
|
+
attr_accessor if_match: ::String
|
|
3865
|
+
SENSITIVE: []
|
|
3866
|
+
end
|
|
3867
|
+
|
|
3868
|
+
class UpdateAnycastIpListResult
|
|
3869
|
+
attr_accessor anycast_ip_list: Types::AnycastIpList
|
|
3870
|
+
attr_accessor etag: ::String
|
|
3871
|
+
SENSITIVE: []
|
|
3872
|
+
end
|
|
3873
|
+
|
|
3557
3874
|
class UpdateCachePolicyRequest
|
|
3558
3875
|
attr_accessor cache_policy_config: Types::CachePolicyConfig
|
|
3559
3876
|
attr_accessor id: ::String
|
|
@@ -3580,6 +3897,20 @@ module Aws::CloudFront
|
|
|
3580
3897
|
SENSITIVE: []
|
|
3581
3898
|
end
|
|
3582
3899
|
|
|
3900
|
+
class UpdateConnectionFunctionRequest
|
|
3901
|
+
attr_accessor id: ::String
|
|
3902
|
+
attr_accessor if_match: ::String
|
|
3903
|
+
attr_accessor connection_function_config: Types::FunctionConfig
|
|
3904
|
+
attr_accessor connection_function_code: ::String
|
|
3905
|
+
SENSITIVE: [:connection_function_code]
|
|
3906
|
+
end
|
|
3907
|
+
|
|
3908
|
+
class UpdateConnectionFunctionResult
|
|
3909
|
+
attr_accessor connection_function_summary: Types::ConnectionFunctionSummary
|
|
3910
|
+
attr_accessor etag: ::String
|
|
3911
|
+
SENSITIVE: []
|
|
3912
|
+
end
|
|
3913
|
+
|
|
3583
3914
|
class UpdateConnectionGroupRequest
|
|
3584
3915
|
attr_accessor id: ::String
|
|
3585
3916
|
attr_accessor ipv_6_enabled: bool
|
|
@@ -3812,6 +4143,19 @@ module Aws::CloudFront
|
|
|
3812
4143
|
SENSITIVE: []
|
|
3813
4144
|
end
|
|
3814
4145
|
|
|
4146
|
+
class UpdateTrustStoreRequest
|
|
4147
|
+
attr_accessor id: ::String
|
|
4148
|
+
attr_accessor ca_certificates_bundle_source: Types::CaCertificatesBundleSource
|
|
4149
|
+
attr_accessor if_match: ::String
|
|
4150
|
+
SENSITIVE: []
|
|
4151
|
+
end
|
|
4152
|
+
|
|
4153
|
+
class UpdateTrustStoreResult
|
|
4154
|
+
attr_accessor trust_store: Types::TrustStore
|
|
4155
|
+
attr_accessor etag: ::String
|
|
4156
|
+
SENSITIVE: []
|
|
4157
|
+
end
|
|
4158
|
+
|
|
3815
4159
|
class UpdateVpcOriginRequest
|
|
3816
4160
|
attr_accessor vpc_origin_endpoint_config: Types::VpcOriginEndpointConfig
|
|
3817
4161
|
attr_accessor id: ::String
|
|
@@ -3848,15 +4192,22 @@ module Aws::CloudFront
|
|
|
3848
4192
|
attr_accessor iam_certificate_id: ::String
|
|
3849
4193
|
attr_accessor acm_certificate_arn: ::String
|
|
3850
4194
|
attr_accessor ssl_support_method: ("sni-only" | "vip" | "static-ip")
|
|
3851
|
-
attr_accessor minimum_protocol_version: ("SSLv3" | "TLSv1" | "TLSv1_2016" | "TLSv1.1_2016" | "TLSv1.2_2018" | "TLSv1.2_2019" | "TLSv1.2_2021" | "TLSv1.3_2025")
|
|
4195
|
+
attr_accessor minimum_protocol_version: ("SSLv3" | "TLSv1" | "TLSv1_2016" | "TLSv1.1_2016" | "TLSv1.2_2018" | "TLSv1.2_2019" | "TLSv1.2_2021" | "TLSv1.3_2025" | "TLSv1.2_2025")
|
|
3852
4196
|
attr_accessor certificate: ::String
|
|
3853
4197
|
attr_accessor certificate_source: ("cloudfront" | "iam" | "acm")
|
|
3854
4198
|
SENSITIVE: []
|
|
3855
4199
|
end
|
|
3856
4200
|
|
|
4201
|
+
class ViewerMtlsConfig
|
|
4202
|
+
attr_accessor mode: ("required" | "optional")
|
|
4203
|
+
attr_accessor trust_store_config: Types::TrustStoreConfig
|
|
4204
|
+
SENSITIVE: []
|
|
4205
|
+
end
|
|
4206
|
+
|
|
3857
4207
|
class VpcOrigin
|
|
3858
4208
|
attr_accessor id: ::String
|
|
3859
4209
|
attr_accessor arn: ::String
|
|
4210
|
+
attr_accessor account_id: ::String
|
|
3860
4211
|
attr_accessor status: ::String
|
|
3861
4212
|
attr_accessor created_time: ::Time
|
|
3862
4213
|
attr_accessor last_modified_time: ::Time
|
|
@@ -3866,6 +4217,7 @@ module Aws::CloudFront
|
|
|
3866
4217
|
|
|
3867
4218
|
class VpcOriginConfig
|
|
3868
4219
|
attr_accessor vpc_origin_id: ::String
|
|
4220
|
+
attr_accessor owner_account_id: ::String
|
|
3869
4221
|
attr_accessor origin_read_timeout: ::Integer
|
|
3870
4222
|
attr_accessor origin_keepalive_timeout: ::Integer
|
|
3871
4223
|
SENSITIVE: []
|
|
@@ -3898,6 +4250,7 @@ module Aws::CloudFront
|
|
|
3898
4250
|
attr_accessor created_time: ::Time
|
|
3899
4251
|
attr_accessor last_modified_time: ::Time
|
|
3900
4252
|
attr_accessor arn: ::String
|
|
4253
|
+
attr_accessor account_id: ::String
|
|
3901
4254
|
attr_accessor origin_endpoint_arn: ::String
|
|
3902
4255
|
SENSITIVE: []
|
|
3903
4256
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-cloudfront
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.140.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.241.4
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.241.4
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|