@awboost/cfntypes 0.100.190 → 0.100.192
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.
@@ -18501,7 +18501,7 @@ export type BedrockBlueprintProps = {
|
|
18501
18501
|
/**
|
18502
18502
|
* Modality Type
|
18503
18503
|
*/
|
18504
|
-
Type: "DOCUMENT" | "IMAGE" | "AUDIO";
|
18504
|
+
Type: "DOCUMENT" | "IMAGE" | "AUDIO" | "VIDEO";
|
18505
18505
|
};
|
18506
18506
|
/**
|
18507
18507
|
* Attribute type definition for `AWS::Bedrock::Blueprint`.
|
@@ -28631,10 +28631,10 @@ export type CloudFrontCachePolicyCachePolicyConfig = {
|
|
28631
28631
|
export type CloudFrontCachePolicyCookiesConfig = {
|
28632
28632
|
/**
|
28633
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:
|
28634
|
-
+
|
28635
|
-
+
|
28636
|
-
+
|
28637
|
-
+
|
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.
|
28638
28638
|
* @pattern `^(none|whitelist|allExcept|all)$`
|
28639
28639
|
*/
|
28640
28640
|
CookieBehavior: string;
|
@@ -28651,8 +28651,8 @@ export type CloudFrontCachePolicyCookiesConfig = {
|
|
28651
28651
|
export type CloudFrontCachePolicyHeadersConfig = {
|
28652
28652
|
/**
|
28653
28653
|
* Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
|
28654
|
-
+
|
28655
|
-
+
|
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.
|
28656
28656
|
* @pattern `^(none|whitelist)$`
|
28657
28657
|
*/
|
28658
28658
|
HeaderBehavior: string;
|
@@ -28674,7 +28674,7 @@ export type CloudFrontCachePolicyParametersInCacheKeyAndForwardedToOrigin = {
|
|
28674
28674
|
CookiesConfig: CloudFrontCachePolicyCookiesConfig;
|
28675
28675
|
/**
|
28676
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.
|
28677
|
-
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:
|
28678
28678
|
+ Normalizes the value of the viewer's ``Accept-Encoding`` header
|
28679
28679
|
+ Includes the normalized header in the cache key
|
28680
28680
|
+ Includes the normalized header in the request to the origin, if a request is necessary
|
@@ -28686,7 +28686,7 @@ export type CloudFrontCachePolicyParametersInCacheKeyAndForwardedToOrigin = {
|
|
28686
28686
|
EnableAcceptEncodingBrotli?: boolean;
|
28687
28687
|
/**
|
28688
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.
|
28689
|
-
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:
|
28690
28690
|
+ Normalizes the value of the viewer's ``Accept-Encoding`` header
|
28691
28691
|
+ Includes the normalized header in the cache key
|
28692
28692
|
+ Includes the normalized header in the request to the origin, if a request is necessary
|
@@ -28713,10 +28713,10 @@ export type CloudFrontCachePolicyParametersInCacheKeyAndForwardedToOrigin = {
|
|
28713
28713
|
export type CloudFrontCachePolicyQueryStringsConfig = {
|
28714
28714
|
/**
|
28715
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:
|
28716
|
-
+
|
28717
|
-
+
|
28718
|
-
+
|
28719
|
-
+
|
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.
|
28720
28720
|
* @pattern `^(none|whitelist|allExcept|all)$`
|
28721
28721
|
*/
|
28722
28722
|
QueryStringBehavior: string;
|
@@ -28756,14 +28756,30 @@ export type CloudFrontCloudFrontOriginAccessIdentityCloudFrontOriginAccessIdenti
|
|
28756
28756
|
Comment: string;
|
28757
28757
|
};
|
28758
28758
|
/**
|
28759
|
-
* 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.
|
28760
28761
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html}
|
28761
28762
|
*/
|
28762
28763
|
export type CloudFrontConnectionGroupProps = {
|
28764
|
+
/**
|
28765
|
+
* The ID of the Anycast static IP list.
|
28766
|
+
*/
|
28763
28767
|
AnycastIpListId?: string;
|
28768
|
+
/**
|
28769
|
+
* Whether the connection group is enabled.
|
28770
|
+
*/
|
28764
28771
|
Enabled?: boolean;
|
28772
|
+
/**
|
28773
|
+
* IPv6 is enabled for the connection group.
|
28774
|
+
*/
|
28765
28775
|
Ipv6Enabled?: boolean;
|
28776
|
+
/**
|
28777
|
+
* The name of the connection group.
|
28778
|
+
*/
|
28766
28779
|
Name: string;
|
28780
|
+
/**
|
28781
|
+
* A complex type that contains zero or more ``Tag`` elements.
|
28782
|
+
*/
|
28767
28783
|
Tags?: CloudFrontConnectionGroupTag[];
|
28768
28784
|
};
|
28769
28785
|
/**
|
@@ -28782,10 +28798,19 @@ export type CloudFrontConnectionGroupAttributes = {
|
|
28782
28798
|
};
|
28783
28799
|
/**
|
28784
28800
|
* Type definition for `AWS::CloudFront::ConnectionGroup.Tag`.
|
28801
|
+
* A complex type that contains ``Tag`` key and ``Tag`` value.
|
28785
28802
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectiongroup-tag.html}
|
28786
28803
|
*/
|
28787
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
|
+
*/
|
28788
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
|
+
*/
|
28789
28814
|
Value: string;
|
28790
28815
|
};
|
28791
28816
|
/**
|
@@ -29077,9 +29102,9 @@ export type CloudFrontDistributionCacheBehavior = {
|
|
29077
29102
|
TrustedSigners?: string[];
|
29078
29103
|
/**
|
29079
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:
|
29080
|
-
+
|
29081
|
-
+
|
29082
|
-
+
|
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).
|
29083
29108
|
|
29084
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*.
|
29085
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*.
|
@@ -29158,7 +29183,7 @@ export type CloudFrontDistributionCustomErrorResponse = {
|
|
29158
29183
|
};
|
29159
29184
|
/**
|
29160
29185
|
* Type definition for `AWS::CloudFront::Distribution.CustomOriginConfig`.
|
29161
|
-
* 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.
|
29162
29187
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html}
|
29163
29188
|
*/
|
29164
29189
|
export type CloudFrontDistributionCustomOriginConfig = {
|
@@ -29177,9 +29202,9 @@ export type CloudFrontDistributionCustomOriginConfig = {
|
|
29177
29202
|
OriginKeepaliveTimeout?: number;
|
29178
29203
|
/**
|
29179
29204
|
* Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:
|
29180
|
-
+
|
29181
|
-
+
|
29182
|
-
+
|
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.
|
29183
29208
|
*/
|
29184
29209
|
OriginProtocolPolicy: string;
|
29185
29210
|
/**
|
@@ -29298,9 +29323,9 @@ export type CloudFrontDistributionDefaultCacheBehavior = {
|
|
29298
29323
|
TrustedSigners?: string[];
|
29299
29324
|
/**
|
29300
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:
|
29301
|
-
+
|
29302
|
-
+
|
29303
|
-
+
|
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).
|
29304
29329
|
|
29305
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*.
|
29306
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*.
|
@@ -29334,6 +29359,9 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
29334
29359
|
* A comment to describe the distribution. The comment cannot be longer than 128 characters.
|
29335
29360
|
*/
|
29336
29361
|
Comment?: string;
|
29362
|
+
/**
|
29363
|
+
* The connection mode to filter distributions by.
|
29364
|
+
*/
|
29337
29365
|
ConnectionMode?: CloudFrontDistributionConnectionMode;
|
29338
29366
|
/**
|
29339
29367
|
* The identifier of a continuous deployment policy. For more information, see ``CreateContinuousDeploymentPolicy``.
|
@@ -29420,6 +29448,9 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
29420
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.
|
29421
29449
|
*/
|
29422
29450
|
Staging?: boolean;
|
29451
|
+
/**
|
29452
|
+
* A distribution tenant configuration.
|
29453
|
+
*/
|
29423
29454
|
TenantConfig?: {
|
29424
29455
|
ParameterDefinitions?: CloudFrontDistributionParameterDefinition[];
|
29425
29456
|
};
|
@@ -29429,7 +29460,7 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
29429
29460
|
ViewerCertificate?: CloudFrontDistributionViewerCertificate;
|
29430
29461
|
/**
|
29431
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``.
|
29432
|
-
|
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).
|
29433
29464
|
*/
|
29434
29465
|
WebACLId?: string;
|
29435
29466
|
};
|
@@ -29505,9 +29536,9 @@ export type CloudFrontDistributionGeoRestriction = {
|
|
29505
29536
|
Locations?: string[];
|
29506
29537
|
/**
|
29507
29538
|
* The method that you want to use to restrict distribution of your content by country:
|
29508
|
-
+
|
29509
|
-
+
|
29510
|
-
+
|
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.
|
29511
29542
|
*/
|
29512
29543
|
RestrictionType: string;
|
29513
29544
|
};
|
@@ -29532,10 +29563,10 @@ export type CloudFrontDistributionGrpcConfig = {
|
|
29532
29563
|
export type CloudFrontDistributionLambdaFunctionAssociation = {
|
29533
29564
|
/**
|
29534
29565
|
* Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:
|
29535
|
-
+
|
29536
|
-
+
|
29537
|
-
+
|
29538
|
-
+
|
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.
|
29539
29570
|
If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.
|
29540
29571
|
*/
|
29541
29572
|
EventType?: string;
|
@@ -29550,7 +29581,7 @@ export type CloudFrontDistributionLambdaFunctionAssociation = {
|
|
29550
29581
|
};
|
29551
29582
|
/**
|
29552
29583
|
* Type definition for `AWS::CloudFront::Distribution.LegacyCustomOrigin`.
|
29553
|
-
* 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.
|
29554
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.
|
29555
29586
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-legacycustomorigin.html}
|
29556
29587
|
*/
|
@@ -29803,9 +29834,13 @@ export type CloudFrontDistributionOriginShield = {
|
|
29803
29834
|
};
|
29804
29835
|
/**
|
29805
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.
|
29806
29838
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-parameterdefinition.html}
|
29807
29839
|
*/
|
29808
29840
|
export type CloudFrontDistributionParameterDefinition = {
|
29841
|
+
/**
|
29842
|
+
* The value that you assigned to the parameter.
|
29843
|
+
*/
|
29809
29844
|
Definition: {
|
29810
29845
|
StringSchema?: {
|
29811
29846
|
Comment?: string;
|
@@ -29813,6 +29848,9 @@ export type CloudFrontDistributionParameterDefinition = {
|
|
29813
29848
|
Required: boolean;
|
29814
29849
|
};
|
29815
29850
|
};
|
29851
|
+
/**
|
29852
|
+
* The name of the parameter.
|
29853
|
+
*/
|
29816
29854
|
Name: string;
|
29817
29855
|
};
|
29818
29856
|
/**
|
@@ -29887,8 +29925,8 @@ export type CloudFrontDistributionTag = {
|
|
29887
29925
|
|
29888
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*.
|
29889
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):
|
29890
|
-
+
|
29891
|
-
+
|
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.)
|
29892
29930
|
|
29893
29931
|
|
29894
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``.
|
@@ -29905,7 +29943,7 @@ export type CloudFrontDistributionViewerCertificate = {
|
|
29905
29943
|
/**
|
29906
29944
|
* If the distribution uses the CloudFront domain name such as ``d111111abcdef8.cloudfront.net``, set this field to ``true``.
|
29907
29945
|
If the distribution uses ``Aliases`` (alternate domain names or CNAMEs), omit this field and specify values for the following fields:
|
29908
|
-
+
|
29946
|
+
+ ``AcmCertificateArn`` or ``IamCertificateId`` (specify a value for one, not both)
|
29909
29947
|
+ ``MinimumProtocolVersion``
|
29910
29948
|
+ ``SslSupportMethod``
|
29911
29949
|
*/
|
@@ -29930,9 +29968,9 @@ export type CloudFrontDistributionViewerCertificate = {
|
|
29930
29968
|
/**
|
29931
29969
|
* In CloudFormation, this field name is ``SslSupportMethod``. Note the different capitalization.
|
29932
29970
|
If the distribution uses ``Aliases`` (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.
|
29933
|
-
+
|
29934
|
-
+
|
29935
|
-
+
|
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).
|
29936
29974
|
|
29937
29975
|
If the distribution uses the CloudFront domain name such as ``d111111abcdef8.cloudfront.net``, don't set a value for this field.
|
29938
29976
|
*/
|
@@ -29960,18 +29998,46 @@ export type CloudFrontDistributionVpcOriginConfig = {
|
|
29960
29998
|
VpcOriginId: string;
|
29961
29999
|
};
|
29962
30000
|
/**
|
29963
|
-
* Resource
|
30001
|
+
* Resource type definition for `AWS::CloudFront::DistributionTenant`.
|
30002
|
+
* The distribution tenant.
|
29964
30003
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html}
|
29965
30004
|
*/
|
29966
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
|
+
*/
|
29967
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
|
+
*/
|
29968
30013
|
Customizations?: CloudFrontDistributionTenantCustomizations;
|
30014
|
+
/**
|
30015
|
+
* The ID of the multi-tenant distribution.
|
30016
|
+
*/
|
29969
30017
|
DistributionId: string;
|
30018
|
+
/**
|
30019
|
+
* The domains associated with the distribution tenant.
|
30020
|
+
*/
|
29970
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
|
+
*/
|
29971
30025
|
Enabled?: boolean;
|
30026
|
+
/**
|
30027
|
+
* An object that represents the request for the Amazon CloudFront managed ACM certificate.
|
30028
|
+
*/
|
29972
30029
|
ManagedCertificateRequest?: CloudFrontDistributionTenantManagedCertificateRequest;
|
30030
|
+
/**
|
30031
|
+
* The name of the distribution tenant.
|
30032
|
+
*/
|
29973
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
|
+
*/
|
29974
30037
|
Parameters?: CloudFrontDistributionTenantParameter[];
|
30038
|
+
/**
|
30039
|
+
* A complex type that contains zero or more ``Tag`` elements.
|
30040
|
+
*/
|
29975
30041
|
Tags?: CloudFrontDistributionTenantTag[];
|
29976
30042
|
};
|
29977
30043
|
/**
|
@@ -29982,7 +30048,13 @@ export type CloudFrontDistributionTenantAttributes = {
|
|
29982
30048
|
Arn: string;
|
29983
30049
|
CreatedTime: string;
|
29984
30050
|
DomainResults: {
|
30051
|
+
/**
|
30052
|
+
* The specified domain.
|
30053
|
+
*/
|
29985
30054
|
Domain: string;
|
30055
|
+
/**
|
30056
|
+
* Whether the domain is active or inactive.
|
30057
|
+
*/
|
29986
30058
|
Status: "active" | "inactive";
|
29987
30059
|
}[];
|
29988
30060
|
ETag: string;
|
@@ -29992,67 +30064,133 @@ export type CloudFrontDistributionTenantAttributes = {
|
|
29992
30064
|
};
|
29993
30065
|
/**
|
29994
30066
|
* Type definition for `AWS::CloudFront::DistributionTenant.Certificate`.
|
30067
|
+
* The ACMlong (ACM) certificate associated with your distribution.
|
29995
30068
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-certificate.html}
|
29996
30069
|
*/
|
29997
30070
|
export type CloudFrontDistributionTenantCertificate = {
|
30071
|
+
/**
|
30072
|
+
* The Amazon Resource Name (ARN) of the ACM certificate.
|
30073
|
+
*/
|
29998
30074
|
Arn?: string;
|
29999
30075
|
};
|
30000
30076
|
/**
|
30001
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.
|
30002
30079
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-customizations.html}
|
30003
30080
|
*/
|
30004
30081
|
export type CloudFrontDistributionTenantCustomizations = {
|
30082
|
+
/**
|
30083
|
+
* The ACMlong (ACM) certificate.
|
30084
|
+
*/
|
30005
30085
|
Certificate?: CloudFrontDistributionTenantCertificate;
|
30086
|
+
/**
|
30087
|
+
* The geographic restrictions.
|
30088
|
+
*/
|
30006
30089
|
GeoRestrictions?: CloudFrontDistributionTenantGeoRestrictionCustomization;
|
30090
|
+
/**
|
30091
|
+
* The WAF web ACL.
|
30092
|
+
*/
|
30007
30093
|
WebAcl?: CloudFrontDistributionTenantWebAclCustomization;
|
30008
30094
|
};
|
30009
30095
|
/**
|
30010
30096
|
* Type definition for `AWS::CloudFront::DistributionTenant.DomainResult`.
|
30097
|
+
* The details about the domain result.
|
30011
30098
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-domainresult.html}
|
30012
30099
|
*/
|
30013
30100
|
export type CloudFrontDistributionTenantDomainResult = {
|
30101
|
+
/**
|
30102
|
+
* The specified domain.
|
30103
|
+
*/
|
30014
30104
|
Domain?: string;
|
30105
|
+
/**
|
30106
|
+
* Whether the domain is active or inactive.
|
30107
|
+
*/
|
30015
30108
|
Status?: "active" | "inactive";
|
30016
30109
|
};
|
30017
30110
|
/**
|
30018
30111
|
* Type definition for `AWS::CloudFront::DistributionTenant.GeoRestrictionCustomization`.
|
30112
|
+
* The customizations that you specified for the distribution tenant for geographic restrictions.
|
30019
30113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-georestrictioncustomization.html}
|
30020
30114
|
*/
|
30021
30115
|
export type CloudFrontDistributionTenantGeoRestrictionCustomization = {
|
30116
|
+
/**
|
30117
|
+
* The locations for geographic restrictions.
|
30118
|
+
*/
|
30022
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
|
+
*/
|
30023
30126
|
RestrictionType?: "blacklist" | "whitelist" | "none";
|
30024
30127
|
};
|
30025
30128
|
/**
|
30026
30129
|
* Type definition for `AWS::CloudFront::DistributionTenant.ManagedCertificateRequest`.
|
30130
|
+
* An object that represents the request for the Amazon CloudFront managed ACM certificate.
|
30027
30131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-managedcertificaterequest.html}
|
30028
30132
|
*/
|
30029
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
|
+
*/
|
30030
30137
|
CertificateTransparencyLoggingPreference?: "enabled" | "disabled";
|
30138
|
+
/**
|
30139
|
+
* The primary domain name associated with the CloudFront managed ACM certificate.
|
30140
|
+
*/
|
30031
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
|
+
*/
|
30032
30147
|
ValidationTokenHost?: "cloudfront" | "self-hosted";
|
30033
30148
|
};
|
30034
30149
|
/**
|
30035
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.
|
30036
30152
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-parameter.html}
|
30037
30153
|
*/
|
30038
30154
|
export type CloudFrontDistributionTenantParameter = {
|
30155
|
+
/**
|
30156
|
+
* The parameter name.
|
30157
|
+
*/
|
30039
30158
|
Name?: string;
|
30159
|
+
/**
|
30160
|
+
* The parameter value.
|
30161
|
+
*/
|
30040
30162
|
Value?: string;
|
30041
30163
|
};
|
30042
30164
|
/**
|
30043
30165
|
* Type definition for `AWS::CloudFront::DistributionTenant.Tag`.
|
30166
|
+
* A complex type that contains ``Tag`` key and ``Tag`` value.
|
30044
30167
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-tag.html}
|
30045
30168
|
*/
|
30046
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
|
+
*/
|
30047
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
|
+
*/
|
30048
30179
|
Value: string;
|
30049
30180
|
};
|
30050
30181
|
/**
|
30051
30182
|
* Type definition for `AWS::CloudFront::DistributionTenant.WebAclCustomization`.
|
30183
|
+
* The WAF web ACL customization specified for the distribution tenant.
|
30052
30184
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-webaclcustomization.html}
|
30053
30185
|
*/
|
30054
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
|
+
*/
|
30055
30190
|
Action?: "override" | "disable";
|
30191
|
+
/**
|
30192
|
+
* The Amazon Resource Name (ARN) of the WAF web ACL.
|
30193
|
+
*/
|
30056
30194
|
Arn?: string;
|
30057
30195
|
};
|
30058
30196
|
/**
|
@@ -30292,9 +30430,9 @@ export type CloudFrontOriginAccessControlOriginAccessControlConfig = {
|
|
30292
30430
|
/**
|
30293
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*.
|
30294
30432
|
This field can have one of the following values:
|
30295
|
-
+
|
30296
|
-
+
|
30297
|
-
+
|
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.*
|
30298
30436
|
* @pattern `^(never|no-override|always)$`
|
30299
30437
|
*/
|
30300
30438
|
SigningBehavior: string;
|
@@ -30337,10 +30475,10 @@ export type CloudFrontOriginRequestPolicyAttributes = {
|
|
30337
30475
|
export type CloudFrontOriginRequestPolicyCookiesConfig = {
|
30338
30476
|
/**
|
30339
30477
|
* Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
|
30340
|
-
+
|
30341
|
-
+
|
30342
|
-
+
|
30343
|
-
+
|
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.
|
30344
30482
|
* @pattern `^(none|whitelist|all|allExcept)$`
|
30345
30483
|
*/
|
30346
30484
|
CookieBehavior: string;
|
@@ -30357,11 +30495,11 @@ export type CloudFrontOriginRequestPolicyCookiesConfig = {
|
|
30357
30495
|
export type CloudFrontOriginRequestPolicyHeadersConfig = {
|
30358
30496
|
/**
|
30359
30497
|
* Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:
|
30360
|
-
+
|
30361
|
-
+
|
30362
|
-
+
|
30363
|
-
+
|
30364
|
-
+
|
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.
|
30365
30503
|
* @pattern `^(none|whitelist|allViewer|allViewerAndWhitelistCloudFront|allExcept)$`
|
30366
30504
|
*/
|
30367
30505
|
HeaderBehavior: string;
|
@@ -30411,10 +30549,10 @@ export type CloudFrontOriginRequestPolicyOriginRequestPolicyConfig = {
|
|
30411
30549
|
export type CloudFrontOriginRequestPolicyQueryStringsConfig = {
|
30412
30550
|
/**
|
30413
30551
|
* Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
|
30414
|
-
+
|
30415
|
-
+
|
30416
|
-
+
|
30417
|
-
+
|
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.
|
30418
30556
|
* @pattern `^(none|whitelist|all|allExcept)$`
|
30419
30557
|
*/
|
30420
30558
|
QueryStringBehavior: string;
|
@@ -30502,12 +30640,12 @@ export type CloudFrontRealtimeLogConfigAttributes = {
|
|
30502
30640
|
};
|
30503
30641
|
/**
|
30504
30642
|
* Type definition for `AWS::CloudFront::RealtimeLogConfig.EndPoint`.
|
30505
|
-
* 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.
|
30506
30644
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-endpoint.html}
|
30507
30645
|
*/
|
30508
30646
|
export type CloudFrontRealtimeLogConfigEndPoint = {
|
30509
30647
|
/**
|
30510
|
-
* 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.
|
30511
30649
|
*/
|
30512
30650
|
KinesisStreamConfig: CloudFrontRealtimeLogConfigKinesisStreamConfig;
|
30513
30651
|
/**
|
@@ -30583,7 +30721,7 @@ export type CloudFrontResponseHeadersPolicyAccessControlAllowMethods = {
|
|
30583
30721
|
+ ``PUT``
|
30584
30722
|
+ ``ALL``
|
30585
30723
|
|
30586
|
-
|
30724
|
+
``ALL`` is a special value that includes all of the listed HTTP methods.
|
30587
30725
|
*/
|
30588
30726
|
Items: string[];
|
30589
30727
|
};
|
@@ -33949,6 +34087,10 @@ export type CodePipelinePipelineEnvironmentVariable = {
|
|
33949
34087
|
* The name of the environment variable.
|
33950
34088
|
*/
|
33951
34089
|
Name: string;
|
34090
|
+
/**
|
34091
|
+
* The type of the environment variable.
|
34092
|
+
*/
|
34093
|
+
Type?: "PLAINTEXT" | "SECRETS_MANAGER";
|
33952
34094
|
/**
|
33953
34095
|
* The value of the environment variable.
|
33954
34096
|
*/
|
@@ -44816,53 +44958,6 @@ export type DataSyncLocationSMBTag = {
|
|
44816
44958
|
*/
|
44817
44959
|
Value: string;
|
44818
44960
|
};
|
44819
|
-
/**
|
44820
|
-
* Resource Type definition for AWS::DataSync::StorageSystem
|
44821
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html}
|
44822
|
-
*/
|
44823
|
-
export type DataSyncStorageSystemProps = {
|
44824
|
-
AgentArns: string[];
|
44825
|
-
CloudWatchLogGroupArn?: string;
|
44826
|
-
Name?: string;
|
44827
|
-
ServerConfiguration: DataSyncStorageSystemServerConfiguration;
|
44828
|
-
ServerCredentials?: DataSyncStorageSystemServerCredentials;
|
44829
|
-
SystemType: string;
|
44830
|
-
Tags?: DataSyncStorageSystemTag[];
|
44831
|
-
};
|
44832
|
-
/**
|
44833
|
-
* Attribute type definition for `AWS::DataSync::StorageSystem`.
|
44834
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#aws-resource-datasync-storagesystem-return-values}
|
44835
|
-
*/
|
44836
|
-
export type DataSyncStorageSystemAttributes = {
|
44837
|
-
ConnectivityStatus: string;
|
44838
|
-
Id: string;
|
44839
|
-
SecretsManagerArn: string;
|
44840
|
-
StorageSystemArn: string;
|
44841
|
-
};
|
44842
|
-
/**
|
44843
|
-
* Type definition for `AWS::DataSync::StorageSystem.ServerConfiguration`.
|
44844
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-serverconfiguration.html}
|
44845
|
-
*/
|
44846
|
-
export type DataSyncStorageSystemServerConfiguration = {
|
44847
|
-
ServerHostname: string;
|
44848
|
-
ServerPort?: number;
|
44849
|
-
};
|
44850
|
-
/**
|
44851
|
-
* Type definition for `AWS::DataSync::StorageSystem.ServerCredentials`.
|
44852
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-servercredentials.html}
|
44853
|
-
*/
|
44854
|
-
export type DataSyncStorageSystemServerCredentials = {
|
44855
|
-
Password: string;
|
44856
|
-
Username: string;
|
44857
|
-
};
|
44858
|
-
/**
|
44859
|
-
* Type definition for `AWS::DataSync::StorageSystem.Tag`.
|
44860
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-tag.html}
|
44861
|
-
*/
|
44862
|
-
export type DataSyncStorageSystemTag = {
|
44863
|
-
Key: string;
|
44864
|
-
Value: string;
|
44865
|
-
};
|
44866
44961
|
/**
|
44867
44962
|
* Resource schema for AWS::DataSync::Task.
|
44868
44963
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-task.html}
|
@@ -52170,6 +52265,10 @@ export type EC2HostProps = {
|
|
52170
52265
|
* The Amazon Resource Name (ARN) of the Amazon Web Services Outpost on which to allocate the Dedicated Host.
|
52171
52266
|
*/
|
52172
52267
|
OutpostArn?: string;
|
52268
|
+
/**
|
52269
|
+
* Any tags assigned to the Host.
|
52270
|
+
*/
|
52271
|
+
Tags?: EC2HostTag[];
|
52173
52272
|
};
|
52174
52273
|
/**
|
52175
52274
|
* Attribute type definition for `AWS::EC2::Host`.
|
@@ -52181,6 +52280,14 @@ export type EC2HostAttributes = {
|
|
52181
52280
|
*/
|
52182
52281
|
HostId: string;
|
52183
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
|
+
};
|
52184
52291
|
/**
|
52185
52292
|
* Resource Type definition for AWS::EC2::Instance
|
52186
52293
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-instance.html}
|
@@ -74268,12 +74375,22 @@ export type GameLiftFleetProps = {
|
|
74268
74375
|
* @maxLength `1024`
|
74269
74376
|
*/
|
74270
74377
|
ServerLaunchPath?: string;
|
74378
|
+
/**
|
74379
|
+
* An array of key-value pairs to apply to this resource.
|
74380
|
+
* @maxLength `200`
|
74381
|
+
*/
|
74382
|
+
Tags?: GameLiftFleetTag[];
|
74271
74383
|
};
|
74272
74384
|
/**
|
74273
74385
|
* Attribute type definition for `AWS::GameLift::Fleet`.
|
74274
74386
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#aws-resource-gamelift-fleet-return-values}
|
74275
74387
|
*/
|
74276
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;
|
74277
74394
|
/**
|
74278
74395
|
* Unique fleet ID
|
74279
74396
|
* @pattern `^fleet-\S+`
|
@@ -74505,6 +74622,25 @@ export type GameLiftFleetServerProcess = {
|
|
74505
74622
|
*/
|
74506
74623
|
Parameters?: string;
|
74507
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
|
+
};
|
74508
74644
|
/**
|
74509
74645
|
* Type definition for `AWS::GameLift::Fleet.TargetConfiguration`.
|
74510
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.
|
@@ -162166,8 +162302,8 @@ export type RolesAnywhereTrustAnchorNotificationSetting = {
|
|
162166
162302
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-source.html}
|
162167
162303
|
*/
|
162168
162304
|
export type RolesAnywhereTrustAnchorSource = {
|
162169
|
-
SourceData
|
162170
|
-
SourceType
|
162305
|
+
SourceData: RolesAnywhereTrustAnchorSourceData;
|
162306
|
+
SourceType: RolesAnywhereTrustAnchorTrustAnchorType;
|
162171
162307
|
};
|
162172
162308
|
/**
|
162173
162309
|
* Type definition for `AWS::RolesAnywhere::TrustAnchor.SourceData`.
|
@@ -195800,7 +195936,6 @@ export interface ResourceTypes {
|
|
195800
195936
|
"AWS::DataSync::LocationObjectStorage": DataSyncLocationObjectStorageProps;
|
195801
195937
|
"AWS::DataSync::LocationS3": DataSyncLocationS3Props;
|
195802
195938
|
"AWS::DataSync::LocationSMB": DataSyncLocationSMBProps;
|
195803
|
-
"AWS::DataSync::StorageSystem": DataSyncStorageSystemProps;
|
195804
195939
|
"AWS::DataSync::Task": DataSyncTaskProps;
|
195805
195940
|
"AWS::DataZone::Connection": DataZoneConnectionProps;
|
195806
195941
|
"AWS::DataZone::DataSource": DataZoneDataSourceProps;
|
@@ -197156,7 +197291,6 @@ export interface AttributeTypes {
|
|
197156
197291
|
"AWS::DataSync::LocationObjectStorage": DataSyncLocationObjectStorageAttributes;
|
197157
197292
|
"AWS::DataSync::LocationS3": DataSyncLocationS3Attributes;
|
197158
197293
|
"AWS::DataSync::LocationSMB": DataSyncLocationSMBAttributes;
|
197159
|
-
"AWS::DataSync::StorageSystem": DataSyncStorageSystemAttributes;
|
197160
197294
|
"AWS::DataSync::Task": DataSyncTaskAttributes;
|
197161
197295
|
"AWS::DataZone::Connection": DataZoneConnectionAttributes;
|
197162
197296
|
"AWS::DataZone::DataSource": DataZoneDataSourceAttributes;
|
@@ -198440,7 +198574,6 @@ export declare const ResourceType: {
|
|
198440
198574
|
readonly DataSyncLocationObjectStorage: "AWS::DataSync::LocationObjectStorage";
|
198441
198575
|
readonly DataSyncLocationS3: "AWS::DataSync::LocationS3";
|
198442
198576
|
readonly DataSyncLocationSMB: "AWS::DataSync::LocationSMB";
|
198443
|
-
readonly DataSyncStorageSystem: "AWS::DataSync::StorageSystem";
|
198444
198577
|
readonly DataSyncTask: "AWS::DataSync::Task";
|
198445
198578
|
readonly DataZoneConnection: "AWS::DataZone::Connection";
|
198446
198579
|
readonly DataZoneDataSource: "AWS::DataZone::DataSource";
|