@awboost/cfntypes 0.100.189 → 0.100.191
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.
@@ -13935,6 +13935,9 @@ export type AutoScalingAutoScalingGroupProps = {
|
|
13935
13935
|
* Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity Rebalancing is disabled. When you turn on Capacity Rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 notifies that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see [Use Capacity Rebalancing to handle Amazon EC2 Spot Interruptions](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html) in the in the *Amazon EC2 Auto Scaling User Guide*.
|
13936
13936
|
*/
|
13937
13937
|
CapacityRebalance?: boolean;
|
13938
|
+
/**
|
13939
|
+
* The capacity reservation specification.
|
13940
|
+
*/
|
13938
13941
|
CapacityReservationSpecification?: AutoScalingAutoScalingGroupCapacityReservationSpecification;
|
13939
13942
|
/**
|
13940
13943
|
* Reserved.
|
@@ -14078,6 +14081,13 @@ export type AutoScalingAutoScalingGroupProps = {
|
|
14078
14081
|
*/
|
14079
14082
|
VPCZoneIdentifier?: string[];
|
14080
14083
|
};
|
14084
|
+
/**
|
14085
|
+
* Attribute type definition for `AWS::AutoScaling::AutoScalingGroup`.
|
14086
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html#aws-resource-autoscaling-autoscalinggroup-return-values}
|
14087
|
+
*/
|
14088
|
+
export type AutoScalingAutoScalingGroupAttributes = {
|
14089
|
+
AutoScalingGroupARN: string;
|
14090
|
+
};
|
14081
14091
|
/**
|
14082
14092
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.AcceleratorCountRequest`.
|
14083
14093
|
* ``AcceleratorCountRequest`` is a property of the ``InstanceRequirements`` property of the [AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html) property type that describes the minimum and maximum number of accelerators for an instance type.
|
@@ -14153,32 +14163,60 @@ export type AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest = {
|
|
14153
14163
|
};
|
14154
14164
|
/**
|
14155
14165
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.BaselinePerformanceFactorsRequest`.
|
14166
|
+
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Auto Scaling uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application.
|
14167
|
+
Currently, this parameter only supports CPU performance as a baseline performance factor. For example, specifying ``c6i`` uses the CPU performance of the ``c6i`` family as the baseline reference.
|
14156
14168
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-baselineperformancefactorsrequest.html}
|
14157
14169
|
*/
|
14158
14170
|
export type AutoScalingAutoScalingGroupBaselinePerformanceFactorsRequest = {
|
14171
|
+
/**
|
14172
|
+
* The CPU performance to consider, using an instance family as the baseline reference.
|
14173
|
+
*/
|
14159
14174
|
Cpu?: AutoScalingAutoScalingGroupCpuPerformanceFactorRequest;
|
14160
14175
|
};
|
14161
14176
|
/**
|
14162
14177
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.CapacityReservationSpecification`.
|
14178
|
+
* Describes the Capacity Reservation preference and targeting options. If you specify ``open`` or ``none`` for ``CapacityReservationPreference``, do not specify a ``CapacityReservationTarget``.
|
14163
14179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-capacityreservationspecification.html}
|
14164
14180
|
*/
|
14165
14181
|
export type AutoScalingAutoScalingGroupCapacityReservationSpecification = {
|
14182
|
+
/**
|
14183
|
+
* The capacity reservation preference. The following options are available:
|
14184
|
+
+ ``capacity-reservations-only`` - Auto Scaling will only launch instances into a Capacity Reservation or Capacity Reservation resource group. If capacity isn't available, instances will fail to launch.
|
14185
|
+
+ ``capacity-reservations-first`` - Auto Scaling will try to launch instances into a Capacity Reservation or Capacity Reservation resource group first. If capacity isn't available, instances will run in On-Demand capacity.
|
14186
|
+
+ ``none`` - Auto Scaling will not launch instances into a Capacity Reservation. Instances will run in On-Demand capacity.
|
14187
|
+
+ ``default`` - Auto Scaling uses the Capacity Reservation preference from your launch template or an open Capacity Reservation.
|
14188
|
+
*/
|
14166
14189
|
CapacityReservationPreference: string;
|
14190
|
+
/**
|
14191
|
+
* Describes a target Capacity Reservation or Capacity Reservation resource group.
|
14192
|
+
*/
|
14167
14193
|
CapacityReservationTarget?: AutoScalingAutoScalingGroupCapacityReservationTarget;
|
14168
14194
|
};
|
14169
14195
|
/**
|
14170
14196
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.CapacityReservationTarget`.
|
14197
|
+
* The target for the Capacity Reservation. Specify Capacity Reservations IDs or Capacity Reservation resource group ARNs.
|
14171
14198
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-capacityreservationtarget.html}
|
14172
14199
|
*/
|
14173
14200
|
export type AutoScalingAutoScalingGroupCapacityReservationTarget = {
|
14201
|
+
/**
|
14202
|
+
* The Capacity Reservation IDs to launch instances into.
|
14203
|
+
*/
|
14174
14204
|
CapacityReservationIds?: string[];
|
14205
|
+
/**
|
14206
|
+
* The resource group ARNs of the Capacity Reservation to launch instances into.
|
14207
|
+
*/
|
14175
14208
|
CapacityReservationResourceGroupArns?: string[];
|
14176
14209
|
};
|
14177
14210
|
/**
|
14178
14211
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.CpuPerformanceFactorRequest`.
|
14212
|
+
* The CPU performance to consider, using an instance family as the baseline reference.
|
14179
14213
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-cpuperformancefactorrequest.html}
|
14180
14214
|
*/
|
14181
14215
|
export type AutoScalingAutoScalingGroupCpuPerformanceFactorRequest = {
|
14216
|
+
/**
|
14217
|
+
* Specify an instance family to use as the baseline reference for CPU performance. All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
|
14218
|
+
Currently only one instance family can be specified in the list.
|
14219
|
+
*/
|
14182
14220
|
References?: AutoScalingAutoScalingGroupPerformanceFactorReferenceRequest[];
|
14183
14221
|
};
|
14184
14222
|
/**
|
@@ -14274,6 +14312,9 @@ export type AutoScalingAutoScalingGroupInstanceRequirements = {
|
|
14274
14312
|
Default: No minimum or maximum limits
|
14275
14313
|
*/
|
14276
14314
|
BaselineEbsBandwidthMbps?: AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest;
|
14315
|
+
/**
|
14316
|
+
* The baseline performance factors for the instance requirements.
|
14317
|
+
*/
|
14277
14318
|
BaselinePerformanceFactors?: AutoScalingAutoScalingGroupBaselinePerformanceFactorsRequest;
|
14278
14319
|
/**
|
14279
14320
|
* Indicates whether burstable performance instance types are included, excluded, or required. For more information, see [Burstable performance instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html) in the *Amazon EC2 User Guide for Linux Instances*.
|
@@ -14689,9 +14730,27 @@ export type AutoScalingAutoScalingGroupNotificationConfiguration = {
|
|
14689
14730
|
};
|
14690
14731
|
/**
|
14691
14732
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.PerformanceFactorReferenceRequest`.
|
14733
|
+
* Specify an instance family to use as the baseline reference for CPU performance. All instance types that All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
|
14734
|
+
Currently only one instance family can be specified in the list.
|
14692
14735
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-performancefactorreferencerequest.html}
|
14693
14736
|
*/
|
14694
14737
|
export type AutoScalingAutoScalingGroupPerformanceFactorReferenceRequest = {
|
14738
|
+
/**
|
14739
|
+
* The instance family to use as a baseline reference.
|
14740
|
+
Make sure that you specify the correct value for the instance family. The instance family is everything before the period (.) in the instance type name. For example, in the instance ``c6i.large``, the instance family is ``c6i``, not ``c6``. For more information, see [Amazon EC2 instance type naming conventions](https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html) in *Amazon EC2 Instance Types*.
|
14741
|
+
The following instance types are *not supported* for performance protection.
|
14742
|
+
+ ``c1``
|
14743
|
+
+ ``g3| g3s``
|
14744
|
+
+ ``hpc7g``
|
14745
|
+
+ ``m1| m2``
|
14746
|
+
+ ``mac1 | mac2 | mac2-m1ultra | mac2-m2 | mac2-m2pro``
|
14747
|
+
+ ``p3dn | p4d | p5``
|
14748
|
+
+ ``t1``
|
14749
|
+
+ ``u-12tb1 | u-18tb1 | u-24tb1 | u-3tb1 | u-6tb1 | u-9tb1 | u7i-12tb | u7in-16tb | u7in-24tb | u7in-32tb``
|
14750
|
+
|
14751
|
+
If you performance protection by specifying a supported instance family, the returned instance types will exclude the preceding unsupported instance families.
|
14752
|
+
If you specify an unsupported instance family as a value for baseline performance, the API returns an empty response.
|
14753
|
+
*/
|
14695
14754
|
InstanceFamily?: string;
|
14696
14755
|
};
|
14697
14756
|
/**
|
@@ -28572,10 +28631,10 @@ export type CloudFrontCachePolicyCachePolicyConfig = {
|
|
28572
28631
|
export type CloudFrontCachePolicyCookiesConfig = {
|
28573
28632
|
/**
|
28574
28633
|
* Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
|
28575
|
-
+
|
28576
|
-
+
|
28577
|
-
+
|
28578
|
-
+
|
28634
|
+
+ ``none`` – No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any cookies that are listed in an ``OriginRequestPolicy``*are* included in origin requests.
|
28635
|
+
+ ``whitelist`` – Only the cookies in viewer requests that are listed in the ``CookieNames`` type are included in the cache key and in requests that CloudFront sends to the origin.
|
28636
|
+
+ ``allExcept`` – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, *except* for those that are listed in the ``CookieNames`` type, which are not included.
|
28637
|
+
+ ``all`` – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
|
28579
28638
|
* @pattern `^(none|whitelist|allExcept|all)$`
|
28580
28639
|
*/
|
28581
28640
|
CookieBehavior: string;
|
@@ -28592,8 +28651,8 @@ export type CloudFrontCachePolicyCookiesConfig = {
|
|
28592
28651
|
export type CloudFrontCachePolicyHeadersConfig = {
|
28593
28652
|
/**
|
28594
28653
|
* Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
|
28595
|
-
+
|
28596
|
-
+
|
28654
|
+
+ ``none`` – No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any headers that are listed in an ``OriginRequestPolicy``*are* included in origin requests.
|
28655
|
+
+ ``whitelist`` – Only the HTTP headers that are listed in the ``Headers`` type are included in the cache key and in requests that CloudFront sends to the origin.
|
28597
28656
|
* @pattern `^(none|whitelist)$`
|
28598
28657
|
*/
|
28599
28658
|
HeaderBehavior: string;
|
@@ -28615,7 +28674,7 @@ export type CloudFrontCachePolicyParametersInCacheKeyAndForwardedToOrigin = {
|
|
28615
28674
|
CookiesConfig: CloudFrontCachePolicyCookiesConfig;
|
28616
28675
|
/**
|
28617
28676
|
* A flag that can affect whether the ``Accept-Encoding`` HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.
|
28618
|
-
This field is related to the ``EnableAcceptEncodingGzip`` field. If one or both of these fields is ``true
|
28677
|
+
This field is related to the ``EnableAcceptEncodingGzip`` field. If one or both of these fields is ``true``*and* the viewer request includes the ``Accept-Encoding`` header, then CloudFront does the following:
|
28619
28678
|
+ Normalizes the value of the viewer's ``Accept-Encoding`` header
|
28620
28679
|
+ Includes the normalized header in the cache key
|
28621
28680
|
+ Includes the normalized header in the request to the origin, if a request is necessary
|
@@ -28627,7 +28686,7 @@ export type CloudFrontCachePolicyParametersInCacheKeyAndForwardedToOrigin = {
|
|
28627
28686
|
EnableAcceptEncodingBrotli?: boolean;
|
28628
28687
|
/**
|
28629
28688
|
* A flag that can affect whether the ``Accept-Encoding`` HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.
|
28630
|
-
This field is related to the ``EnableAcceptEncodingBrotli`` field. If one or both of these fields is ``true
|
28689
|
+
This field is related to the ``EnableAcceptEncodingBrotli`` field. If one or both of these fields is ``true``*and* the viewer request includes the ``Accept-Encoding`` header, then CloudFront does the following:
|
28631
28690
|
+ Normalizes the value of the viewer's ``Accept-Encoding`` header
|
28632
28691
|
+ Includes the normalized header in the cache key
|
28633
28692
|
+ Includes the normalized header in the request to the origin, if a request is necessary
|
@@ -28654,10 +28713,10 @@ export type CloudFrontCachePolicyParametersInCacheKeyAndForwardedToOrigin = {
|
|
28654
28713
|
export type CloudFrontCachePolicyQueryStringsConfig = {
|
28655
28714
|
/**
|
28656
28715
|
* Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
|
28657
|
-
+
|
28658
|
-
+
|
28659
|
-
+
|
28660
|
-
+
|
28716
|
+
+ ``none`` – No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any query strings that are listed in an ``OriginRequestPolicy``*are* included in origin requests.
|
28717
|
+
+ ``whitelist`` – Only the query strings in viewer requests that are listed in the ``QueryStringNames`` type are included in the cache key and in requests that CloudFront sends to the origin.
|
28718
|
+
+ ``allExcept`` – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, *except* those that are listed in the ``QueryStringNames`` type, which are not included.
|
28719
|
+
+ ``all`` – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
|
28661
28720
|
* @pattern `^(none|whitelist|allExcept|all)$`
|
28662
28721
|
*/
|
28663
28722
|
QueryStringBehavior: string;
|
@@ -28697,14 +28756,30 @@ export type CloudFrontCloudFrontOriginAccessIdentityCloudFrontOriginAccessIdenti
|
|
28697
28756
|
Comment: string;
|
28698
28757
|
};
|
28699
28758
|
/**
|
28700
|
-
* Resource
|
28759
|
+
* Resource type definition for `AWS::CloudFront::ConnectionGroup`.
|
28760
|
+
* The connection group for your distribution tenants. When you first create a distribution tenant and you don't specify a connection group, CloudFront will automatically create a default connection group for you. When you create a new distribution tenant and don't specify a connection group, the default one will be associated with your distribution tenant.
|
28701
28761
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html}
|
28702
28762
|
*/
|
28703
28763
|
export type CloudFrontConnectionGroupProps = {
|
28764
|
+
/**
|
28765
|
+
* The ID of the Anycast static IP list.
|
28766
|
+
*/
|
28704
28767
|
AnycastIpListId?: string;
|
28768
|
+
/**
|
28769
|
+
* Whether the connection group is enabled.
|
28770
|
+
*/
|
28705
28771
|
Enabled?: boolean;
|
28772
|
+
/**
|
28773
|
+
* IPv6 is enabled for the connection group.
|
28774
|
+
*/
|
28706
28775
|
Ipv6Enabled?: boolean;
|
28776
|
+
/**
|
28777
|
+
* The name of the connection group.
|
28778
|
+
*/
|
28707
28779
|
Name: string;
|
28780
|
+
/**
|
28781
|
+
* A complex type that contains zero or more ``Tag`` elements.
|
28782
|
+
*/
|
28708
28783
|
Tags?: CloudFrontConnectionGroupTag[];
|
28709
28784
|
};
|
28710
28785
|
/**
|
@@ -28723,10 +28798,19 @@ export type CloudFrontConnectionGroupAttributes = {
|
|
28723
28798
|
};
|
28724
28799
|
/**
|
28725
28800
|
* Type definition for `AWS::CloudFront::ConnectionGroup.Tag`.
|
28801
|
+
* A complex type that contains ``Tag`` key and ``Tag`` value.
|
28726
28802
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectiongroup-tag.html}
|
28727
28803
|
*/
|
28728
28804
|
export type CloudFrontConnectionGroupTag = {
|
28805
|
+
/**
|
28806
|
+
* A string that contains ``Tag`` key.
|
28807
|
+
The string length should be between 1 and 128 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``.
|
28808
|
+
*/
|
28729
28809
|
Key: string;
|
28810
|
+
/**
|
28811
|
+
* A string that contains an optional ``Tag`` value.
|
28812
|
+
The string length should be between 0 and 256 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``.
|
28813
|
+
*/
|
28730
28814
|
Value: string;
|
28731
28815
|
};
|
28732
28816
|
/**
|
@@ -29018,9 +29102,9 @@ export type CloudFrontDistributionCacheBehavior = {
|
|
29018
29102
|
TrustedSigners?: string[];
|
29019
29103
|
/**
|
29020
29104
|
* The protocol that viewers can use to access the files in the origin specified by ``TargetOriginId`` when a request matches the path pattern in ``PathPattern``. You can specify the following options:
|
29021
|
-
+
|
29022
|
-
+
|
29023
|
-
+
|
29105
|
+
+ ``allow-all``: Viewers can use HTTP or HTTPS.
|
29106
|
+
+ ``redirect-to-https``: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.
|
29107
|
+
+ ``https-only``: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).
|
29024
29108
|
|
29025
29109
|
For more information about requiring the HTTPS protocol, see [Requiring HTTPS Between Viewers and CloudFront](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-https-viewers-to-cloudfront.html) in the *Amazon CloudFront Developer Guide*.
|
29026
29110
|
The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see [Managing Cache Expiration](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html) in the *Amazon CloudFront Developer Guide*.
|
@@ -29099,7 +29183,7 @@ export type CloudFrontDistributionCustomErrorResponse = {
|
|
29099
29183
|
};
|
29100
29184
|
/**
|
29101
29185
|
* Type definition for `AWS::CloudFront::Distribution.CustomOriginConfig`.
|
29102
|
-
* A custom origin. A custom origin is any origin that is *not* an Amazon S3 bucket, with one exception. An Amazon S3 bucket that is [configured with static website hosting](https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html)
|
29186
|
+
* A custom origin. A custom origin is any origin that is *not* an Amazon S3 bucket, with one exception. An Amazon S3 bucket that is [configured with static website hosting](https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html)*is* a custom origin.
|
29103
29187
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html}
|
29104
29188
|
*/
|
29105
29189
|
export type CloudFrontDistributionCustomOriginConfig = {
|
@@ -29118,9 +29202,9 @@ export type CloudFrontDistributionCustomOriginConfig = {
|
|
29118
29202
|
OriginKeepaliveTimeout?: number;
|
29119
29203
|
/**
|
29120
29204
|
* Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:
|
29121
|
-
+
|
29122
|
-
+
|
29123
|
-
+
|
29205
|
+
+ ``http-only`` – CloudFront always uses HTTP to connect to the origin.
|
29206
|
+
+ ``match-viewer`` – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.
|
29207
|
+
+ ``https-only`` – CloudFront always uses HTTPS to connect to the origin.
|
29124
29208
|
*/
|
29125
29209
|
OriginProtocolPolicy: string;
|
29126
29210
|
/**
|
@@ -29239,9 +29323,9 @@ export type CloudFrontDistributionDefaultCacheBehavior = {
|
|
29239
29323
|
TrustedSigners?: string[];
|
29240
29324
|
/**
|
29241
29325
|
* The protocol that viewers can use to access the files in the origin specified by ``TargetOriginId`` when a request matches the path pattern in ``PathPattern``. You can specify the following options:
|
29242
|
-
+
|
29243
|
-
+
|
29244
|
-
+
|
29326
|
+
+ ``allow-all``: Viewers can use HTTP or HTTPS.
|
29327
|
+
+ ``redirect-to-https``: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.
|
29328
|
+
+ ``https-only``: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).
|
29245
29329
|
|
29246
29330
|
For more information about requiring the HTTPS protocol, see [Requiring HTTPS Between Viewers and CloudFront](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-https-viewers-to-cloudfront.html) in the *Amazon CloudFront Developer Guide*.
|
29247
29331
|
The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see [Managing Cache Expiration](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html) in the *Amazon CloudFront Developer Guide*.
|
@@ -29275,6 +29359,9 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
29275
29359
|
* A comment to describe the distribution. The comment cannot be longer than 128 characters.
|
29276
29360
|
*/
|
29277
29361
|
Comment?: string;
|
29362
|
+
/**
|
29363
|
+
* The connection mode to filter distributions by.
|
29364
|
+
*/
|
29278
29365
|
ConnectionMode?: CloudFrontDistributionConnectionMode;
|
29279
29366
|
/**
|
29280
29367
|
* The identifier of a continuous deployment policy. For more information, see ``CreateContinuousDeploymentPolicy``.
|
@@ -29361,6 +29448,9 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
29361
29448
|
* A Boolean that indicates whether this is a staging distribution. When this value is ``true``, this is a staging distribution. When this value is ``false``, this is not a staging distribution.
|
29362
29449
|
*/
|
29363
29450
|
Staging?: boolean;
|
29451
|
+
/**
|
29452
|
+
* A distribution tenant configuration.
|
29453
|
+
*/
|
29364
29454
|
TenantConfig?: {
|
29365
29455
|
ParameterDefinitions?: CloudFrontDistributionParameterDefinition[];
|
29366
29456
|
};
|
@@ -29370,7 +29460,7 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
29370
29460
|
ViewerCertificate?: CloudFrontDistributionViewerCertificate;
|
29371
29461
|
/**
|
29372
29462
|
* A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example ``arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111``. To specify a web ACL created using WAF Classic, use the ACL ID, for example ``a1b2c3d4-5678-90ab-cdef-EXAMPLE11111``.
|
29373
|
-
|
29463
|
+
WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the [Developer Guide](https://docs.aws.amazon.com/waf/latest/developerguide/what-is-aws-waf.html).
|
29374
29464
|
*/
|
29375
29465
|
WebACLId?: string;
|
29376
29466
|
};
|
@@ -29446,9 +29536,9 @@ export type CloudFrontDistributionGeoRestriction = {
|
|
29446
29536
|
Locations?: string[];
|
29447
29537
|
/**
|
29448
29538
|
* The method that you want to use to restrict distribution of your content by country:
|
29449
|
-
+
|
29450
|
-
+
|
29451
|
-
+
|
29539
|
+
+ ``none``: No geo restriction is enabled, meaning access to content is not restricted by client geo location.
|
29540
|
+
+ ``blacklist``: The ``Location`` elements specify the countries in which you don't want CloudFront to distribute your content.
|
29541
|
+
+ ``whitelist``: The ``Location`` elements specify the countries in which you want CloudFront to distribute your content.
|
29452
29542
|
*/
|
29453
29543
|
RestrictionType: string;
|
29454
29544
|
};
|
@@ -29473,10 +29563,10 @@ export type CloudFrontDistributionGrpcConfig = {
|
|
29473
29563
|
export type CloudFrontDistributionLambdaFunctionAssociation = {
|
29474
29564
|
/**
|
29475
29565
|
* Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:
|
29476
|
-
+
|
29477
|
-
+
|
29478
|
-
+
|
29479
|
-
+
|
29566
|
+
+ ``viewer-request``: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.
|
29567
|
+
+ ``origin-request``: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.
|
29568
|
+
+ ``origin-response``: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.
|
29569
|
+
+ ``viewer-response``: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.
|
29480
29570
|
If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.
|
29481
29571
|
*/
|
29482
29572
|
EventType?: string;
|
@@ -29491,7 +29581,7 @@ export type CloudFrontDistributionLambdaFunctionAssociation = {
|
|
29491
29581
|
};
|
29492
29582
|
/**
|
29493
29583
|
* Type definition for `AWS::CloudFront::Distribution.LegacyCustomOrigin`.
|
29494
|
-
* A custom origin. A custom origin is any origin that is *not* an S3 bucket, with one exception. An S3 bucket that is [configured with static website hosting](https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html)
|
29584
|
+
* A custom origin. A custom origin is any origin that is *not* an S3 bucket, with one exception. An S3 bucket that is [configured with static website hosting](https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html)*is* a custom origin.
|
29495
29585
|
This property is legacy. We recommend that you use [Origin](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html) instead.
|
29496
29586
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-legacycustomorigin.html}
|
29497
29587
|
*/
|
@@ -29744,9 +29834,13 @@ export type CloudFrontDistributionOriginShield = {
|
|
29744
29834
|
};
|
29745
29835
|
/**
|
29746
29836
|
* Type definition for `AWS::CloudFront::Distribution.ParameterDefinition`.
|
29837
|
+
* A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
|
29747
29838
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-parameterdefinition.html}
|
29748
29839
|
*/
|
29749
29840
|
export type CloudFrontDistributionParameterDefinition = {
|
29841
|
+
/**
|
29842
|
+
* The value that you assigned to the parameter.
|
29843
|
+
*/
|
29750
29844
|
Definition: {
|
29751
29845
|
StringSchema?: {
|
29752
29846
|
Comment?: string;
|
@@ -29754,6 +29848,9 @@ export type CloudFrontDistributionParameterDefinition = {
|
|
29754
29848
|
Required: boolean;
|
29755
29849
|
};
|
29756
29850
|
};
|
29851
|
+
/**
|
29852
|
+
* The name of the parameter.
|
29853
|
+
*/
|
29757
29854
|
Name: string;
|
29758
29855
|
};
|
29759
29856
|
/**
|
@@ -29828,8 +29925,8 @@ export type CloudFrontDistributionTag = {
|
|
29828
29925
|
|
29829
29926
|
+ The minimum SSL/TLS protocol version that the distribution can use to communicate with viewers. To specify a minimum version, choose a value for ``MinimumProtocolVersion``. For more information, see [Security Policy](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValues-security-policy) in the *Amazon CloudFront Developer Guide*.
|
29830
29927
|
+ The location of the SSL/TLS certificate, [(ACM)](https://docs.aws.amazon.com/acm/latest/userguide/acm-overview.html) (recommended) or [(IAM)](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html). You specify the location by setting a value in one of the following fields (not both):
|
29831
|
-
+
|
29832
|
-
+
|
29928
|
+
+ ``ACMCertificateArn`` (In CloudFormation, this field name is ``AcmCertificateArn``. Note the different capitalization.)
|
29929
|
+
+ ``IAMCertificateId`` (In CloudFormation, this field name is ``IamCertificateId``. Note the different capitalization.)
|
29833
29930
|
|
29834
29931
|
|
29835
29932
|
All distributions support HTTPS connections from viewers. To require viewers to use HTTPS only, or to redirect them from HTTP to HTTPS, use ``ViewerProtocolPolicy`` in the ``CacheBehavior`` or ``DefaultCacheBehavior``. To specify how CloudFront should use SSL/TLS to communicate with your custom origin, use ``CustomOriginConfig``.
|
@@ -29846,7 +29943,7 @@ export type CloudFrontDistributionViewerCertificate = {
|
|
29846
29943
|
/**
|
29847
29944
|
* If the distribution uses the CloudFront domain name such as ``d111111abcdef8.cloudfront.net``, set this field to ``true``.
|
29848
29945
|
If the distribution uses ``Aliases`` (alternate domain names or CNAMEs), omit this field and specify values for the following fields:
|
29849
|
-
+
|
29946
|
+
+ ``AcmCertificateArn`` or ``IamCertificateId`` (specify a value for one, not both)
|
29850
29947
|
+ ``MinimumProtocolVersion``
|
29851
29948
|
+ ``SslSupportMethod``
|
29852
29949
|
*/
|
@@ -29871,9 +29968,9 @@ export type CloudFrontDistributionViewerCertificate = {
|
|
29871
29968
|
/**
|
29872
29969
|
* In CloudFormation, this field name is ``SslSupportMethod``. Note the different capitalization.
|
29873
29970
|
If the distribution uses ``Aliases`` (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.
|
29874
|
-
+
|
29875
|
-
+
|
29876
|
-
+
|
29971
|
+
+ ``sni-only`` – The distribution accepts HTTPS connections from only viewers that support [server name indication (SNI)](https://docs.aws.amazon.com/https://en.wikipedia.org/wiki/Server_Name_Indication). This is recommended. Most browsers and clients support SNI.
|
29972
|
+
+ ``vip`` – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.
|
29973
|
+
+ ``static-ip`` - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the [Center](https://docs.aws.amazon.com/support/home).
|
29877
29974
|
|
29878
29975
|
If the distribution uses the CloudFront domain name such as ``d111111abcdef8.cloudfront.net``, don't set a value for this field.
|
29879
29976
|
*/
|
@@ -29901,18 +29998,46 @@ export type CloudFrontDistributionVpcOriginConfig = {
|
|
29901
29998
|
VpcOriginId: string;
|
29902
29999
|
};
|
29903
30000
|
/**
|
29904
|
-
* Resource
|
30001
|
+
* Resource type definition for `AWS::CloudFront::DistributionTenant`.
|
30002
|
+
* The distribution tenant.
|
29905
30003
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html}
|
29906
30004
|
*/
|
29907
30005
|
export type CloudFrontDistributionTenantProps = {
|
30006
|
+
/**
|
30007
|
+
* The ID of the connection group for the distribution tenant. If you don't specify a connection group, CloudFront uses the default connection group.
|
30008
|
+
*/
|
29908
30009
|
ConnectionGroupId?: string;
|
30010
|
+
/**
|
30011
|
+
* Customizations for the distribution tenant. For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.
|
30012
|
+
*/
|
29909
30013
|
Customizations?: CloudFrontDistributionTenantCustomizations;
|
30014
|
+
/**
|
30015
|
+
* The ID of the multi-tenant distribution.
|
30016
|
+
*/
|
29910
30017
|
DistributionId: string;
|
30018
|
+
/**
|
30019
|
+
* The domains associated with the distribution tenant.
|
30020
|
+
*/
|
29911
30021
|
Domains: string[];
|
30022
|
+
/**
|
30023
|
+
* Indicates whether the distribution tenant is in an enabled state. If disabled, the distribution tenant won't serve traffic.
|
30024
|
+
*/
|
29912
30025
|
Enabled?: boolean;
|
30026
|
+
/**
|
30027
|
+
* An object that represents the request for the Amazon CloudFront managed ACM certificate.
|
30028
|
+
*/
|
29913
30029
|
ManagedCertificateRequest?: CloudFrontDistributionTenantManagedCertificateRequest;
|
30030
|
+
/**
|
30031
|
+
* The name of the distribution tenant.
|
30032
|
+
*/
|
29914
30033
|
Name: string;
|
30034
|
+
/**
|
30035
|
+
* A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
|
30036
|
+
*/
|
29915
30037
|
Parameters?: CloudFrontDistributionTenantParameter[];
|
30038
|
+
/**
|
30039
|
+
* A complex type that contains zero or more ``Tag`` elements.
|
30040
|
+
*/
|
29916
30041
|
Tags?: CloudFrontDistributionTenantTag[];
|
29917
30042
|
};
|
29918
30043
|
/**
|
@@ -29923,7 +30048,13 @@ export type CloudFrontDistributionTenantAttributes = {
|
|
29923
30048
|
Arn: string;
|
29924
30049
|
CreatedTime: string;
|
29925
30050
|
DomainResults: {
|
30051
|
+
/**
|
30052
|
+
* The specified domain.
|
30053
|
+
*/
|
29926
30054
|
Domain: string;
|
30055
|
+
/**
|
30056
|
+
* Whether the domain is active or inactive.
|
30057
|
+
*/
|
29927
30058
|
Status: "active" | "inactive";
|
29928
30059
|
}[];
|
29929
30060
|
ETag: string;
|
@@ -29933,67 +30064,133 @@ export type CloudFrontDistributionTenantAttributes = {
|
|
29933
30064
|
};
|
29934
30065
|
/**
|
29935
30066
|
* Type definition for `AWS::CloudFront::DistributionTenant.Certificate`.
|
30067
|
+
* The ACMlong (ACM) certificate associated with your distribution.
|
29936
30068
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-certificate.html}
|
29937
30069
|
*/
|
29938
30070
|
export type CloudFrontDistributionTenantCertificate = {
|
30071
|
+
/**
|
30072
|
+
* The Amazon Resource Name (ARN) of the ACM certificate.
|
30073
|
+
*/
|
29939
30074
|
Arn?: string;
|
29940
30075
|
};
|
29941
30076
|
/**
|
29942
30077
|
* Type definition for `AWS::CloudFront::DistributionTenant.Customizations`.
|
30078
|
+
* Customizations for the distribution tenant. For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.
|
29943
30079
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-customizations.html}
|
29944
30080
|
*/
|
29945
30081
|
export type CloudFrontDistributionTenantCustomizations = {
|
30082
|
+
/**
|
30083
|
+
* The ACMlong (ACM) certificate.
|
30084
|
+
*/
|
29946
30085
|
Certificate?: CloudFrontDistributionTenantCertificate;
|
30086
|
+
/**
|
30087
|
+
* The geographic restrictions.
|
30088
|
+
*/
|
29947
30089
|
GeoRestrictions?: CloudFrontDistributionTenantGeoRestrictionCustomization;
|
30090
|
+
/**
|
30091
|
+
* The WAF web ACL.
|
30092
|
+
*/
|
29948
30093
|
WebAcl?: CloudFrontDistributionTenantWebAclCustomization;
|
29949
30094
|
};
|
29950
30095
|
/**
|
29951
30096
|
* Type definition for `AWS::CloudFront::DistributionTenant.DomainResult`.
|
30097
|
+
* The details about the domain result.
|
29952
30098
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-domainresult.html}
|
29953
30099
|
*/
|
29954
30100
|
export type CloudFrontDistributionTenantDomainResult = {
|
30101
|
+
/**
|
30102
|
+
* The specified domain.
|
30103
|
+
*/
|
29955
30104
|
Domain?: string;
|
30105
|
+
/**
|
30106
|
+
* Whether the domain is active or inactive.
|
30107
|
+
*/
|
29956
30108
|
Status?: "active" | "inactive";
|
29957
30109
|
};
|
29958
30110
|
/**
|
29959
30111
|
* Type definition for `AWS::CloudFront::DistributionTenant.GeoRestrictionCustomization`.
|
30112
|
+
* The customizations that you specified for the distribution tenant for geographic restrictions.
|
29960
30113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-georestrictioncustomization.html}
|
29961
30114
|
*/
|
29962
30115
|
export type CloudFrontDistributionTenantGeoRestrictionCustomization = {
|
30116
|
+
/**
|
30117
|
+
* The locations for geographic restrictions.
|
30118
|
+
*/
|
29963
30119
|
Locations?: string[];
|
30120
|
+
/**
|
30121
|
+
* The method that you want to use to restrict distribution of your content by country:
|
30122
|
+
+ ``none``: No geographic restriction is enabled, meaning access to content is not restricted by client geo location.
|
30123
|
+
+ ``blacklist``: The ``Location`` elements specify the countries in which you don't want CloudFront to distribute your content.
|
30124
|
+
+ ``whitelist``: The ``Location`` elements specify the countries in which you want CloudFront to distribute your content.
|
30125
|
+
*/
|
29964
30126
|
RestrictionType?: "blacklist" | "whitelist" | "none";
|
29965
30127
|
};
|
29966
30128
|
/**
|
29967
30129
|
* Type definition for `AWS::CloudFront::DistributionTenant.ManagedCertificateRequest`.
|
30130
|
+
* An object that represents the request for the Amazon CloudFront managed ACM certificate.
|
29968
30131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-managedcertificaterequest.html}
|
29969
30132
|
*/
|
29970
30133
|
export type CloudFrontDistributionTenantManagedCertificateRequest = {
|
30134
|
+
/**
|
30135
|
+
* You can opt out of certificate transparency logging by specifying the ``disabled`` option. Opt in by specifying ``enabled``. For more information, see [Certificate Transparency Logging](https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency) in the *User Guide*.
|
30136
|
+
*/
|
29971
30137
|
CertificateTransparencyLoggingPreference?: "enabled" | "disabled";
|
30138
|
+
/**
|
30139
|
+
* The primary domain name associated with the CloudFront managed ACM certificate.
|
30140
|
+
*/
|
29972
30141
|
PrimaryDomainName?: string;
|
30142
|
+
/**
|
30143
|
+
* Specify how the HTTP validation token will be served when requesting the CloudFront managed ACM certificate.
|
30144
|
+
+ For ``cloudfront``, CloudFront will automatically serve the validation token. Choose this mode if you can point the domain's DNS to CloudFront immediately.
|
30145
|
+
+ For ``self-hosted``, you serve the validation token from your existing infrastructure. Choose this mode when you need to maintain current traffic flow while your certificate is being issued. You can place the validation token at the well-known path on your existing web server, wait for ACM to validate and issue the certificate, and then update your DNS to point to CloudFront.
|
30146
|
+
*/
|
29973
30147
|
ValidationTokenHost?: "cloudfront" | "self-hosted";
|
29974
30148
|
};
|
29975
30149
|
/**
|
29976
30150
|
* Type definition for `AWS::CloudFront::DistributionTenant.Parameter`.
|
30151
|
+
* A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
|
29977
30152
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-parameter.html}
|
29978
30153
|
*/
|
29979
30154
|
export type CloudFrontDistributionTenantParameter = {
|
30155
|
+
/**
|
30156
|
+
* The parameter name.
|
30157
|
+
*/
|
29980
30158
|
Name?: string;
|
30159
|
+
/**
|
30160
|
+
* The parameter value.
|
30161
|
+
*/
|
29981
30162
|
Value?: string;
|
29982
30163
|
};
|
29983
30164
|
/**
|
29984
30165
|
* Type definition for `AWS::CloudFront::DistributionTenant.Tag`.
|
30166
|
+
* A complex type that contains ``Tag`` key and ``Tag`` value.
|
29985
30167
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-tag.html}
|
29986
30168
|
*/
|
29987
30169
|
export type CloudFrontDistributionTenantTag = {
|
30170
|
+
/**
|
30171
|
+
* A string that contains ``Tag`` key.
|
30172
|
+
The string length should be between 1 and 128 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``.
|
30173
|
+
*/
|
29988
30174
|
Key: string;
|
30175
|
+
/**
|
30176
|
+
* A string that contains an optional ``Tag`` value.
|
30177
|
+
The string length should be between 0 and 256 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``.
|
30178
|
+
*/
|
29989
30179
|
Value: string;
|
29990
30180
|
};
|
29991
30181
|
/**
|
29992
30182
|
* Type definition for `AWS::CloudFront::DistributionTenant.WebAclCustomization`.
|
30183
|
+
* The WAF web ACL customization specified for the distribution tenant.
|
29993
30184
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-webaclcustomization.html}
|
29994
30185
|
*/
|
29995
30186
|
export type CloudFrontDistributionTenantWebAclCustomization = {
|
30187
|
+
/**
|
30188
|
+
* The action for the WAF web ACL customization. You can specify ``override`` to specify a separate WAF web ACL for the distribution tenant. If you specify ``disable``, the distribution tenant won't have WAF web ACL protections and won't inherit from the multi-tenant distribution.
|
30189
|
+
*/
|
29996
30190
|
Action?: "override" | "disable";
|
30191
|
+
/**
|
30192
|
+
* The Amazon Resource Name (ARN) of the WAF web ACL.
|
30193
|
+
*/
|
29997
30194
|
Arn?: string;
|
29998
30195
|
};
|
29999
30196
|
/**
|
@@ -30233,9 +30430,9 @@ export type CloudFrontOriginAccessControlOriginAccessControlConfig = {
|
|
30233
30430
|
/**
|
30234
30431
|
* Specifies which requests CloudFront signs (adds authentication information to). Specify ``always`` for the most common use case. For more information, see [origin access control advanced settings](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html#oac-advanced-settings) in the *Amazon CloudFront Developer Guide*.
|
30235
30432
|
This field can have one of the following values:
|
30236
|
-
+
|
30237
|
-
+
|
30238
|
-
+
|
30433
|
+
+ ``always`` – CloudFront signs all origin requests, overwriting the ``Authorization`` header from the viewer request if one exists.
|
30434
|
+
+ ``never`` – CloudFront doesn't sign any origin requests. This value turns off origin access control for all origins in all distributions that use this origin access control.
|
30435
|
+
+ ``no-override`` – If the viewer request doesn't contain the ``Authorization`` header, then CloudFront signs the origin request. If the viewer request contains the ``Authorization`` header, then CloudFront doesn't sign the origin request and instead passes along the ``Authorization`` header from the viewer request. *WARNING: To pass along the Authorization header from the viewer request, you must add the Authorization header to a cache policy for all cache behaviors that use origins associated with this origin access control.*
|
30239
30436
|
* @pattern `^(never|no-override|always)$`
|
30240
30437
|
*/
|
30241
30438
|
SigningBehavior: string;
|
@@ -30278,10 +30475,10 @@ export type CloudFrontOriginRequestPolicyAttributes = {
|
|
30278
30475
|
export type CloudFrontOriginRequestPolicyCookiesConfig = {
|
30279
30476
|
/**
|
30280
30477
|
* Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
|
30281
|
-
+
|
30282
|
-
+
|
30283
|
-
+
|
30284
|
-
+
|
30478
|
+
+ ``none`` – No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any cookies that are listed in a ``CachePolicy``*are* included in origin requests.
|
30479
|
+
+ ``whitelist`` – Only the cookies in viewer requests that are listed in the ``CookieNames`` type are included in requests that CloudFront sends to the origin.
|
30480
|
+
+ ``all`` – All cookies in viewer requests are included in requests that CloudFront sends to the origin.
|
30481
|
+
+ ``allExcept`` – All cookies in viewer requests are included in requests that CloudFront sends to the origin, *except* for those listed in the ``CookieNames`` type, which are not included.
|
30285
30482
|
* @pattern `^(none|whitelist|all|allExcept)$`
|
30286
30483
|
*/
|
30287
30484
|
CookieBehavior: string;
|
@@ -30298,11 +30495,11 @@ export type CloudFrontOriginRequestPolicyCookiesConfig = {
|
|
30298
30495
|
export type CloudFrontOriginRequestPolicyHeadersConfig = {
|
30299
30496
|
/**
|
30300
30497
|
* Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:
|
30301
|
-
+
|
30302
|
-
+
|
30303
|
-
+
|
30304
|
-
+
|
30305
|
-
+
|
30498
|
+
+ ``none`` – No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any headers that are listed in a ``CachePolicy``*are* included in origin requests.
|
30499
|
+
+ ``whitelist`` – Only the HTTP headers that are listed in the ``Headers`` type are included in requests that CloudFront sends to the origin.
|
30500
|
+
+ ``allViewer`` – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.
|
30501
|
+
+ ``allViewerAndWhitelistCloudFront`` – All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the ``Headers`` type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.
|
30502
|
+
+ ``allExcept`` – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, *except* for those listed in the ``Headers`` type, which are not included.
|
30306
30503
|
* @pattern `^(none|whitelist|allViewer|allViewerAndWhitelistCloudFront|allExcept)$`
|
30307
30504
|
*/
|
30308
30505
|
HeaderBehavior: string;
|
@@ -30352,10 +30549,10 @@ export type CloudFrontOriginRequestPolicyOriginRequestPolicyConfig = {
|
|
30352
30549
|
export type CloudFrontOriginRequestPolicyQueryStringsConfig = {
|
30353
30550
|
/**
|
30354
30551
|
* Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
|
30355
|
-
+
|
30356
|
-
+
|
30357
|
-
+
|
30358
|
-
+
|
30552
|
+
+ ``none`` – No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any query strings that are listed in a ``CachePolicy``*are* included in origin requests.
|
30553
|
+
+ ``whitelist`` – Only the query strings in viewer requests that are listed in the ``QueryStringNames`` type are included in requests that CloudFront sends to the origin.
|
30554
|
+
+ ``all`` – All query strings in viewer requests are included in requests that CloudFront sends to the origin.
|
30555
|
+
+ ``allExcept`` – All query strings in viewer requests are included in requests that CloudFront sends to the origin, *except* for those listed in the ``QueryStringNames`` type, which are not included.
|
30359
30556
|
* @pattern `^(none|whitelist|all|allExcept)$`
|
30360
30557
|
*/
|
30361
30558
|
QueryStringBehavior: string;
|
@@ -30443,12 +30640,12 @@ export type CloudFrontRealtimeLogConfigAttributes = {
|
|
30443
30640
|
};
|
30444
30641
|
/**
|
30445
30642
|
* Type definition for `AWS::CloudFront::RealtimeLogConfig.EndPoint`.
|
30446
|
-
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data
|
30643
|
+
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.
|
30447
30644
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-endpoint.html}
|
30448
30645
|
*/
|
30449
30646
|
export type CloudFrontRealtimeLogConfigEndPoint = {
|
30450
30647
|
/**
|
30451
|
-
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
|
30648
|
+
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
|
30452
30649
|
*/
|
30453
30650
|
KinesisStreamConfig: CloudFrontRealtimeLogConfigKinesisStreamConfig;
|
30454
30651
|
/**
|
@@ -30524,7 +30721,7 @@ export type CloudFrontResponseHeadersPolicyAccessControlAllowMethods = {
|
|
30524
30721
|
+ ``PUT``
|
30525
30722
|
+ ``ALL``
|
30526
30723
|
|
30527
|
-
|
30724
|
+
``ALL`` is a special value that includes all of the listed HTTP methods.
|
30528
30725
|
*/
|
30529
30726
|
Items: string[];
|
30530
30727
|
};
|
@@ -33890,6 +34087,10 @@ export type CodePipelinePipelineEnvironmentVariable = {
|
|
33890
34087
|
* The name of the environment variable.
|
33891
34088
|
*/
|
33892
34089
|
Name: string;
|
34090
|
+
/**
|
34091
|
+
* The type of the environment variable.
|
34092
|
+
*/
|
34093
|
+
Type?: "PLAINTEXT" | "SECRETS_MANAGER";
|
33893
34094
|
/**
|
33894
34095
|
* The value of the environment variable.
|
33895
34096
|
*/
|
@@ -52064,6 +52265,10 @@ export type EC2HostProps = {
|
|
52064
52265
|
* The Amazon Resource Name (ARN) of the Amazon Web Services Outpost on which to allocate the Dedicated Host.
|
52065
52266
|
*/
|
52066
52267
|
OutpostArn?: string;
|
52268
|
+
/**
|
52269
|
+
* Any tags assigned to the Host.
|
52270
|
+
*/
|
52271
|
+
Tags?: EC2HostTag[];
|
52067
52272
|
};
|
52068
52273
|
/**
|
52069
52274
|
* Attribute type definition for `AWS::EC2::Host`.
|
@@ -52075,6 +52280,14 @@ export type EC2HostAttributes = {
|
|
52075
52280
|
*/
|
52076
52281
|
HostId: string;
|
52077
52282
|
};
|
52283
|
+
/**
|
52284
|
+
* Type definition for `AWS::EC2::Host.Tag`.
|
52285
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-host-tag.html}
|
52286
|
+
*/
|
52287
|
+
export type EC2HostTag = {
|
52288
|
+
Key: string;
|
52289
|
+
Value: string;
|
52290
|
+
};
|
52078
52291
|
/**
|
52079
52292
|
* Resource Type definition for AWS::EC2::Instance
|
52080
52293
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-instance.html}
|
@@ -60315,12 +60528,13 @@ export type ECRRegistryPolicyAttributes = {
|
|
60315
60528
|
RegistryId: string;
|
60316
60529
|
};
|
60317
60530
|
/**
|
60318
|
-
*
|
60531
|
+
* Resource type definition for `AWS::ECR::RegistryScanningConfiguration`.
|
60532
|
+
* The scanning configuration for a private registry.
|
60319
60533
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registryscanningconfiguration.html}
|
60320
60534
|
*/
|
60321
60535
|
export type ECRRegistryScanningConfigurationProps = {
|
60322
60536
|
/**
|
60323
|
-
* The scanning rules associated with the registry.
|
60537
|
+
* The scanning rules associated with the registry.
|
60324
60538
|
* @minLength `0`
|
60325
60539
|
* @maxLength `2`
|
60326
60540
|
*/
|
@@ -60349,7 +60563,7 @@ export type ECRRegistryScanningConfigurationAttributes = {
|
|
60349
60563
|
export type ECRRegistryScanningConfigurationFilterType = "WILDCARD";
|
60350
60564
|
/**
|
60351
60565
|
* Type definition for `AWS::ECR::RegistryScanningConfiguration.RepositoryFilter`.
|
60352
|
-
* The
|
60566
|
+
* The filter settings used with image replication. Specifying a repository filter to a replication rule provides a method for controlling which repositories in a private registry are replicated. If no filters are added, the contents of all repositories are replicated.
|
60353
60567
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-registryscanningconfiguration-repositoryfilter.html}
|
60354
60568
|
*/
|
60355
60569
|
export type ECRRegistryScanningConfigurationRepositoryFilter = {
|
@@ -60371,18 +60585,18 @@ export type ECRRegistryScanningConfigurationRepositoryFilter = {
|
|
60371
60585
|
export type ECRRegistryScanningConfigurationScanFrequency = "SCAN_ON_PUSH" | "CONTINUOUS_SCAN";
|
60372
60586
|
/**
|
60373
60587
|
* Type definition for `AWS::ECR::RegistryScanningConfiguration.ScanningRule`.
|
60374
|
-
*
|
60588
|
+
* The scanning rules associated with the registry.
|
60375
60589
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-registryscanningconfiguration-scanningrule.html}
|
60376
60590
|
*/
|
60377
60591
|
export type ECRRegistryScanningConfigurationScanningRule = {
|
60378
60592
|
/**
|
60379
|
-
* The repository filters
|
60593
|
+
* The details of a scanning repository filter. For more information on how to use filters, see [Using filters](https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html#image-scanning-filters) in the *Amazon Elastic Container Registry User Guide*.
|
60380
60594
|
* @minLength `0`
|
60381
60595
|
* @maxLength `100`
|
60382
60596
|
*/
|
60383
60597
|
RepositoryFilters: ECRRegistryScanningConfigurationRepositoryFilter[];
|
60384
60598
|
/**
|
60385
|
-
* The frequency that scans are performed.
|
60599
|
+
* The frequency that scans are performed at for a private registry. When the ``ENHANCED`` scan type is specified, the supported scan frequencies are ``CONTINUOUS_SCAN`` and ``SCAN_ON_PUSH``. When the ``BASIC`` scan type is specified, the ``SCAN_ON_PUSH`` scan frequency is supported. If scan on push is not specified, then the ``MANUAL`` scan frequency is set by default.
|
60386
60600
|
*/
|
60387
60601
|
ScanFrequency: ECRRegistryScanningConfigurationScanFrequency;
|
60388
60602
|
};
|
@@ -74161,12 +74375,22 @@ export type GameLiftFleetProps = {
|
|
74161
74375
|
* @maxLength `1024`
|
74162
74376
|
*/
|
74163
74377
|
ServerLaunchPath?: string;
|
74378
|
+
/**
|
74379
|
+
* An array of key-value pairs to apply to this resource.
|
74380
|
+
* @maxLength `200`
|
74381
|
+
*/
|
74382
|
+
Tags?: GameLiftFleetTag[];
|
74164
74383
|
};
|
74165
74384
|
/**
|
74166
74385
|
* Attribute type definition for `AWS::GameLift::Fleet`.
|
74167
74386
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#aws-resource-gamelift-fleet-return-values}
|
74168
74387
|
*/
|
74169
74388
|
export type GameLiftFleetAttributes = {
|
74389
|
+
/**
|
74390
|
+
* The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift Servers Fleet resource and uniquely identifies it. ARNs are unique across all Regions. In a GameLift Fleet ARN, the resource ID matches the FleetId value.
|
74391
|
+
* @pattern `^arn:.*:fleet/[a-z]*fleet-[a-zA-Z0-9\-]+$`
|
74392
|
+
*/
|
74393
|
+
FleetArn: string;
|
74170
74394
|
/**
|
74171
74395
|
* Unique fleet ID
|
74172
74396
|
* @pattern `^fleet-\S+`
|
@@ -74398,6 +74622,25 @@ export type GameLiftFleetServerProcess = {
|
|
74398
74622
|
*/
|
74399
74623
|
Parameters?: string;
|
74400
74624
|
};
|
74625
|
+
/**
|
74626
|
+
* Type definition for `AWS::GameLift::Fleet.Tag`.
|
74627
|
+
* A key-value pair to associate with a resource.
|
74628
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-tag.html}
|
74629
|
+
*/
|
74630
|
+
export type GameLiftFleetTag = {
|
74631
|
+
/**
|
74632
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length.
|
74633
|
+
* @minLength `1`
|
74634
|
+
* @maxLength `128`
|
74635
|
+
*/
|
74636
|
+
Key: string;
|
74637
|
+
/**
|
74638
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length.
|
74639
|
+
* @minLength `0`
|
74640
|
+
* @maxLength `256`
|
74641
|
+
*/
|
74642
|
+
Value: string;
|
74643
|
+
};
|
74401
74644
|
/**
|
74402
74645
|
* Type definition for `AWS::GameLift::Fleet.TargetConfiguration`.
|
74403
74646
|
* Settings for a target-based scaling policy. A target-based policy tracks a particular fleet metric specifies a target value for the metric. As player usage changes, the policy triggers Amazon GameLift to adjust capacity so that the metric returns to the target value. The target configuration specifies settings as needed for the target based policy, including the target value.
|
@@ -105027,7 +105270,7 @@ export type LogsTransformerProcessor = {
|
|
105027
105270
|
*/
|
105028
105271
|
Columns?: string[];
|
105029
105272
|
/**
|
105030
|
-
* @maxLength `
|
105273
|
+
* @maxLength `2`
|
105031
105274
|
*/
|
105032
105275
|
Delimiter?: string;
|
105033
105276
|
/**
|
@@ -105065,7 +105308,7 @@ export type LogsTransformerProcessor = {
|
|
105065
105308
|
};
|
105066
105309
|
Grok?: {
|
105067
105310
|
/**
|
105068
|
-
* @maxLength `
|
105311
|
+
* @maxLength `512`
|
105069
105312
|
*/
|
105070
105313
|
Match: string;
|
105071
105314
|
/**
|
@@ -105206,7 +105449,7 @@ export type LogsTransformerRenameKeyEntry = {
|
|
105206
105449
|
*/
|
105207
105450
|
export type LogsTransformerSplitStringEntry = {
|
105208
105451
|
/**
|
105209
|
-
* @maxLength `
|
105452
|
+
* @maxLength `128`
|
105210
105453
|
*/
|
105211
105454
|
Delimiter: string;
|
105212
105455
|
/**
|
@@ -162059,8 +162302,8 @@ export type RolesAnywhereTrustAnchorNotificationSetting = {
|
|
162059
162302
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-source.html}
|
162060
162303
|
*/
|
162061
162304
|
export type RolesAnywhereTrustAnchorSource = {
|
162062
|
-
SourceData
|
162063
|
-
SourceType
|
162305
|
+
SourceData: RolesAnywhereTrustAnchorSourceData;
|
162306
|
+
SourceType: RolesAnywhereTrustAnchorTrustAnchorType;
|
162064
162307
|
};
|
162065
162308
|
/**
|
162066
162309
|
* Type definition for `AWS::RolesAnywhere::TrustAnchor.SourceData`.
|
@@ -182469,7 +182712,7 @@ export type SSMDocumentProps = {
|
|
182469
182712
|
/**
|
182470
182713
|
* The type of document to create.
|
182471
182714
|
*/
|
182472
|
-
DocumentType?: "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "Automation" | "Automation.ChangeTemplate" | "ChangeCalendar" | "CloudFormation" | "Command" | "DeploymentStrategy" | "Package" | "Policy" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "Session";
|
182715
|
+
DocumentType?: "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "Automation" | "Automation.ChangeTemplate" | "AutoApprovalPolicy" | "ChangeCalendar" | "CloudFormation" | "Command" | "DeploymentStrategy" | "ManualApprovalPolicy" | "Package" | "Policy" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "Session";
|
182473
182716
|
/**
|
182474
182717
|
* A name for the Systems Manager document.
|
182475
182718
|
* @pattern `^[a-zA-Z0-9_\-.]{3,128}$`
|
@@ -196856,6 +197099,7 @@ export interface AttributeTypes {
|
|
196856
197099
|
"AWS::Athena::NamedQuery": AthenaNamedQueryAttributes;
|
196857
197100
|
"AWS::Athena::WorkGroup": AthenaWorkGroupAttributes;
|
196858
197101
|
"AWS::AuditManager::Assessment": AuditManagerAssessmentAttributes;
|
197102
|
+
"AWS::AutoScaling::AutoScalingGroup": AutoScalingAutoScalingGroupAttributes;
|
196859
197103
|
"AWS::AutoScaling::ScalingPolicy": AutoScalingScalingPolicyAttributes;
|
196860
197104
|
"AWS::AutoScaling::ScheduledAction": AutoScalingScheduledActionAttributes;
|
196861
197105
|
"AWS::AutoScalingPlans::ScalingPlan": AutoScalingPlansScalingPlanAttributes;
|