Skip to content

Commit bbe5fc5

Browse files
author
awstools
committed
feat(client-cloudfront): Added new viewer security policy, TLSv1.2_2025, for CloudFront.
1 parent 9ad809e commit bbe5fc5

15 files changed

+26
-19
lines changed

clients/client-cloudfront/src/commands/CopyDistributionCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ export interface CopyDistributionCommandOutput extends CopyDistributionResult, _
371371
* // IAMCertificateId: "STRING_VALUE",
372372
* // ACMCertificateArn: "STRING_VALUE",
373373
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
374-
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
374+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
375375
* // Certificate: "STRING_VALUE",
376376
* // CertificateSource: "cloudfront" || "iam" || "acm",
377377
* // },

clients/client-cloudfront/src/commands/CreateDistributionCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ export interface CreateDistributionCommandOutput extends CreateDistributionResul
326326
* IAMCertificateId: "STRING_VALUE",
327327
* ACMCertificateArn: "STRING_VALUE",
328328
* SSLSupportMethod: "sni-only" || "vip" || "static-ip",
329-
* MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
329+
* MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
330330
* Certificate: "STRING_VALUE",
331331
* CertificateSource: "cloudfront" || "iam" || "acm",
332332
* },
@@ -685,7 +685,7 @@ export interface CreateDistributionCommandOutput extends CreateDistributionResul
685685
* // IAMCertificateId: "STRING_VALUE",
686686
* // ACMCertificateArn: "STRING_VALUE",
687687
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
688-
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
688+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
689689
* // Certificate: "STRING_VALUE",
690690
* // CertificateSource: "cloudfront" || "iam" || "acm",
691691
* // },

clients/client-cloudfront/src/commands/CreateDistributionWithTagsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ export interface CreateDistributionWithTagsCommandOutput extends CreateDistribut
327327
* IAMCertificateId: "STRING_VALUE",
328328
* ACMCertificateArn: "STRING_VALUE",
329329
* SSLSupportMethod: "sni-only" || "vip" || "static-ip",
330-
* MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
330+
* MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
331331
* Certificate: "STRING_VALUE",
332332
* CertificateSource: "cloudfront" || "iam" || "acm",
333333
* },
@@ -695,7 +695,7 @@ export interface CreateDistributionWithTagsCommandOutput extends CreateDistribut
695695
* // IAMCertificateId: "STRING_VALUE",
696696
* // ACMCertificateArn: "STRING_VALUE",
697697
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
698-
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
698+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
699699
* // Certificate: "STRING_VALUE",
700700
* // CertificateSource: "cloudfront" || "iam" || "acm",
701701
* // },

clients/client-cloudfront/src/commands/GetDistributionCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ export interface GetDistributionCommandOutput extends GetDistributionResult, __M
367367
* // IAMCertificateId: "STRING_VALUE",
368368
* // ACMCertificateArn: "STRING_VALUE",
369369
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
370-
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
370+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
371371
* // Certificate: "STRING_VALUE",
372372
* // CertificateSource: "cloudfront" || "iam" || "acm",
373373
* // },

clients/client-cloudfront/src/commands/GetDistributionConfigCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ export interface GetDistributionConfigCommandOutput extends GetDistributionConfi
330330
* // IAMCertificateId: "STRING_VALUE",
331331
* // ACMCertificateArn: "STRING_VALUE",
332332
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
333-
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
333+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
334334
* // Certificate: "STRING_VALUE",
335335
* // CertificateSource: "cloudfront" || "iam" || "acm",
336336
* // },

clients/client-cloudfront/src/commands/ListDistributionsByAnycastIpListIdCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ export interface ListDistributionsByAnycastIpListIdCommandOutput
342342
* // IAMCertificateId: "STRING_VALUE",
343343
* // ACMCertificateArn: "STRING_VALUE",
344344
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
345-
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
345+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
346346
* // Certificate: "STRING_VALUE",
347347
* // CertificateSource: "cloudfront" || "iam" || "acm",
348348
* // },

clients/client-cloudfront/src/commands/ListDistributionsByConnectionModeCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ export interface ListDistributionsByConnectionModeCommandOutput
342342
* // IAMCertificateId: "STRING_VALUE",
343343
* // ACMCertificateArn: "STRING_VALUE",
344344
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
345-
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
345+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
346346
* // Certificate: "STRING_VALUE",
347347
* // CertificateSource: "cloudfront" || "iam" || "acm",
348348
* // },

clients/client-cloudfront/src/commands/ListDistributionsByRealtimeLogConfigCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ export interface ListDistributionsByRealtimeLogConfigCommandOutput
343343
* // IAMCertificateId: "STRING_VALUE",
344344
* // ACMCertificateArn: "STRING_VALUE",
345345
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
346-
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
346+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
347347
* // Certificate: "STRING_VALUE",
348348
* // CertificateSource: "cloudfront" || "iam" || "acm",
349349
* // },

clients/client-cloudfront/src/commands/ListDistributionsByWebACLIdCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ export interface ListDistributionsByWebACLIdCommandOutput extends ListDistributi
337337
* // IAMCertificateId: "STRING_VALUE",
338338
* // ACMCertificateArn: "STRING_VALUE",
339339
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
340-
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
340+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
341341
* // Certificate: "STRING_VALUE",
342342
* // CertificateSource: "cloudfront" || "iam" || "acm",
343343
* // },

clients/client-cloudfront/src/commands/ListDistributionsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ export interface ListDistributionsCommandOutput extends ListDistributionsResult,
336336
* // IAMCertificateId: "STRING_VALUE",
337337
* // ACMCertificateArn: "STRING_VALUE",
338338
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
339-
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025",
339+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
340340
* // Certificate: "STRING_VALUE",
341341
* // CertificateSource: "cloudfront" || "iam" || "acm",
342342
* // },

0 commit comments

Comments
 (0)