@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/input.d.ts
CHANGED
|
@@ -5689,11 +5689,23 @@ export declare namespace appsync {
|
|
|
5689
5689
|
authType?: pulumi.Input<enums.appsync.ChannelNamespaceAuthenticationType>;
|
|
5690
5690
|
}
|
|
5691
5691
|
interface ChannelNamespaceHandlerConfigArgs {
|
|
5692
|
+
/**
|
|
5693
|
+
* The behavior for the handler.
|
|
5694
|
+
*/
|
|
5692
5695
|
behavior: pulumi.Input<enums.appsync.ChannelNamespaceHandlerBehavior>;
|
|
5696
|
+
/**
|
|
5697
|
+
* The integration data source configuration for the handler.
|
|
5698
|
+
*/
|
|
5693
5699
|
integration: pulumi.Input<inputs.appsync.ChannelNamespaceIntegrationArgs>;
|
|
5694
5700
|
}
|
|
5695
5701
|
interface ChannelNamespaceHandlerConfigsArgs {
|
|
5702
|
+
/**
|
|
5703
|
+
* The configuration for the `OnPublish` handler.
|
|
5704
|
+
*/
|
|
5696
5705
|
onPublish?: pulumi.Input<inputs.appsync.ChannelNamespaceHandlerConfigArgs>;
|
|
5706
|
+
/**
|
|
5707
|
+
* The configuration for the `OnSubscribe` handler.
|
|
5708
|
+
*/
|
|
5697
5709
|
onSubscribe?: pulumi.Input<inputs.appsync.ChannelNamespaceHandlerConfigArgs>;
|
|
5698
5710
|
}
|
|
5699
5711
|
interface ChannelNamespaceIntegrationArgs {
|
|
@@ -5701,9 +5713,15 @@ export declare namespace appsync {
|
|
|
5701
5713
|
* Data source to invoke for this integration.
|
|
5702
5714
|
*/
|
|
5703
5715
|
dataSourceName: pulumi.Input<string>;
|
|
5716
|
+
/**
|
|
5717
|
+
* The configuration for a Lambda data source.
|
|
5718
|
+
*/
|
|
5704
5719
|
lambdaConfig?: pulumi.Input<inputs.appsync.ChannelNamespaceLambdaConfigArgs>;
|
|
5705
5720
|
}
|
|
5706
5721
|
interface ChannelNamespaceLambdaConfigArgs {
|
|
5722
|
+
/**
|
|
5723
|
+
* The invocation type for a Lambda data source.
|
|
5724
|
+
*/
|
|
5707
5725
|
invokeType: pulumi.Input<enums.appsync.ChannelNamespaceInvokeType>;
|
|
5708
5726
|
}
|
|
5709
5727
|
interface DataSourceAuthorizationConfigArgs {
|
|
@@ -13670,10 +13688,10 @@ export declare namespace cloudfront {
|
|
|
13670
13688
|
interface CachePolicyCookiesConfigArgs {
|
|
13671
13689
|
/**
|
|
13672
13690
|
* 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:
|
|
13673
|
-
* +
|
|
13674
|
-
* +
|
|
13675
|
-
* +
|
|
13676
|
-
* +
|
|
13691
|
+
* + ``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.
|
|
13692
|
+
* + ``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.
|
|
13693
|
+
* + ``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.
|
|
13694
|
+
* + ``all`` – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
|
|
13677
13695
|
*/
|
|
13678
13696
|
cookieBehavior: pulumi.Input<string>;
|
|
13679
13697
|
/**
|
|
@@ -13687,8 +13705,8 @@ export declare namespace cloudfront {
|
|
|
13687
13705
|
interface CachePolicyHeadersConfigArgs {
|
|
13688
13706
|
/**
|
|
13689
13707
|
* Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
|
|
13690
|
-
* +
|
|
13691
|
-
* +
|
|
13708
|
+
* + ``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.
|
|
13709
|
+
* + ``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.
|
|
13692
13710
|
*/
|
|
13693
13711
|
headerBehavior: pulumi.Input<string>;
|
|
13694
13712
|
/**
|
|
@@ -13707,7 +13725,7 @@ export declare namespace cloudfront {
|
|
|
13707
13725
|
cookiesConfig: pulumi.Input<inputs.cloudfront.CachePolicyCookiesConfigArgs>;
|
|
13708
13726
|
/**
|
|
13709
13727
|
* 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.
|
|
13710
|
-
* This field is related to the ``EnableAcceptEncodingGzip`` field. If one or both of these fields is ``true
|
|
13728
|
+
* 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:
|
|
13711
13729
|
* + Normalizes the value of the viewer's ``Accept-Encoding`` header
|
|
13712
13730
|
* + Includes the normalized header in the cache key
|
|
13713
13731
|
* + Includes the normalized header in the request to the origin, if a request is necessary
|
|
@@ -13719,7 +13737,7 @@ export declare namespace cloudfront {
|
|
|
13719
13737
|
enableAcceptEncodingBrotli?: pulumi.Input<boolean>;
|
|
13720
13738
|
/**
|
|
13721
13739
|
* 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.
|
|
13722
|
-
* This field is related to the ``EnableAcceptEncodingBrotli`` field. If one or both of these fields is ``true
|
|
13740
|
+
* 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:
|
|
13723
13741
|
* + Normalizes the value of the viewer's ``Accept-Encoding`` header
|
|
13724
13742
|
* + Includes the normalized header in the cache key
|
|
13725
13743
|
* + Includes the normalized header in the request to the origin, if a request is necessary
|
|
@@ -13744,10 +13762,10 @@ export declare namespace cloudfront {
|
|
|
13744
13762
|
interface CachePolicyQueryStringsConfigArgs {
|
|
13745
13763
|
/**
|
|
13746
13764
|
* 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:
|
|
13747
|
-
* +
|
|
13748
|
-
* +
|
|
13749
|
-
* +
|
|
13750
|
-
* +
|
|
13765
|
+
* + ``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.
|
|
13766
|
+
* + ``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.
|
|
13767
|
+
* + ``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.
|
|
13768
|
+
* + ``all`` – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
|
|
13751
13769
|
*/
|
|
13752
13770
|
queryStringBehavior: pulumi.Input<string>;
|
|
13753
13771
|
/**
|
|
@@ -13979,9 +13997,9 @@ export declare namespace cloudfront {
|
|
|
13979
13997
|
trustedSigners?: pulumi.Input<pulumi.Input<string>[]>;
|
|
13980
13998
|
/**
|
|
13981
13999
|
* 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:
|
|
13982
|
-
* +
|
|
13983
|
-
* +
|
|
13984
|
-
* +
|
|
14000
|
+
* + ``allow-all``: Viewers can use HTTP or HTTPS.
|
|
14001
|
+
* + ``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.
|
|
14002
|
+
* + ``https-only``: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).
|
|
13985
14003
|
*
|
|
13986
14004
|
* 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*.
|
|
13987
14005
|
* 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*.
|
|
@@ -14112,7 +14130,7 @@ export declare namespace cloudfront {
|
|
|
14112
14130
|
viewerCertificate?: pulumi.Input<inputs.cloudfront.DistributionViewerCertificateArgs>;
|
|
14113
14131
|
/**
|
|
14114
14132
|
* 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``.
|
|
14115
|
-
*
|
|
14133
|
+
* 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).
|
|
14116
14134
|
*/
|
|
14117
14135
|
webAclId?: pulumi.Input<string>;
|
|
14118
14136
|
}
|
|
@@ -14184,7 +14202,7 @@ export declare namespace cloudfront {
|
|
|
14184
14202
|
responsePagePath?: pulumi.Input<string>;
|
|
14185
14203
|
}
|
|
14186
14204
|
/**
|
|
14187
|
-
* 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)
|
|
14205
|
+
* 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.
|
|
14188
14206
|
*/
|
|
14189
14207
|
interface DistributionCustomOriginConfigArgs {
|
|
14190
14208
|
/**
|
|
@@ -14202,9 +14220,9 @@ export declare namespace cloudfront {
|
|
|
14202
14220
|
originKeepaliveTimeout?: pulumi.Input<number>;
|
|
14203
14221
|
/**
|
|
14204
14222
|
* Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:
|
|
14205
|
-
* +
|
|
14206
|
-
* +
|
|
14207
|
-
* +
|
|
14223
|
+
* + ``http-only`` – CloudFront always uses HTTP to connect to the origin.
|
|
14224
|
+
* + ``match-viewer`` – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.
|
|
14225
|
+
* + ``https-only`` – CloudFront always uses HTTPS to connect to the origin.
|
|
14208
14226
|
*/
|
|
14209
14227
|
originProtocolPolicy: pulumi.Input<string>;
|
|
14210
14228
|
/**
|
|
@@ -14321,9 +14339,9 @@ export declare namespace cloudfront {
|
|
|
14321
14339
|
trustedSigners?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14322
14340
|
/**
|
|
14323
14341
|
* 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:
|
|
14324
|
-
* +
|
|
14325
|
-
* +
|
|
14326
|
-
* +
|
|
14342
|
+
* + ``allow-all``: Viewers can use HTTP or HTTPS.
|
|
14343
|
+
* + ``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.
|
|
14344
|
+
* + ``https-only``: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).
|
|
14327
14345
|
*
|
|
14328
14346
|
* 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*.
|
|
14329
14347
|
* 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*.
|
|
@@ -14396,9 +14414,9 @@ export declare namespace cloudfront {
|
|
|
14396
14414
|
locations?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14397
14415
|
/**
|
|
14398
14416
|
* The method that you want to use to restrict distribution of your content by country:
|
|
14399
|
-
* +
|
|
14400
|
-
* +
|
|
14401
|
-
* +
|
|
14417
|
+
* + ``none``: No geo restriction is enabled, meaning access to content is not restricted by client geo location.
|
|
14418
|
+
* + ``blacklist``: The ``Location`` elements specify the countries in which you don't want CloudFront to distribute your content.
|
|
14419
|
+
* + ``whitelist``: The ``Location`` elements specify the countries in which you want CloudFront to distribute your content.
|
|
14402
14420
|
*/
|
|
14403
14421
|
restrictionType: pulumi.Input<string>;
|
|
14404
14422
|
}
|
|
@@ -14419,10 +14437,10 @@ export declare namespace cloudfront {
|
|
|
14419
14437
|
interface DistributionLambdaFunctionAssociationArgs {
|
|
14420
14438
|
/**
|
|
14421
14439
|
* Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:
|
|
14422
|
-
* +
|
|
14423
|
-
* +
|
|
14424
|
-
* +
|
|
14425
|
-
* +
|
|
14440
|
+
* + ``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.
|
|
14441
|
+
* + ``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.
|
|
14442
|
+
* + ``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.
|
|
14443
|
+
* + ``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.
|
|
14426
14444
|
* If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.
|
|
14427
14445
|
*/
|
|
14428
14446
|
eventType?: pulumi.Input<string>;
|
|
@@ -14436,7 +14454,7 @@ export declare namespace cloudfront {
|
|
|
14436
14454
|
lambdaFunctionArn?: pulumi.Input<string>;
|
|
14437
14455
|
}
|
|
14438
14456
|
/**
|
|
14439
|
-
* 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)
|
|
14457
|
+
* 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.
|
|
14440
14458
|
* 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.
|
|
14441
14459
|
*/
|
|
14442
14460
|
interface DistributionLegacyCustomOriginArgs {
|
|
@@ -14661,6 +14679,9 @@ export declare namespace cloudfront {
|
|
|
14661
14679
|
*/
|
|
14662
14680
|
originShieldRegion?: pulumi.Input<string>;
|
|
14663
14681
|
}
|
|
14682
|
+
/**
|
|
14683
|
+
* 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.
|
|
14684
|
+
*/
|
|
14664
14685
|
interface DistributionParameterDefinitionArgs {
|
|
14665
14686
|
/**
|
|
14666
14687
|
* The value that you assigned to the parameter.
|
|
@@ -14720,15 +14741,21 @@ export declare namespace cloudfront {
|
|
|
14720
14741
|
*/
|
|
14721
14742
|
quantity: pulumi.Input<number>;
|
|
14722
14743
|
}
|
|
14744
|
+
/**
|
|
14745
|
+
* The ACMlong (ACM) certificate associated with your distribution.
|
|
14746
|
+
*/
|
|
14723
14747
|
interface DistributionTenantCertificateArgs {
|
|
14724
14748
|
/**
|
|
14725
14749
|
* The Amazon Resource Name (ARN) of the ACM certificate.
|
|
14726
14750
|
*/
|
|
14727
14751
|
arn?: pulumi.Input<string>;
|
|
14728
14752
|
}
|
|
14753
|
+
/**
|
|
14754
|
+
* 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.
|
|
14755
|
+
*/
|
|
14729
14756
|
interface DistributionTenantCustomizationsArgs {
|
|
14730
14757
|
/**
|
|
14731
|
-
* The
|
|
14758
|
+
* The ACMlong (ACM) certificate.
|
|
14732
14759
|
*/
|
|
14733
14760
|
certificate?: pulumi.Input<inputs.cloudfront.DistributionTenantCertificateArgs>;
|
|
14734
14761
|
/**
|
|
@@ -14736,10 +14763,13 @@ export declare namespace cloudfront {
|
|
|
14736
14763
|
*/
|
|
14737
14764
|
geoRestrictions?: pulumi.Input<inputs.cloudfront.DistributionTenantGeoRestrictionCustomizationArgs>;
|
|
14738
14765
|
/**
|
|
14739
|
-
* The
|
|
14766
|
+
* The WAF web ACL.
|
|
14740
14767
|
*/
|
|
14741
14768
|
webAcl?: pulumi.Input<inputs.cloudfront.DistributionTenantWebAclCustomizationArgs>;
|
|
14742
14769
|
}
|
|
14770
|
+
/**
|
|
14771
|
+
* The customizations that you specified for the distribution tenant for geographic restrictions.
|
|
14772
|
+
*/
|
|
14743
14773
|
interface DistributionTenantGeoRestrictionCustomizationArgs {
|
|
14744
14774
|
/**
|
|
14745
14775
|
* The locations for geographic restrictions.
|
|
@@ -14747,16 +14777,18 @@ export declare namespace cloudfront {
|
|
|
14747
14777
|
locations?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14748
14778
|
/**
|
|
14749
14779
|
* The method that you want to use to restrict distribution of your content by country:
|
|
14750
|
-
*
|
|
14751
|
-
*
|
|
14752
|
-
*
|
|
14753
|
-
* - `whitelist` : The `Location` elements specify the countries in which you want CloudFront to distribute your content.
|
|
14780
|
+
* + ``none``: No geographic restriction is enabled, meaning access to content is not restricted by client geo location.
|
|
14781
|
+
* + ``blacklist``: The ``Location`` elements specify the countries in which you don't want CloudFront to distribute your content.
|
|
14782
|
+
* + ``whitelist``: The ``Location`` elements specify the countries in which you want CloudFront to distribute your content.
|
|
14754
14783
|
*/
|
|
14755
14784
|
restrictionType?: pulumi.Input<enums.cloudfront.DistributionTenantGeoRestrictionCustomizationRestrictionType>;
|
|
14756
14785
|
}
|
|
14786
|
+
/**
|
|
14787
|
+
* An object that represents the request for the Amazon CloudFront managed ACM certificate.
|
|
14788
|
+
*/
|
|
14757
14789
|
interface DistributionTenantManagedCertificateRequestArgs {
|
|
14758
14790
|
/**
|
|
14759
|
-
* You can opt out of certificate transparency logging by specifying the
|
|
14791
|
+
* 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*.
|
|
14760
14792
|
*/
|
|
14761
14793
|
certificateTransparencyLoggingPreference?: pulumi.Input<enums.cloudfront.DistributionTenantManagedCertificateRequestCertificateTransparencyLoggingPreference>;
|
|
14762
14794
|
/**
|
|
@@ -14765,12 +14797,14 @@ export declare namespace cloudfront {
|
|
|
14765
14797
|
primaryDomainName?: pulumi.Input<string>;
|
|
14766
14798
|
/**
|
|
14767
14799
|
* Specify how the HTTP validation token will be served when requesting the CloudFront managed ACM certificate.
|
|
14768
|
-
*
|
|
14769
|
-
* -
|
|
14770
|
-
* - 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.
|
|
14800
|
+
* + For ``cloudfront``, CloudFront will automatically serve the validation token. Choose this mode if you can point the domain's DNS to CloudFront immediately.
|
|
14801
|
+
* + 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.
|
|
14771
14802
|
*/
|
|
14772
14803
|
validationTokenHost?: pulumi.Input<enums.cloudfront.DistributionTenantManagedCertificateRequestValidationTokenHost>;
|
|
14773
14804
|
}
|
|
14805
|
+
/**
|
|
14806
|
+
* 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.
|
|
14807
|
+
*/
|
|
14774
14808
|
interface DistributionTenantParameterArgs {
|
|
14775
14809
|
/**
|
|
14776
14810
|
* The parameter name.
|
|
@@ -14781,13 +14815,16 @@ export declare namespace cloudfront {
|
|
|
14781
14815
|
*/
|
|
14782
14816
|
value?: pulumi.Input<string>;
|
|
14783
14817
|
}
|
|
14818
|
+
/**
|
|
14819
|
+
* The WAF web ACL customization specified for the distribution tenant.
|
|
14820
|
+
*/
|
|
14784
14821
|
interface DistributionTenantWebAclCustomizationArgs {
|
|
14785
14822
|
/**
|
|
14786
|
-
* The action for the
|
|
14823
|
+
* 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.
|
|
14787
14824
|
*/
|
|
14788
14825
|
action?: pulumi.Input<enums.cloudfront.DistributionTenantWebAclCustomizationAction>;
|
|
14789
14826
|
/**
|
|
14790
|
-
* The Amazon Resource Name (ARN) of the
|
|
14827
|
+
* The Amazon Resource Name (ARN) of the WAF web ACL.
|
|
14791
14828
|
*/
|
|
14792
14829
|
arn?: pulumi.Input<string>;
|
|
14793
14830
|
}
|
|
@@ -14801,8 +14838,8 @@ export declare namespace cloudfront {
|
|
|
14801
14838
|
*
|
|
14802
14839
|
* + 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*.
|
|
14803
14840
|
* + 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):
|
|
14804
|
-
* +
|
|
14805
|
-
* +
|
|
14841
|
+
* + ``ACMCertificateArn`` (In CloudFormation, this field name is ``AcmCertificateArn``. Note the different capitalization.)
|
|
14842
|
+
* + ``IAMCertificateId`` (In CloudFormation, this field name is ``IamCertificateId``. Note the different capitalization.)
|
|
14806
14843
|
*
|
|
14807
14844
|
*
|
|
14808
14845
|
* 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``.
|
|
@@ -14818,7 +14855,7 @@ export declare namespace cloudfront {
|
|
|
14818
14855
|
/**
|
|
14819
14856
|
* If the distribution uses the CloudFront domain name such as ``d111111abcdef8.cloudfront.net``, set this field to ``true``.
|
|
14820
14857
|
* If the distribution uses ``Aliases`` (alternate domain names or CNAMEs), omit this field and specify values for the following fields:
|
|
14821
|
-
* +
|
|
14858
|
+
* + ``AcmCertificateArn`` or ``IamCertificateId`` (specify a value for one, not both)
|
|
14822
14859
|
* + ``MinimumProtocolVersion``
|
|
14823
14860
|
* + ``SslSupportMethod``
|
|
14824
14861
|
*/
|
|
@@ -14843,9 +14880,9 @@ export declare namespace cloudfront {
|
|
|
14843
14880
|
/**
|
|
14844
14881
|
* In CloudFormation, this field name is ``SslSupportMethod``. Note the different capitalization.
|
|
14845
14882
|
* If the distribution uses ``Aliases`` (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.
|
|
14846
|
-
* +
|
|
14847
|
-
* +
|
|
14848
|
-
* +
|
|
14883
|
+
* + ``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.
|
|
14884
|
+
* + ``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.
|
|
14885
|
+
* + ``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).
|
|
14849
14886
|
*
|
|
14850
14887
|
* If the distribution uses the CloudFront domain name such as ``d111111abcdef8.cloudfront.net``, don't set a value for this field.
|
|
14851
14888
|
*/
|
|
@@ -14975,9 +15012,9 @@ export declare namespace cloudfront {
|
|
|
14975
15012
|
/**
|
|
14976
15013
|
* 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*.
|
|
14977
15014
|
* This field can have one of the following values:
|
|
14978
|
-
* +
|
|
14979
|
-
* +
|
|
14980
|
-
* +
|
|
15015
|
+
* + ``always`` – CloudFront signs all origin requests, overwriting the ``Authorization`` header from the viewer request if one exists.
|
|
15016
|
+
* + ``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.
|
|
15017
|
+
* + ``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.*
|
|
14981
15018
|
*/
|
|
14982
15019
|
signingBehavior: pulumi.Input<string>;
|
|
14983
15020
|
/**
|
|
@@ -15022,10 +15059,10 @@ export declare namespace cloudfront {
|
|
|
15022
15059
|
interface OriginRequestPolicyCookiesConfigArgs {
|
|
15023
15060
|
/**
|
|
15024
15061
|
* Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
|
|
15025
|
-
* +
|
|
15026
|
-
* +
|
|
15027
|
-
* +
|
|
15028
|
-
* +
|
|
15062
|
+
* + ``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.
|
|
15063
|
+
* + ``whitelist`` – Only the cookies in viewer requests that are listed in the ``CookieNames`` type are included in requests that CloudFront sends to the origin.
|
|
15064
|
+
* + ``all`` – All cookies in viewer requests are included in requests that CloudFront sends to the origin.
|
|
15065
|
+
* + ``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.
|
|
15029
15066
|
*/
|
|
15030
15067
|
cookieBehavior: pulumi.Input<string>;
|
|
15031
15068
|
/**
|
|
@@ -15039,11 +15076,11 @@ export declare namespace cloudfront {
|
|
|
15039
15076
|
interface OriginRequestPolicyHeadersConfigArgs {
|
|
15040
15077
|
/**
|
|
15041
15078
|
* Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:
|
|
15042
|
-
* +
|
|
15043
|
-
* +
|
|
15044
|
-
* +
|
|
15045
|
-
* +
|
|
15046
|
-
* +
|
|
15079
|
+
* + ``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.
|
|
15080
|
+
* + ``whitelist`` – Only the HTTP headers that are listed in the ``Headers`` type are included in requests that CloudFront sends to the origin.
|
|
15081
|
+
* + ``allViewer`` – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.
|
|
15082
|
+
* + ``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.
|
|
15083
|
+
* + ``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.
|
|
15047
15084
|
*/
|
|
15048
15085
|
headerBehavior: pulumi.Input<string>;
|
|
15049
15086
|
/**
|
|
@@ -15057,10 +15094,10 @@ export declare namespace cloudfront {
|
|
|
15057
15094
|
interface OriginRequestPolicyQueryStringsConfigArgs {
|
|
15058
15095
|
/**
|
|
15059
15096
|
* Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
|
|
15060
|
-
* +
|
|
15061
|
-
* +
|
|
15062
|
-
* +
|
|
15063
|
-
* +
|
|
15097
|
+
* + ``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.
|
|
15098
|
+
* + ``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.
|
|
15099
|
+
* + ``all`` – All query strings in viewer requests are included in requests that CloudFront sends to the origin.
|
|
15100
|
+
* + ``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.
|
|
15064
15101
|
*/
|
|
15065
15102
|
queryStringBehavior: pulumi.Input<string>;
|
|
15066
15103
|
/**
|
|
@@ -15090,11 +15127,11 @@ export declare namespace cloudfront {
|
|
|
15090
15127
|
name: pulumi.Input<string>;
|
|
15091
15128
|
}
|
|
15092
15129
|
/**
|
|
15093
|
-
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data
|
|
15130
|
+
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.
|
|
15094
15131
|
*/
|
|
15095
15132
|
interface RealtimeLogConfigEndPointArgs {
|
|
15096
15133
|
/**
|
|
15097
|
-
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
|
|
15134
|
+
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
|
|
15098
15135
|
*/
|
|
15099
15136
|
kinesisStreamConfig: pulumi.Input<inputs.cloudfront.RealtimeLogConfigKinesisStreamConfigArgs>;
|
|
15100
15137
|
/**
|
|
@@ -15142,7 +15179,7 @@ export declare namespace cloudfront {
|
|
|
15142
15179
|
* + ``PUT``
|
|
15143
15180
|
* + ``ALL``
|
|
15144
15181
|
*
|
|
15145
|
-
*
|
|
15182
|
+
* ``ALL`` is a special value that includes all of the listed HTTP methods.
|
|
15146
15183
|
*/
|
|
15147
15184
|
items: pulumi.Input<pulumi.Input<string>[]>;
|
|
15148
15185
|
}
|
|
@@ -16280,6 +16317,10 @@ export declare namespace codepipeline {
|
|
|
16280
16317
|
* The name of the environment variable.
|
|
16281
16318
|
*/
|
|
16282
16319
|
name: pulumi.Input<string>;
|
|
16320
|
+
/**
|
|
16321
|
+
* The type of the environment variable.
|
|
16322
|
+
*/
|
|
16323
|
+
type?: pulumi.Input<enums.codepipeline.PipelineEnvironmentVariableType>;
|
|
16283
16324
|
/**
|
|
16284
16325
|
* The value of the environment variable.
|
|
16285
16326
|
*/
|
|
@@ -21612,6 +21653,10 @@ export declare namespace deadline {
|
|
|
21612
21653
|
sizeGiB?: pulumi.Input<number>;
|
|
21613
21654
|
throughputMiB?: pulumi.Input<number>;
|
|
21614
21655
|
}
|
|
21656
|
+
interface FleetHostConfigurationArgs {
|
|
21657
|
+
scriptBody: pulumi.Input<string>;
|
|
21658
|
+
scriptTimeoutSeconds?: pulumi.Input<number>;
|
|
21659
|
+
}
|
|
21615
21660
|
interface FleetMemoryMiBRangeArgs {
|
|
21616
21661
|
max?: pulumi.Input<number>;
|
|
21617
21662
|
min: pulumi.Input<number>;
|
|
@@ -24275,6 +24320,20 @@ export declare namespace ec2 {
|
|
|
24275
24320
|
* Valid Range: Minimum value of 125. Maximum value of 1000.
|
|
24276
24321
|
*/
|
|
24277
24322
|
throughput?: pulumi.Input<number>;
|
|
24323
|
+
/**
|
|
24324
|
+
* 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.
|
|
24325
|
+
*
|
|
24326
|
+
* This parameter is supported only for volumes created from snapshots. Omit this parameter if:
|
|
24327
|
+
*
|
|
24328
|
+
* - 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.
|
|
24329
|
+
*
|
|
24330
|
+
* > 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.
|
|
24331
|
+
* - You want to create a volume that is initialized at the default rate.
|
|
24332
|
+
*
|
|
24333
|
+
* 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* .
|
|
24334
|
+
*
|
|
24335
|
+
* Valid range: 100 - 300 MiB/s
|
|
24336
|
+
*/
|
|
24278
24337
|
volumeInitializationRate?: pulumi.Input<number>;
|
|
24279
24338
|
/**
|
|
24280
24339
|
* 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:
|
|
@@ -27508,11 +27567,11 @@ export declare namespace ecs {
|
|
|
27508
27567
|
*/
|
|
27509
27568
|
interface ServiceManagedEbsVolumeConfigurationArgs {
|
|
27510
27569
|
/**
|
|
27511
|
-
* Indicates whether the volume should be encrypted. If
|
|
27570
|
+
* 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*.
|
|
27512
27571
|
*/
|
|
27513
27572
|
encrypted?: pulumi.Input<boolean>;
|
|
27514
27573
|
/**
|
|
27515
|
-
* 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
|
|
27574
|
+
* 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.
|
|
27516
27575
|
* The available Linux filesystem types are
|
|
27517
27576
|
* ``ext3``, ``ext4``, and ``xfs``. If no value is specified, the ``xfs`` filesystem type is used by default.
|
|
27518
27577
|
* The available Windows filesystem types are ``NTFS``.
|
|
@@ -27530,7 +27589,7 @@ export declare namespace ecs {
|
|
|
27530
27589
|
*/
|
|
27531
27590
|
iops?: pulumi.Input<number>;
|
|
27532
27591
|
/**
|
|
27533
|
-
* The Amazon Resource Name (ARN) identifier of the AWS Key Management Service key to use for Amazon EBS encryption. When
|
|
27592
|
+
* 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).
|
|
27534
27593
|
* 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.
|
|
27535
27594
|
*/
|
|
27536
27595
|
kmsKeyId?: pulumi.Input<string>;
|
|
@@ -27548,7 +27607,7 @@ export declare namespace ecs {
|
|
|
27548
27607
|
*/
|
|
27549
27608
|
sizeInGiB?: pulumi.Input<number>;
|
|
27550
27609
|
/**
|
|
27551
|
-
* The snapshot that Amazon ECS uses to create the
|
|
27610
|
+
* 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*.
|
|
27552
27611
|
*/
|
|
27553
27612
|
snapshotId?: pulumi.Input<string>;
|
|
27554
27613
|
/**
|
|
@@ -27560,6 +27619,9 @@ export declare namespace ecs {
|
|
|
27560
27619
|
* This parameter is only supported for the ``gp3`` volume type.
|
|
27561
27620
|
*/
|
|
27562
27621
|
throughput?: pulumi.Input<number>;
|
|
27622
|
+
/**
|
|
27623
|
+
* 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*.
|
|
27624
|
+
*/
|
|
27563
27625
|
volumeInitializationRate?: pulumi.Input<number>;
|
|
27564
27626
|
/**
|
|
27565
27627
|
* 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*.
|
|
@@ -51537,7 +51599,13 @@ export declare namespace omics {
|
|
|
51537
51599
|
optional?: pulumi.Input<boolean>;
|
|
51538
51600
|
}
|
|
51539
51601
|
interface WorkflowVersionWorkflowParameterArgs {
|
|
51602
|
+
/**
|
|
51603
|
+
* The parameter's description.
|
|
51604
|
+
*/
|
|
51540
51605
|
description?: pulumi.Input<string>;
|
|
51606
|
+
/**
|
|
51607
|
+
* Whether the parameter is optional.
|
|
51608
|
+
*/
|
|
51541
51609
|
optional?: pulumi.Input<boolean>;
|
|
51542
51610
|
}
|
|
51543
51611
|
}
|
|
@@ -86712,6 +86780,9 @@ export declare namespace sagemaker {
|
|
|
86712
86780
|
* The SageMaker image name that you are hiding from the Studio user interface.
|
|
86713
86781
|
*/
|
|
86714
86782
|
sageMakerImageName?: pulumi.Input<enums.sagemaker.DomainHiddenSageMakerImageSageMakerImageName>;
|
|
86783
|
+
/**
|
|
86784
|
+
* The version aliases you are hiding from the Studio user interface.
|
|
86785
|
+
*/
|
|
86715
86786
|
versionAliases?: pulumi.Input<pulumi.Input<string>[]>;
|
|
86716
86787
|
}
|
|
86717
86788
|
interface DomainIdleSettingsArgs {
|
|
@@ -90115,6 +90186,9 @@ export declare namespace sagemaker {
|
|
|
90115
90186
|
* The SageMaker image name that you are hiding from the Studio user interface.
|
|
90116
90187
|
*/
|
|
90117
90188
|
sageMakerImageName?: pulumi.Input<enums.sagemaker.UserProfileHiddenSageMakerImageSageMakerImageName>;
|
|
90189
|
+
/**
|
|
90190
|
+
* The version aliases you are hiding from the Studio user interface.
|
|
90191
|
+
*/
|
|
90118
90192
|
versionAliases?: pulumi.Input<pulumi.Input<string>[]>;
|
|
90119
90193
|
}
|
|
90120
90194
|
interface UserProfileIdleSettingsArgs {
|