@pulumi/aws-native 1.28.0-alpha.1747373744 → 1.28.0-alpha.1747657511
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.
- package/appsync/channelNamespace.d.ts +6 -0
- package/appsync/channelNamespace.js.map +1 -1
- package/appsync/getChannelNamespace.d.ts +3 -0
- package/appsync/getChannelNamespace.js.map +1 -1
- package/autoscaling/autoScalingGroup.d.ts +3 -0
- package/autoscaling/autoScalingGroup.js.map +1 -1
- package/autoscaling/getAutoScalingGroup.d.ts +3 -0
- package/autoscaling/getAutoScalingGroup.js.map +1 -1
- package/cloudfront/connectionGroup.d.ts +3 -3
- package/cloudfront/connectionGroup.js +1 -1
- package/cloudfront/distributionTenant.d.ts +5 -5
- package/cloudfront/distributionTenant.js +1 -1
- package/cloudfront/getConnectionGroup.d.ts +3 -3
- package/cloudfront/getConnectionGroup.js +2 -2
- package/cloudfront/getDistributionTenant.d.ts +4 -4
- package/cloudfront/getDistributionTenant.js +2 -2
- package/datasync/getStorageSystem.d.ts +3 -0
- package/datasync/getStorageSystem.js.map +1 -1
- package/datasync/storageSystem.d.ts +12 -0
- package/datasync/storageSystem.js.map +1 -1
- package/deadline/fleet.d.ts +2 -0
- package/deadline/fleet.js +2 -0
- package/deadline/fleet.js.map +1 -1
- package/deadline/getFleet.d.ts +1 -0
- package/deadline/getFleet.js.map +1 -1
- package/gamelift/containerFleet.js +1 -1
- package/gamelift/containerFleet.js.map +1 -1
- package/gamelift/fleet.d.ts +12 -0
- package/gamelift/fleet.js +4 -0
- package/gamelift/fleet.js.map +1 -1
- package/gamelift/getContainerFleet.d.ts +5 -0
- package/gamelift/getContainerFleet.js.map +1 -1
- package/gamelift/getFleet.d.ts +8 -0
- package/gamelift/getFleet.js.map +1 -1
- package/gamelift/getGameServerGroup.d.ts +4 -0
- package/gamelift/getGameServerGroup.js.map +1 -1
- package/omics/getWorkflowVersion.d.ts +21 -0
- package/omics/getWorkflowVersion.js.map +1 -1
- package/omics/workflowVersion.d.ts +30 -0
- package/omics/workflowVersion.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/rds/dbCluster.d.ts +4 -2
- package/rds/dbCluster.js.map +1 -1
- package/rds/getDbCluster.d.ts +2 -1
- package/rds/getDbCluster.js.map +1 -1
- package/types/enums/bedrock/index.d.ts +1 -0
- package/types/enums/bedrock/index.js +1 -0
- package/types/enums/bedrock/index.js.map +1 -1
- package/types/enums/cloudfront/index.d.ts +7 -9
- package/types/enums/cloudfront/index.js.map +1 -1
- package/types/enums/codepipeline/index.d.ts +8 -0
- package/types/enums/codepipeline/index.js +5 -1
- package/types/enums/codepipeline/index.js.map +1 -1
- package/types/input.d.ts +146 -72
- package/types/output.d.ts +149 -72
- package/types/output.js.map +1 -1
- package/workspaces/getWorkspacesPool.d.ts +3 -0
- package/workspaces/getWorkspacesPool.js.map +1 -1
- package/workspaces/workspacesPool.d.ts +6 -0
- package/workspaces/workspacesPool.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -5599,11 +5599,23 @@ export declare namespace appsync {
|
|
|
5599
5599
|
authType?: enums.appsync.ChannelNamespaceAuthenticationType;
|
|
5600
5600
|
}
|
|
5601
5601
|
interface ChannelNamespaceHandlerConfig {
|
|
5602
|
+
/**
|
|
5603
|
+
* The behavior for the handler.
|
|
5604
|
+
*/
|
|
5602
5605
|
behavior: enums.appsync.ChannelNamespaceHandlerBehavior;
|
|
5606
|
+
/**
|
|
5607
|
+
* The integration data source configuration for the handler.
|
|
5608
|
+
*/
|
|
5603
5609
|
integration: outputs.appsync.ChannelNamespaceIntegration;
|
|
5604
5610
|
}
|
|
5605
5611
|
interface ChannelNamespaceHandlerConfigs {
|
|
5612
|
+
/**
|
|
5613
|
+
* The configuration for the `OnPublish` handler.
|
|
5614
|
+
*/
|
|
5606
5615
|
onPublish?: outputs.appsync.ChannelNamespaceHandlerConfig;
|
|
5616
|
+
/**
|
|
5617
|
+
* The configuration for the `OnSubscribe` handler.
|
|
5618
|
+
*/
|
|
5607
5619
|
onSubscribe?: outputs.appsync.ChannelNamespaceHandlerConfig;
|
|
5608
5620
|
}
|
|
5609
5621
|
interface ChannelNamespaceIntegration {
|
|
@@ -5611,9 +5623,15 @@ export declare namespace appsync {
|
|
|
5611
5623
|
* Data source to invoke for this integration.
|
|
5612
5624
|
*/
|
|
5613
5625
|
dataSourceName: string;
|
|
5626
|
+
/**
|
|
5627
|
+
* The configuration for a Lambda data source.
|
|
5628
|
+
*/
|
|
5614
5629
|
lambdaConfig?: outputs.appsync.ChannelNamespaceLambdaConfig;
|
|
5615
5630
|
}
|
|
5616
5631
|
interface ChannelNamespaceLambdaConfig {
|
|
5632
|
+
/**
|
|
5633
|
+
* The invocation type for a Lambda data source.
|
|
5634
|
+
*/
|
|
5617
5635
|
invokeType: enums.appsync.ChannelNamespaceInvokeType;
|
|
5618
5636
|
}
|
|
5619
5637
|
interface DataSourceAuthorizationConfig {
|
|
@@ -14363,10 +14381,10 @@ export declare namespace cloudfront {
|
|
|
14363
14381
|
interface CachePolicyCookiesConfig {
|
|
14364
14382
|
/**
|
|
14365
14383
|
* 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:
|
|
14366
|
-
* +
|
|
14367
|
-
* +
|
|
14368
|
-
* +
|
|
14369
|
-
* +
|
|
14384
|
+
* + ``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.
|
|
14385
|
+
* + ``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.
|
|
14386
|
+
* + ``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.
|
|
14387
|
+
* + ``all`` – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
|
|
14370
14388
|
*/
|
|
14371
14389
|
cookieBehavior: string;
|
|
14372
14390
|
/**
|
|
@@ -14380,8 +14398,8 @@ export declare namespace cloudfront {
|
|
|
14380
14398
|
interface CachePolicyHeadersConfig {
|
|
14381
14399
|
/**
|
|
14382
14400
|
* Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
|
|
14383
|
-
* +
|
|
14384
|
-
* +
|
|
14401
|
+
* + ``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.
|
|
14402
|
+
* + ``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.
|
|
14385
14403
|
*/
|
|
14386
14404
|
headerBehavior: string;
|
|
14387
14405
|
/**
|
|
@@ -14400,7 +14418,7 @@ export declare namespace cloudfront {
|
|
|
14400
14418
|
cookiesConfig: outputs.cloudfront.CachePolicyCookiesConfig;
|
|
14401
14419
|
/**
|
|
14402
14420
|
* 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.
|
|
14403
|
-
* This field is related to the ``EnableAcceptEncodingGzip`` field. If one or both of these fields is ``true
|
|
14421
|
+
* 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:
|
|
14404
14422
|
* + Normalizes the value of the viewer's ``Accept-Encoding`` header
|
|
14405
14423
|
* + Includes the normalized header in the cache key
|
|
14406
14424
|
* + Includes the normalized header in the request to the origin, if a request is necessary
|
|
@@ -14412,7 +14430,7 @@ export declare namespace cloudfront {
|
|
|
14412
14430
|
enableAcceptEncodingBrotli?: boolean;
|
|
14413
14431
|
/**
|
|
14414
14432
|
* 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.
|
|
14415
|
-
* This field is related to the ``EnableAcceptEncodingBrotli`` field. If one or both of these fields is ``true
|
|
14433
|
+
* 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:
|
|
14416
14434
|
* + Normalizes the value of the viewer's ``Accept-Encoding`` header
|
|
14417
14435
|
* + Includes the normalized header in the cache key
|
|
14418
14436
|
* + Includes the normalized header in the request to the origin, if a request is necessary
|
|
@@ -14437,10 +14455,10 @@ export declare namespace cloudfront {
|
|
|
14437
14455
|
interface CachePolicyQueryStringsConfig {
|
|
14438
14456
|
/**
|
|
14439
14457
|
* 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:
|
|
14440
|
-
* +
|
|
14441
|
-
* +
|
|
14442
|
-
* +
|
|
14443
|
-
* +
|
|
14458
|
+
* + ``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.
|
|
14459
|
+
* + ``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.
|
|
14460
|
+
* + ``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.
|
|
14461
|
+
* + ``all`` – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
|
|
14444
14462
|
*/
|
|
14445
14463
|
queryStringBehavior: string;
|
|
14446
14464
|
/**
|
|
@@ -14672,9 +14690,9 @@ export declare namespace cloudfront {
|
|
|
14672
14690
|
trustedSigners?: string[];
|
|
14673
14691
|
/**
|
|
14674
14692
|
* 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:
|
|
14675
|
-
* +
|
|
14676
|
-
* +
|
|
14677
|
-
* +
|
|
14693
|
+
* + ``allow-all``: Viewers can use HTTP or HTTPS.
|
|
14694
|
+
* + ``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.
|
|
14695
|
+
* + ``https-only``: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).
|
|
14678
14696
|
*
|
|
14679
14697
|
* 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*.
|
|
14680
14698
|
* 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*.
|
|
@@ -14805,7 +14823,7 @@ export declare namespace cloudfront {
|
|
|
14805
14823
|
viewerCertificate?: outputs.cloudfront.DistributionViewerCertificate;
|
|
14806
14824
|
/**
|
|
14807
14825
|
* 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``.
|
|
14808
|
-
*
|
|
14826
|
+
* 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).
|
|
14809
14827
|
*/
|
|
14810
14828
|
webAclId?: string;
|
|
14811
14829
|
}
|
|
@@ -14877,7 +14895,7 @@ export declare namespace cloudfront {
|
|
|
14877
14895
|
responsePagePath?: string;
|
|
14878
14896
|
}
|
|
14879
14897
|
/**
|
|
14880
|
-
* 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)
|
|
14898
|
+
* 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.
|
|
14881
14899
|
*/
|
|
14882
14900
|
interface DistributionCustomOriginConfig {
|
|
14883
14901
|
/**
|
|
@@ -14895,9 +14913,9 @@ export declare namespace cloudfront {
|
|
|
14895
14913
|
originKeepaliveTimeout?: number;
|
|
14896
14914
|
/**
|
|
14897
14915
|
* Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:
|
|
14898
|
-
* +
|
|
14899
|
-
* +
|
|
14900
|
-
* +
|
|
14916
|
+
* + ``http-only`` – CloudFront always uses HTTP to connect to the origin.
|
|
14917
|
+
* + ``match-viewer`` – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.
|
|
14918
|
+
* + ``https-only`` – CloudFront always uses HTTPS to connect to the origin.
|
|
14901
14919
|
*/
|
|
14902
14920
|
originProtocolPolicy: string;
|
|
14903
14921
|
/**
|
|
@@ -15014,9 +15032,9 @@ export declare namespace cloudfront {
|
|
|
15014
15032
|
trustedSigners?: string[];
|
|
15015
15033
|
/**
|
|
15016
15034
|
* 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:
|
|
15017
|
-
* +
|
|
15018
|
-
* +
|
|
15019
|
-
* +
|
|
15035
|
+
* + ``allow-all``: Viewers can use HTTP or HTTPS.
|
|
15036
|
+
* + ``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.
|
|
15037
|
+
* + ``https-only``: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).
|
|
15020
15038
|
*
|
|
15021
15039
|
* 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*.
|
|
15022
15040
|
* 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*.
|
|
@@ -15089,9 +15107,9 @@ export declare namespace cloudfront {
|
|
|
15089
15107
|
locations?: string[];
|
|
15090
15108
|
/**
|
|
15091
15109
|
* The method that you want to use to restrict distribution of your content by country:
|
|
15092
|
-
* +
|
|
15093
|
-
* +
|
|
15094
|
-
* +
|
|
15110
|
+
* + ``none``: No geo restriction is enabled, meaning access to content is not restricted by client geo location.
|
|
15111
|
+
* + ``blacklist``: The ``Location`` elements specify the countries in which you don't want CloudFront to distribute your content.
|
|
15112
|
+
* + ``whitelist``: The ``Location`` elements specify the countries in which you want CloudFront to distribute your content.
|
|
15095
15113
|
*/
|
|
15096
15114
|
restrictionType: string;
|
|
15097
15115
|
}
|
|
@@ -15112,10 +15130,10 @@ export declare namespace cloudfront {
|
|
|
15112
15130
|
interface DistributionLambdaFunctionAssociation {
|
|
15113
15131
|
/**
|
|
15114
15132
|
* Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:
|
|
15115
|
-
* +
|
|
15116
|
-
* +
|
|
15117
|
-
* +
|
|
15118
|
-
* +
|
|
15133
|
+
* + ``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.
|
|
15134
|
+
* + ``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.
|
|
15135
|
+
* + ``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.
|
|
15136
|
+
* + ``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.
|
|
15119
15137
|
* If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.
|
|
15120
15138
|
*/
|
|
15121
15139
|
eventType?: string;
|
|
@@ -15129,7 +15147,7 @@ export declare namespace cloudfront {
|
|
|
15129
15147
|
lambdaFunctionArn?: string;
|
|
15130
15148
|
}
|
|
15131
15149
|
/**
|
|
15132
|
-
* 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)
|
|
15150
|
+
* 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.
|
|
15133
15151
|
* 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.
|
|
15134
15152
|
*/
|
|
15135
15153
|
interface DistributionLegacyCustomOrigin {
|
|
@@ -15354,6 +15372,9 @@ export declare namespace cloudfront {
|
|
|
15354
15372
|
*/
|
|
15355
15373
|
originShieldRegion?: string;
|
|
15356
15374
|
}
|
|
15375
|
+
/**
|
|
15376
|
+
* 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.
|
|
15377
|
+
*/
|
|
15357
15378
|
interface DistributionParameterDefinition {
|
|
15358
15379
|
/**
|
|
15359
15380
|
* The value that you assigned to the parameter.
|
|
@@ -15413,15 +15434,21 @@ export declare namespace cloudfront {
|
|
|
15413
15434
|
*/
|
|
15414
15435
|
quantity: number;
|
|
15415
15436
|
}
|
|
15437
|
+
/**
|
|
15438
|
+
* The ACMlong (ACM) certificate associated with your distribution.
|
|
15439
|
+
*/
|
|
15416
15440
|
interface DistributionTenantCertificate {
|
|
15417
15441
|
/**
|
|
15418
15442
|
* The Amazon Resource Name (ARN) of the ACM certificate.
|
|
15419
15443
|
*/
|
|
15420
15444
|
arn?: string;
|
|
15421
15445
|
}
|
|
15446
|
+
/**
|
|
15447
|
+
* 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.
|
|
15448
|
+
*/
|
|
15422
15449
|
interface DistributionTenantCustomizations {
|
|
15423
15450
|
/**
|
|
15424
|
-
* The
|
|
15451
|
+
* The ACMlong (ACM) certificate.
|
|
15425
15452
|
*/
|
|
15426
15453
|
certificate?: outputs.cloudfront.DistributionTenantCertificate;
|
|
15427
15454
|
/**
|
|
@@ -15429,10 +15456,13 @@ export declare namespace cloudfront {
|
|
|
15429
15456
|
*/
|
|
15430
15457
|
geoRestrictions?: outputs.cloudfront.DistributionTenantGeoRestrictionCustomization;
|
|
15431
15458
|
/**
|
|
15432
|
-
* The
|
|
15459
|
+
* The WAF web ACL.
|
|
15433
15460
|
*/
|
|
15434
15461
|
webAcl?: outputs.cloudfront.DistributionTenantWebAclCustomization;
|
|
15435
15462
|
}
|
|
15463
|
+
/**
|
|
15464
|
+
* The details about the domain result.
|
|
15465
|
+
*/
|
|
15436
15466
|
interface DistributionTenantDomainResult {
|
|
15437
15467
|
/**
|
|
15438
15468
|
* The specified domain.
|
|
@@ -15443,6 +15473,9 @@ export declare namespace cloudfront {
|
|
|
15443
15473
|
*/
|
|
15444
15474
|
status?: enums.cloudfront.DistributionTenantDomainResultStatus;
|
|
15445
15475
|
}
|
|
15476
|
+
/**
|
|
15477
|
+
* The customizations that you specified for the distribution tenant for geographic restrictions.
|
|
15478
|
+
*/
|
|
15446
15479
|
interface DistributionTenantGeoRestrictionCustomization {
|
|
15447
15480
|
/**
|
|
15448
15481
|
* The locations for geographic restrictions.
|
|
@@ -15450,16 +15483,18 @@ export declare namespace cloudfront {
|
|
|
15450
15483
|
locations?: string[];
|
|
15451
15484
|
/**
|
|
15452
15485
|
* The method that you want to use to restrict distribution of your content by country:
|
|
15453
|
-
*
|
|
15454
|
-
*
|
|
15455
|
-
*
|
|
15456
|
-
* - `whitelist` : The `Location` elements specify the countries in which you want CloudFront to distribute your content.
|
|
15486
|
+
* + ``none``: No geographic restriction is enabled, meaning access to content is not restricted by client geo location.
|
|
15487
|
+
* + ``blacklist``: The ``Location`` elements specify the countries in which you don't want CloudFront to distribute your content.
|
|
15488
|
+
* + ``whitelist``: The ``Location`` elements specify the countries in which you want CloudFront to distribute your content.
|
|
15457
15489
|
*/
|
|
15458
15490
|
restrictionType?: enums.cloudfront.DistributionTenantGeoRestrictionCustomizationRestrictionType;
|
|
15459
15491
|
}
|
|
15492
|
+
/**
|
|
15493
|
+
* An object that represents the request for the Amazon CloudFront managed ACM certificate.
|
|
15494
|
+
*/
|
|
15460
15495
|
interface DistributionTenantManagedCertificateRequest {
|
|
15461
15496
|
/**
|
|
15462
|
-
* You can opt out of certificate transparency logging by specifying the
|
|
15497
|
+
* 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*.
|
|
15463
15498
|
*/
|
|
15464
15499
|
certificateTransparencyLoggingPreference?: enums.cloudfront.DistributionTenantManagedCertificateRequestCertificateTransparencyLoggingPreference;
|
|
15465
15500
|
/**
|
|
@@ -15468,12 +15503,14 @@ export declare namespace cloudfront {
|
|
|
15468
15503
|
primaryDomainName?: string;
|
|
15469
15504
|
/**
|
|
15470
15505
|
* Specify how the HTTP validation token will be served when requesting the CloudFront managed ACM certificate.
|
|
15471
|
-
*
|
|
15472
|
-
* -
|
|
15473
|
-
* - 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.
|
|
15506
|
+
* + For ``cloudfront``, CloudFront will automatically serve the validation token. Choose this mode if you can point the domain's DNS to CloudFront immediately.
|
|
15507
|
+
* + 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.
|
|
15474
15508
|
*/
|
|
15475
15509
|
validationTokenHost?: enums.cloudfront.DistributionTenantManagedCertificateRequestValidationTokenHost;
|
|
15476
15510
|
}
|
|
15511
|
+
/**
|
|
15512
|
+
* 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.
|
|
15513
|
+
*/
|
|
15477
15514
|
interface DistributionTenantParameter {
|
|
15478
15515
|
/**
|
|
15479
15516
|
* The parameter name.
|
|
@@ -15484,13 +15521,16 @@ export declare namespace cloudfront {
|
|
|
15484
15521
|
*/
|
|
15485
15522
|
value?: string;
|
|
15486
15523
|
}
|
|
15524
|
+
/**
|
|
15525
|
+
* The WAF web ACL customization specified for the distribution tenant.
|
|
15526
|
+
*/
|
|
15487
15527
|
interface DistributionTenantWebAclCustomization {
|
|
15488
15528
|
/**
|
|
15489
|
-
* The action for the
|
|
15529
|
+
* 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.
|
|
15490
15530
|
*/
|
|
15491
15531
|
action?: enums.cloudfront.DistributionTenantWebAclCustomizationAction;
|
|
15492
15532
|
/**
|
|
15493
|
-
* The Amazon Resource Name (ARN) of the
|
|
15533
|
+
* The Amazon Resource Name (ARN) of the WAF web ACL.
|
|
15494
15534
|
*/
|
|
15495
15535
|
arn?: string;
|
|
15496
15536
|
}
|
|
@@ -15504,8 +15544,8 @@ export declare namespace cloudfront {
|
|
|
15504
15544
|
*
|
|
15505
15545
|
* + 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*.
|
|
15506
15546
|
* + 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):
|
|
15507
|
-
* +
|
|
15508
|
-
* +
|
|
15547
|
+
* + ``ACMCertificateArn`` (In CloudFormation, this field name is ``AcmCertificateArn``. Note the different capitalization.)
|
|
15548
|
+
* + ``IAMCertificateId`` (In CloudFormation, this field name is ``IamCertificateId``. Note the different capitalization.)
|
|
15509
15549
|
*
|
|
15510
15550
|
*
|
|
15511
15551
|
* 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``.
|
|
@@ -15521,7 +15561,7 @@ export declare namespace cloudfront {
|
|
|
15521
15561
|
/**
|
|
15522
15562
|
* If the distribution uses the CloudFront domain name such as ``d111111abcdef8.cloudfront.net``, set this field to ``true``.
|
|
15523
15563
|
* If the distribution uses ``Aliases`` (alternate domain names or CNAMEs), omit this field and specify values for the following fields:
|
|
15524
|
-
* +
|
|
15564
|
+
* + ``AcmCertificateArn`` or ``IamCertificateId`` (specify a value for one, not both)
|
|
15525
15565
|
* + ``MinimumProtocolVersion``
|
|
15526
15566
|
* + ``SslSupportMethod``
|
|
15527
15567
|
*/
|
|
@@ -15546,9 +15586,9 @@ export declare namespace cloudfront {
|
|
|
15546
15586
|
/**
|
|
15547
15587
|
* In CloudFormation, this field name is ``SslSupportMethod``. Note the different capitalization.
|
|
15548
15588
|
* If the distribution uses ``Aliases`` (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.
|
|
15549
|
-
* +
|
|
15550
|
-
* +
|
|
15551
|
-
* +
|
|
15589
|
+
* + ``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.
|
|
15590
|
+
* + ``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.
|
|
15591
|
+
* + ``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).
|
|
15552
15592
|
*
|
|
15553
15593
|
* If the distribution uses the CloudFront domain name such as ``d111111abcdef8.cloudfront.net``, don't set a value for this field.
|
|
15554
15594
|
*/
|
|
@@ -15678,9 +15718,9 @@ export declare namespace cloudfront {
|
|
|
15678
15718
|
/**
|
|
15679
15719
|
* 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*.
|
|
15680
15720
|
* This field can have one of the following values:
|
|
15681
|
-
* +
|
|
15682
|
-
* +
|
|
15683
|
-
* +
|
|
15721
|
+
* + ``always`` – CloudFront signs all origin requests, overwriting the ``Authorization`` header from the viewer request if one exists.
|
|
15722
|
+
* + ``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.
|
|
15723
|
+
* + ``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.*
|
|
15684
15724
|
*/
|
|
15685
15725
|
signingBehavior: string;
|
|
15686
15726
|
/**
|
|
@@ -15725,10 +15765,10 @@ export declare namespace cloudfront {
|
|
|
15725
15765
|
interface OriginRequestPolicyCookiesConfig {
|
|
15726
15766
|
/**
|
|
15727
15767
|
* Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
|
|
15728
|
-
* +
|
|
15729
|
-
* +
|
|
15730
|
-
* +
|
|
15731
|
-
* +
|
|
15768
|
+
* + ``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.
|
|
15769
|
+
* + ``whitelist`` – Only the cookies in viewer requests that are listed in the ``CookieNames`` type are included in requests that CloudFront sends to the origin.
|
|
15770
|
+
* + ``all`` – All cookies in viewer requests are included in requests that CloudFront sends to the origin.
|
|
15771
|
+
* + ``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.
|
|
15732
15772
|
*/
|
|
15733
15773
|
cookieBehavior: string;
|
|
15734
15774
|
/**
|
|
@@ -15742,11 +15782,11 @@ export declare namespace cloudfront {
|
|
|
15742
15782
|
interface OriginRequestPolicyHeadersConfig {
|
|
15743
15783
|
/**
|
|
15744
15784
|
* Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:
|
|
15745
|
-
* +
|
|
15746
|
-
* +
|
|
15747
|
-
* +
|
|
15748
|
-
* +
|
|
15749
|
-
* +
|
|
15785
|
+
* + ``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.
|
|
15786
|
+
* + ``whitelist`` – Only the HTTP headers that are listed in the ``Headers`` type are included in requests that CloudFront sends to the origin.
|
|
15787
|
+
* + ``allViewer`` – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.
|
|
15788
|
+
* + ``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.
|
|
15789
|
+
* + ``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.
|
|
15750
15790
|
*/
|
|
15751
15791
|
headerBehavior: string;
|
|
15752
15792
|
/**
|
|
@@ -15760,10 +15800,10 @@ export declare namespace cloudfront {
|
|
|
15760
15800
|
interface OriginRequestPolicyQueryStringsConfig {
|
|
15761
15801
|
/**
|
|
15762
15802
|
* Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
|
|
15763
|
-
* +
|
|
15764
|
-
* +
|
|
15765
|
-
* +
|
|
15766
|
-
* +
|
|
15803
|
+
* + ``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.
|
|
15804
|
+
* + ``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.
|
|
15805
|
+
* + ``all`` – All query strings in viewer requests are included in requests that CloudFront sends to the origin.
|
|
15806
|
+
* + ``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.
|
|
15767
15807
|
*/
|
|
15768
15808
|
queryStringBehavior: string;
|
|
15769
15809
|
/**
|
|
@@ -15793,11 +15833,11 @@ export declare namespace cloudfront {
|
|
|
15793
15833
|
name: string;
|
|
15794
15834
|
}
|
|
15795
15835
|
/**
|
|
15796
|
-
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data
|
|
15836
|
+
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.
|
|
15797
15837
|
*/
|
|
15798
15838
|
interface RealtimeLogConfigEndPoint {
|
|
15799
15839
|
/**
|
|
15800
|
-
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
|
|
15840
|
+
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
|
|
15801
15841
|
*/
|
|
15802
15842
|
kinesisStreamConfig: outputs.cloudfront.RealtimeLogConfigKinesisStreamConfig;
|
|
15803
15843
|
/**
|
|
@@ -15845,7 +15885,7 @@ export declare namespace cloudfront {
|
|
|
15845
15885
|
* + ``PUT``
|
|
15846
15886
|
* + ``ALL``
|
|
15847
15887
|
*
|
|
15848
|
-
*
|
|
15888
|
+
* ``ALL`` is a special value that includes all of the listed HTTP methods.
|
|
15849
15889
|
*/
|
|
15850
15890
|
items: string[];
|
|
15851
15891
|
}
|
|
@@ -16983,6 +17023,10 @@ export declare namespace codepipeline {
|
|
|
16983
17023
|
* The name of the environment variable.
|
|
16984
17024
|
*/
|
|
16985
17025
|
name: string;
|
|
17026
|
+
/**
|
|
17027
|
+
* The type of the environment variable.
|
|
17028
|
+
*/
|
|
17029
|
+
type?: enums.codepipeline.PipelineEnvironmentVariableType;
|
|
16986
17030
|
/**
|
|
16987
17031
|
* The value of the environment variable.
|
|
16988
17032
|
*/
|
|
@@ -22496,6 +22540,10 @@ export declare namespace deadline {
|
|
|
22496
22540
|
sizeGiB?: number;
|
|
22497
22541
|
throughputMiB?: number;
|
|
22498
22542
|
}
|
|
22543
|
+
interface FleetHostConfiguration {
|
|
22544
|
+
scriptBody: string;
|
|
22545
|
+
scriptTimeoutSeconds?: number;
|
|
22546
|
+
}
|
|
22499
22547
|
interface FleetMemoryMiBRange {
|
|
22500
22548
|
max?: number;
|
|
22501
22549
|
min: number;
|
|
@@ -25192,6 +25240,20 @@ export declare namespace ec2 {
|
|
|
25192
25240
|
* Valid Range: Minimum value of 125. Maximum value of 1000.
|
|
25193
25241
|
*/
|
|
25194
25242
|
throughput?: number;
|
|
25243
|
+
/**
|
|
25244
|
+
* Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume. This is also known as *volume initialization* . Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation.
|
|
25245
|
+
*
|
|
25246
|
+
* This parameter is supported only for volumes created from snapshots. Omit this parameter if:
|
|
25247
|
+
*
|
|
25248
|
+
* - You want to create the volume using fast snapshot restore. You must specify a snapshot that is enabled for fast snapshot restore. In this case, the volume is fully initialized at creation.
|
|
25249
|
+
*
|
|
25250
|
+
* > If you specify a snapshot that is enabled for fast snapshot restore and a volume initialization rate, the volume will be initialized at the specified rate instead of fast snapshot restore.
|
|
25251
|
+
* - You want to create a volume that is initialized at the default rate.
|
|
25252
|
+
*
|
|
25253
|
+
* For more information, see [Initialize Amazon EBS volumes](https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html) in the *Amazon EC2 User Guide* .
|
|
25254
|
+
*
|
|
25255
|
+
* Valid range: 100 - 300 MiB/s
|
|
25256
|
+
*/
|
|
25195
25257
|
volumeInitializationRate?: number;
|
|
25196
25258
|
/**
|
|
25197
25259
|
* The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
|
|
@@ -28953,11 +29015,11 @@ export declare namespace ecs {
|
|
|
28953
29015
|
*/
|
|
28954
29016
|
interface ServiceManagedEbsVolumeConfiguration {
|
|
28955
29017
|
/**
|
|
28956
|
-
* Indicates whether the volume should be encrypted. If
|
|
29018
|
+
* Indicates whether the volume should be encrypted. If you turn on Region-level Amazon EBS encryption by default but set this value as ``false``, the setting is overridden and the volume is encrypted with the KMS key specified for Amazon EBS encryption by default. This parameter maps 1:1 with the ``Encrypted`` parameter of the [CreateVolume API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html) in the *Amazon EC2 API Reference*.
|
|
28957
29019
|
*/
|
|
28958
29020
|
encrypted?: boolean;
|
|
28959
29021
|
/**
|
|
28960
|
-
* The filesystem type for the volume. For volumes created from a snapshot, you must specify the same filesystem type that the volume was using when the snapshot was created. If there is a filesystem type mismatch, the
|
|
29022
|
+
* The filesystem type for the volume. For volumes created from a snapshot, you must specify the same filesystem type that the volume was using when the snapshot was created. If there is a filesystem type mismatch, the tasks will fail to start.
|
|
28961
29023
|
* The available Linux filesystem types are
|
|
28962
29024
|
* ``ext3``, ``ext4``, and ``xfs``. If no value is specified, the ``xfs`` filesystem type is used by default.
|
|
28963
29025
|
* The available Windows filesystem types are ``NTFS``.
|
|
@@ -28975,7 +29037,7 @@ export declare namespace ecs {
|
|
|
28975
29037
|
*/
|
|
28976
29038
|
iops?: number;
|
|
28977
29039
|
/**
|
|
28978
|
-
* The Amazon Resource Name (ARN) identifier of the AWS Key Management Service key to use for Amazon EBS encryption. When
|
|
29040
|
+
* The Amazon Resource Name (ARN) identifier of the AWS Key Management Service key to use for Amazon EBS encryption. When a key is specified using this parameter, it overrides Amazon EBS default encryption or any KMS key that you specified for cluster-level managed storage encryption. This parameter maps 1:1 with the ``KmsKeyId`` parameter of the [CreateVolume API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html) in the *Amazon EC2 API Reference*. For more information about encrypting Amazon EBS volumes attached to tasks, see [Encrypt data stored in Amazon EBS volumes attached to Amazon ECS tasks](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ebs-kms-encryption.html).
|
|
28979
29041
|
* AWS authenticates the AWS Key Management Service key asynchronously. Therefore, if you specify an ID, alias, or ARN that is invalid, the action can appear to complete, but eventually fails.
|
|
28980
29042
|
*/
|
|
28981
29043
|
kmsKeyId?: string;
|
|
@@ -28993,7 +29055,7 @@ export declare namespace ecs {
|
|
|
28993
29055
|
*/
|
|
28994
29056
|
sizeInGiB?: number;
|
|
28995
29057
|
/**
|
|
28996
|
-
* The snapshot that Amazon ECS uses to create the
|
|
29058
|
+
* The snapshot that Amazon ECS uses to create volumes for attachment to tasks maintained by the service. You must specify either ``snapshotId`` or ``sizeInGiB`` in your volume configuration. This parameter maps 1:1 with the ``SnapshotId`` parameter of the [CreateVolume API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html) in the *Amazon EC2 API Reference*.
|
|
28997
29059
|
*/
|
|
28998
29060
|
snapshotId?: string;
|
|
28999
29061
|
/**
|
|
@@ -29005,6 +29067,9 @@ export declare namespace ecs {
|
|
|
29005
29067
|
* This parameter is only supported for the ``gp3`` volume type.
|
|
29006
29068
|
*/
|
|
29007
29069
|
throughput?: number;
|
|
29070
|
+
/**
|
|
29071
|
+
* The rate, in MiB/s, at which data is fetched from a snapshot of an existing EBS volume to create new volumes for attachment to the tasks maintained by the service. This property can be specified only if you specify a ``snapshotId``. For more information, see [Initialize Amazon EBS volumes](https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html) in the *Amazon EBS User Guide*.
|
|
29072
|
+
*/
|
|
29008
29073
|
volumeInitializationRate?: number;
|
|
29009
29074
|
/**
|
|
29010
29075
|
* The volume type. This parameter maps 1:1 with the ``VolumeType`` parameter of the [CreateVolume API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html) in the *Amazon EC2 API Reference*. For more information, see [Amazon EBS volume types](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volume-types.html) in the *Amazon EC2 User Guide*.
|
|
@@ -53264,7 +53329,13 @@ export declare namespace omics {
|
|
|
53264
53329
|
optional?: boolean;
|
|
53265
53330
|
}
|
|
53266
53331
|
interface WorkflowVersionWorkflowParameter {
|
|
53332
|
+
/**
|
|
53333
|
+
* The parameter's description.
|
|
53334
|
+
*/
|
|
53267
53335
|
description?: string;
|
|
53336
|
+
/**
|
|
53337
|
+
* Whether the parameter is optional.
|
|
53338
|
+
*/
|
|
53268
53339
|
optional?: boolean;
|
|
53269
53340
|
}
|
|
53270
53341
|
}
|
|
@@ -89099,6 +89170,9 @@ export declare namespace sagemaker {
|
|
|
89099
89170
|
* The SageMaker image name that you are hiding from the Studio user interface.
|
|
89100
89171
|
*/
|
|
89101
89172
|
sageMakerImageName?: enums.sagemaker.DomainHiddenSageMakerImageSageMakerImageName;
|
|
89173
|
+
/**
|
|
89174
|
+
* The version aliases you are hiding from the Studio user interface.
|
|
89175
|
+
*/
|
|
89102
89176
|
versionAliases?: string[];
|
|
89103
89177
|
}
|
|
89104
89178
|
interface DomainIdleSettings {
|
|
@@ -92519,6 +92593,9 @@ export declare namespace sagemaker {
|
|
|
92519
92593
|
* The SageMaker image name that you are hiding from the Studio user interface.
|
|
92520
92594
|
*/
|
|
92521
92595
|
sageMakerImageName?: enums.sagemaker.UserProfileHiddenSageMakerImageSageMakerImageName;
|
|
92596
|
+
/**
|
|
92597
|
+
* The version aliases you are hiding from the Studio user interface.
|
|
92598
|
+
*/
|
|
92522
92599
|
versionAliases?: string[];
|
|
92523
92600
|
}
|
|
92524
92601
|
interface UserProfileIdleSettings {
|
package/types/output.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAm3lBjF,IAAiB,MAAM,CAgHtB;AAhHD,WAAiB,MAAM;IAoDnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;;QACrD,uCACO,GAAG,KACN,qBAAqB,EAAE,MAAA,CAAC,GAAG,CAAC,qBAAqB,CAAC,mCAAI,CAAC,IACzD;IACN,CAAC;IALe,gCAAyB,4BAKxC,CAAA;AAoDL,CAAC,EAhHgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAgHtB"}
|
|
@@ -44,6 +44,9 @@ export interface GetWorkspacesPoolResult {
|
|
|
44
44
|
* The identifier of the pool.
|
|
45
45
|
*/
|
|
46
46
|
readonly poolId?: string;
|
|
47
|
+
/**
|
|
48
|
+
* The running mode of the pool.
|
|
49
|
+
*/
|
|
47
50
|
readonly runningMode?: enums.workspaces.WorkspacesPoolRunningMode;
|
|
48
51
|
readonly tags?: outputs.Tag[];
|
|
49
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWorkspacesPool.js","sourceRoot":"","sources":["../../workspaces/getWorkspacesPool.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yCAAyC,EAAE;QACpE,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC;
|
|
1
|
+
{"version":3,"file":"getWorkspacesPool.js","sourceRoot":"","sources":["../../workspaces/getWorkspacesPool.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yCAAyC,EAAE;QACpE,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC;AAoDD;;GAEG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAAiC;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,yCAAyC,EAAE;QAC1E,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC"}
|
|
@@ -56,6 +56,9 @@ export declare class WorkspacesPool extends pulumi.CustomResource {
|
|
|
56
56
|
* The name of the pool.
|
|
57
57
|
*/
|
|
58
58
|
readonly poolName: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* The running mode of the pool.
|
|
61
|
+
*/
|
|
59
62
|
readonly runningMode: pulumi.Output<enums.workspaces.WorkspacesPoolRunningMode | undefined>;
|
|
60
63
|
readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
|
|
61
64
|
/**
|
|
@@ -99,6 +102,9 @@ export interface WorkspacesPoolArgs {
|
|
|
99
102
|
* The name of the pool.
|
|
100
103
|
*/
|
|
101
104
|
poolName?: pulumi.Input<string>;
|
|
105
|
+
/**
|
|
106
|
+
* The running mode of the pool.
|
|
107
|
+
*/
|
|
102
108
|
runningMode?: pulumi.Input<enums.workspaces.WorkspacesPoolRunningMode>;
|
|
103
109
|
tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
|
|
104
110
|
/**
|