@pulumi/aws 6.37.0 → 6.37.1
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/acm/certificate.d.ts +99 -0
- package/acm/certificate.js.map +1 -1
- package/config/vars.d.ts +1 -1
- package/config/vars.js +1 -2
- package/config/vars.js.map +1 -1
- package/efs/replicationConfiguration.d.ts +4 -0
- package/efs/replicationConfiguration.js.map +1 -1
- package/finspace/kxDataview.d.ts +6 -0
- package/finspace/kxDataview.js.map +1 -1
- package/finspace/kxScalingGroup.d.ts +16 -0
- package/finspace/kxScalingGroup.js.map +1 -1
- package/finspace/kxVolume.d.ts +21 -0
- package/finspace/kxVolume.js.map +1 -1
- package/lex/v2modelsBotVersion.d.ts +3 -0
- package/lex/v2modelsBotVersion.js.map +1 -1
- package/package.json +2 -2
- package/provider.js +3 -3
- package/provider.js.map +1 -1
- package/quicksight/getQuicksightUser.d.ts +3 -0
- package/quicksight/getQuicksightUser.js.map +1 -1
- package/transfer/server.d.ts +12 -0
- package/transfer/server.js.map +1 -1
- package/types/input.d.ts +139 -1
- package/types/input.js.map +1 -1
- package/types/output.d.ts +139 -1
- package/types/output.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -4153,9 +4153,15 @@ export declare namespace appmesh {
|
|
|
4153
4153
|
serviceDiscovery?: outputs.appmesh.MeshSpecServiceDiscovery;
|
|
4154
4154
|
}
|
|
4155
4155
|
interface MeshSpecEgressFilter {
|
|
4156
|
+
/**
|
|
4157
|
+
* Egress filter type. By default, the type is `DROP_ALL`. Valid values are `ALLOW_ALL` and `DROP_ALL`.
|
|
4158
|
+
*/
|
|
4156
4159
|
type?: string;
|
|
4157
4160
|
}
|
|
4158
4161
|
interface MeshSpecServiceDiscovery {
|
|
4162
|
+
/**
|
|
4163
|
+
* The IP version to use to control traffic within the mesh. Valid values are `IPv6_PREFERRED`, `IPv4_PREFERRED`, `IPv4_ONLY`, and `IPv6_ONLY`.
|
|
4164
|
+
*/
|
|
4159
4165
|
ipPreference?: string;
|
|
4160
4166
|
}
|
|
4161
4167
|
interface RouteSpec {
|
|
@@ -6086,6 +6092,10 @@ export declare namespace apprunner {
|
|
|
6086
6092
|
codeConfigurationValues?: outputs.apprunner.ServiceSourceConfigurationCodeRepositoryCodeConfigurationCodeConfigurationValues;
|
|
6087
6093
|
/**
|
|
6088
6094
|
* Source of the App Runner configuration. Valid values: `REPOSITORY`, `API`. Values are interpreted as follows:
|
|
6095
|
+
* * `REPOSITORY` - App Runner reads configuration values from the apprunner.yaml file in the
|
|
6096
|
+
* source code repository and ignores the CodeConfigurationValues parameter.
|
|
6097
|
+
* * `API` - App Runner uses configuration values provided in the CodeConfigurationValues
|
|
6098
|
+
* parameter and ignores the apprunner.yaml file in the source code repository.
|
|
6089
6099
|
*/
|
|
6090
6100
|
configurationSource: string;
|
|
6091
6101
|
}
|
|
@@ -7316,6 +7326,9 @@ export declare namespace autoscaling {
|
|
|
7316
7326
|
standbyInstances?: string;
|
|
7317
7327
|
}
|
|
7318
7328
|
interface GroupInstanceRefreshPreferencesAlarmSpecification {
|
|
7329
|
+
/**
|
|
7330
|
+
* List of Cloudwatch alarms. If any of these alarms goes into ALARM state, Instance Refresh is failed.
|
|
7331
|
+
*/
|
|
7319
7332
|
alarms?: string[];
|
|
7320
7333
|
}
|
|
7321
7334
|
interface GroupLaunchTemplate {
|
|
@@ -9245,6 +9258,9 @@ export declare namespace bedrock {
|
|
|
9245
9258
|
validators?: outputs.bedrock.CustomModelValidationDataConfigValidator[];
|
|
9246
9259
|
}
|
|
9247
9260
|
interface CustomModelValidationDataConfigValidator {
|
|
9261
|
+
/**
|
|
9262
|
+
* The S3 URI where the validation data is stored.
|
|
9263
|
+
*/
|
|
9248
9264
|
s3Uri: string;
|
|
9249
9265
|
}
|
|
9250
9266
|
interface CustomModelValidationMetric {
|
|
@@ -9378,16 +9394,37 @@ export declare namespace bedrockmodel {
|
|
|
9378
9394
|
textDataDeliveryEnabled: boolean;
|
|
9379
9395
|
}
|
|
9380
9396
|
interface InvocationLoggingConfigurationLoggingConfigCloudwatchConfig {
|
|
9397
|
+
/**
|
|
9398
|
+
* S3 configuration for delivering a large amount of data.
|
|
9399
|
+
*/
|
|
9381
9400
|
largeDataDeliveryS3Config?: outputs.bedrockmodel.InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config;
|
|
9401
|
+
/**
|
|
9402
|
+
* Log group name.
|
|
9403
|
+
*/
|
|
9382
9404
|
logGroupName?: string;
|
|
9405
|
+
/**
|
|
9406
|
+
* The role ARN.
|
|
9407
|
+
*/
|
|
9383
9408
|
roleArn?: string;
|
|
9384
9409
|
}
|
|
9385
9410
|
interface InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config {
|
|
9411
|
+
/**
|
|
9412
|
+
* S3 bucket name.
|
|
9413
|
+
*/
|
|
9386
9414
|
bucketName?: string;
|
|
9415
|
+
/**
|
|
9416
|
+
* S3 prefix.
|
|
9417
|
+
*/
|
|
9387
9418
|
keyPrefix?: string;
|
|
9388
9419
|
}
|
|
9389
9420
|
interface InvocationLoggingConfigurationLoggingConfigS3Config {
|
|
9421
|
+
/**
|
|
9422
|
+
* S3 bucket name.
|
|
9423
|
+
*/
|
|
9390
9424
|
bucketName?: string;
|
|
9425
|
+
/**
|
|
9426
|
+
* S3 prefix.
|
|
9427
|
+
*/
|
|
9391
9428
|
keyPrefix?: string;
|
|
9392
9429
|
}
|
|
9393
9430
|
}
|
|
@@ -9943,6 +9980,10 @@ export declare namespace cfg {
|
|
|
9943
9980
|
maximumExecutionFrequency?: string;
|
|
9944
9981
|
/**
|
|
9945
9982
|
* The type of notification that triggers AWS Config to run an evaluation for a rule. You canspecify the following notification types:
|
|
9983
|
+
* * `ConfigurationItemChangeNotification` - Triggers an evaluation when AWS Config delivers a configuration item as a result of a resource change.
|
|
9984
|
+
* * `OversizedConfigurationItemChangeNotification` - Triggers an evaluation when AWS Config delivers an oversized configuration item. AWS Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS.
|
|
9985
|
+
* * `ScheduledNotification` - Triggers a periodic evaluation at the frequency specified for `maximumExecutionFrequency`.
|
|
9986
|
+
* * `ConfigurationSnapshotDeliveryCompleted` - Triggers a periodic evaluation when AWS Config delivers a configuration snapshot.
|
|
9946
9987
|
*/
|
|
9947
9988
|
messageType?: string;
|
|
9948
9989
|
}
|
|
@@ -10129,9 +10170,21 @@ export declare namespace chimesdkmediapipelines {
|
|
|
10129
10170
|
vocabularyName?: string;
|
|
10130
10171
|
}
|
|
10131
10172
|
interface MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettings {
|
|
10173
|
+
/**
|
|
10174
|
+
* Should output be redacted.
|
|
10175
|
+
*/
|
|
10132
10176
|
contentRedactionOutput?: string;
|
|
10177
|
+
/**
|
|
10178
|
+
* ARN of the role used by AWS Transcribe to upload your post call analysis.
|
|
10179
|
+
*/
|
|
10133
10180
|
dataAccessRoleArn: string;
|
|
10181
|
+
/**
|
|
10182
|
+
* ID of the KMS key used to encrypt the output.
|
|
10183
|
+
*/
|
|
10134
10184
|
outputEncryptionKmsKeyId?: string;
|
|
10185
|
+
/**
|
|
10186
|
+
* The Amazon S3 location where you want your Call Analytics post-call transcription output stored.
|
|
10187
|
+
*/
|
|
10135
10188
|
outputLocation: string;
|
|
10136
10189
|
}
|
|
10137
10190
|
interface MediaInsightsPipelineConfigurationElementAmazonTranscribeProcessorConfiguration {
|
|
@@ -10253,16 +10306,37 @@ export declare namespace chimesdkmediapipelines {
|
|
|
10253
10306
|
type: string;
|
|
10254
10307
|
}
|
|
10255
10308
|
interface MediaInsightsPipelineConfigurationRealTimeAlertConfigurationRuleIssueDetectionConfiguration {
|
|
10309
|
+
/**
|
|
10310
|
+
* Rule name.
|
|
10311
|
+
*/
|
|
10256
10312
|
ruleName: string;
|
|
10257
10313
|
}
|
|
10258
10314
|
interface MediaInsightsPipelineConfigurationRealTimeAlertConfigurationRuleKeywordMatchConfiguration {
|
|
10315
|
+
/**
|
|
10316
|
+
* Collection of keywords to match.
|
|
10317
|
+
*/
|
|
10259
10318
|
keywords: string[];
|
|
10319
|
+
/**
|
|
10320
|
+
* Negate the rule.
|
|
10321
|
+
*/
|
|
10260
10322
|
negate: boolean;
|
|
10323
|
+
/**
|
|
10324
|
+
* Rule name.
|
|
10325
|
+
*/
|
|
10261
10326
|
ruleName: string;
|
|
10262
10327
|
}
|
|
10263
10328
|
interface MediaInsightsPipelineConfigurationRealTimeAlertConfigurationRuleSentimentConfiguration {
|
|
10329
|
+
/**
|
|
10330
|
+
* Rule name.
|
|
10331
|
+
*/
|
|
10264
10332
|
ruleName: string;
|
|
10333
|
+
/**
|
|
10334
|
+
* Sentiment type to match.
|
|
10335
|
+
*/
|
|
10265
10336
|
sentimentType: string;
|
|
10337
|
+
/**
|
|
10338
|
+
* Analysis interval.
|
|
10339
|
+
*/
|
|
10266
10340
|
timePeriod: number;
|
|
10267
10341
|
}
|
|
10268
10342
|
}
|
|
@@ -12803,6 +12877,8 @@ export declare namespace codedeploy {
|
|
|
12803
12877
|
interface DeploymentGroupBlueGreenDeploymentConfigDeploymentReadyOption {
|
|
12804
12878
|
/**
|
|
12805
12879
|
* When to reroute traffic from an original environment to a replacement environment in a blue/green deployment.
|
|
12880
|
+
* * `CONTINUE_DEPLOYMENT`: Register new instances with the load balancer immediately after the new application revision is installed on the instances in the replacement environment.
|
|
12881
|
+
* * `STOP_DEPLOYMENT`: Do not register new instances with load balancer unless traffic is rerouted manually. If traffic is not rerouted manually before the end of the specified wait period, the deployment status is changed to Stopped.
|
|
12806
12882
|
*/
|
|
12807
12883
|
actionOnTimeout?: string;
|
|
12808
12884
|
/**
|
|
@@ -12813,12 +12889,16 @@ export declare namespace codedeploy {
|
|
|
12813
12889
|
interface DeploymentGroupBlueGreenDeploymentConfigGreenFleetProvisioningOption {
|
|
12814
12890
|
/**
|
|
12815
12891
|
* The method used to add instances to a replacement environment.
|
|
12892
|
+
* * `DISCOVER_EXISTING`: Use instances that already exist or will be created manually.
|
|
12893
|
+
* * `COPY_AUTO_SCALING_GROUP`: Use settings from a specified **Auto Scaling** group to define and create instances in a new Auto Scaling group. _Exactly one Auto Scaling group must be specified_ when selecting `COPY_AUTO_SCALING_GROUP`. Use `autoscalingGroups` to specify the Auto Scaling group.
|
|
12816
12894
|
*/
|
|
12817
12895
|
action?: string;
|
|
12818
12896
|
}
|
|
12819
12897
|
interface DeploymentGroupBlueGreenDeploymentConfigTerminateBlueInstancesOnDeploymentSuccess {
|
|
12820
12898
|
/**
|
|
12821
12899
|
* The action to take on instances in the original environment after a successful blue/green deployment.
|
|
12900
|
+
* * `TERMINATE`: Instances are terminated after a specified wait time.
|
|
12901
|
+
* * `KEEP_ALIVE`: Instances are left running after they are deregistered from the load balancer and removed from the deployment group.
|
|
12822
12902
|
*/
|
|
12823
12903
|
action?: string;
|
|
12824
12904
|
/**
|
|
@@ -28452,6 +28532,8 @@ export declare namespace elb {
|
|
|
28452
28532
|
/**
|
|
28453
28533
|
* The target of the check. Valid pattern is "${PROTOCOL}:${PORT}${PATH}", where PROTOCOL
|
|
28454
28534
|
* values are:
|
|
28535
|
+
* * `HTTP`, `HTTPS` - PORT and PATH are required
|
|
28536
|
+
* * `TCP`, `SSL` - PORT is required, PATH is not supported
|
|
28455
28537
|
*/
|
|
28456
28538
|
target: string;
|
|
28457
28539
|
/**
|
|
@@ -29331,6 +29413,9 @@ export declare namespace emrcontainers {
|
|
|
29331
29413
|
eksInfo: outputs.emrcontainers.VirtualClusterContainerProviderInfoEksInfo;
|
|
29332
29414
|
}
|
|
29333
29415
|
interface VirtualClusterContainerProviderInfoEksInfo {
|
|
29416
|
+
/**
|
|
29417
|
+
* The namespace where the EMR Containers cluster is running
|
|
29418
|
+
*/
|
|
29334
29419
|
namespace?: string;
|
|
29335
29420
|
}
|
|
29336
29421
|
}
|
|
@@ -30566,6 +30651,7 @@ export declare namespace fsx {
|
|
|
30566
30651
|
id: number;
|
|
30567
30652
|
/**
|
|
30568
30653
|
* The amount of storage that the user or group can use in gibibytes (GiB). Valid values between `0` and `2147483647`
|
|
30654
|
+
* * `Type` - (Required) - A value that specifies whether the quota applies to a user or group. Valid values are `USER` or `GROUP`.
|
|
30569
30655
|
*/
|
|
30570
30656
|
storageCapacityQuotaGib: number;
|
|
30571
30657
|
type: string;
|
|
@@ -34867,6 +34953,11 @@ export declare namespace ivs {
|
|
|
34867
34953
|
s3: outputs.ivs.RecordingConfigurationDestinationConfigurationS3;
|
|
34868
34954
|
}
|
|
34869
34955
|
interface RecordingConfigurationDestinationConfigurationS3 {
|
|
34956
|
+
/**
|
|
34957
|
+
* S3 bucket name where recorded videos will be stored.
|
|
34958
|
+
*
|
|
34959
|
+
* The following arguments are optional:
|
|
34960
|
+
*/
|
|
34870
34961
|
bucketName: string;
|
|
34871
34962
|
}
|
|
34872
34963
|
interface RecordingConfigurationThumbnailConfiguration {
|
|
@@ -34896,12 +34987,23 @@ export declare namespace ivschat {
|
|
|
34896
34987
|
s3?: outputs.ivschat.LoggingConfigurationDestinationConfigurationS3;
|
|
34897
34988
|
}
|
|
34898
34989
|
interface LoggingConfigurationDestinationConfigurationCloudwatchLogs {
|
|
34990
|
+
/**
|
|
34991
|
+
* Name of the Amazon Cloudwatch Logs destination where chat activity will be logged.
|
|
34992
|
+
*/
|
|
34899
34993
|
logGroupName: string;
|
|
34900
34994
|
}
|
|
34901
34995
|
interface LoggingConfigurationDestinationConfigurationFirehose {
|
|
34996
|
+
/**
|
|
34997
|
+
* Name of the Amazon Kinesis Firehose delivery stream where chat activity will be logged.
|
|
34998
|
+
*/
|
|
34902
34999
|
deliveryStreamName: string;
|
|
34903
35000
|
}
|
|
34904
35001
|
interface LoggingConfigurationDestinationConfigurationS3 {
|
|
35002
|
+
/**
|
|
35003
|
+
* Name of the Amazon S3 bucket where chat activity will be logged.
|
|
35004
|
+
*
|
|
35005
|
+
* The following arguments are optional:
|
|
35006
|
+
*/
|
|
34905
35007
|
bucketName: string;
|
|
34906
35008
|
}
|
|
34907
35009
|
interface RoomMessageReviewHandler {
|
|
@@ -35055,6 +35157,9 @@ export declare namespace kendra {
|
|
|
35055
35157
|
seedUrls: string[];
|
|
35056
35158
|
/**
|
|
35057
35159
|
* The default mode is set to `HOST_ONLY`. You can choose one of the following modes:
|
|
35160
|
+
* * `HOST_ONLY` – crawl only the website host names. For example, if the seed URL is `"abc.example.com"`, then only URLs with host name `"abc.example.com"` are crawled.
|
|
35161
|
+
* * `SUBDOMAINS` – crawl the website host names with subdomains. For example, if the seed URL is `"abc.example.com"`, then `"a.abc.example.com"` and `"b.abc.example.com"` are also crawled.
|
|
35162
|
+
* * `EVERYTHING` – crawl the website host names with subdomains and other domains that the webpages link to.
|
|
35058
35163
|
*/
|
|
35059
35164
|
webCrawlerMode?: string;
|
|
35060
35165
|
}
|
|
@@ -55379,7 +55484,13 @@ export declare namespace opensearch {
|
|
|
55379
55484
|
windowStartTime: outputs.opensearch.DomainOffPeakWindowOptionsOffPeakWindowWindowStartTime;
|
|
55380
55485
|
}
|
|
55381
55486
|
interface DomainOffPeakWindowOptionsOffPeakWindowWindowStartTime {
|
|
55487
|
+
/**
|
|
55488
|
+
* Starting hour of the 10-hour window for updates
|
|
55489
|
+
*/
|
|
55382
55490
|
hours: number;
|
|
55491
|
+
/**
|
|
55492
|
+
* Starting minute of the 10-hour window for updates
|
|
55493
|
+
*/
|
|
55383
55494
|
minutes: number;
|
|
55384
55495
|
}
|
|
55385
55496
|
interface DomainSamlOptionsSamlOptions {
|
|
@@ -61544,6 +61655,9 @@ export declare namespace s3 {
|
|
|
61544
61655
|
interface BucketOwnershipControlsRule {
|
|
61545
61656
|
/**
|
|
61546
61657
|
* Object ownership. Valid values: `BucketOwnerPreferred`, `ObjectWriter` or `BucketOwnerEnforced`
|
|
61658
|
+
* * `BucketOwnerPreferred` - Objects uploaded to the bucket change ownership to the bucket owner if the objects are uploaded with the `bucket-owner-full-control` canned ACL.
|
|
61659
|
+
* * `ObjectWriter` - Uploading account will own the object if the object is uploaded with the `bucket-owner-full-control` canned ACL.
|
|
61660
|
+
* * `BucketOwnerEnforced` - Bucket owner automatically owns and has full control over every object in the bucket. ACLs no longer affect permissions to data in the S3 bucket.
|
|
61547
61661
|
*/
|
|
61548
61662
|
objectOwnership: string;
|
|
61549
61663
|
}
|
|
@@ -62490,15 +62604,33 @@ export declare namespace s3control {
|
|
|
62490
62604
|
status?: string;
|
|
62491
62605
|
}
|
|
62492
62606
|
interface BucketLifecycleConfigurationRuleAbortIncompleteMultipartUpload {
|
|
62607
|
+
/**
|
|
62608
|
+
* Number of days after which Amazon S3 aborts an incomplete multipart upload.
|
|
62609
|
+
*/
|
|
62493
62610
|
daysAfterInitiation: number;
|
|
62494
62611
|
}
|
|
62495
62612
|
interface BucketLifecycleConfigurationRuleExpiration {
|
|
62613
|
+
/**
|
|
62614
|
+
* Date the object is to be deleted. Should be in `YYYY-MM-DD` date format, e.g., `2020-09-30`.
|
|
62615
|
+
*/
|
|
62496
62616
|
date?: string;
|
|
62617
|
+
/**
|
|
62618
|
+
* Number of days before the object is to be deleted.
|
|
62619
|
+
*/
|
|
62497
62620
|
days?: number;
|
|
62621
|
+
/**
|
|
62622
|
+
* Enable to remove a delete marker with no noncurrent versions. Cannot be specified with `date` or `days`.
|
|
62623
|
+
*/
|
|
62498
62624
|
expiredObjectDeleteMarker?: boolean;
|
|
62499
62625
|
}
|
|
62500
62626
|
interface BucketLifecycleConfigurationRuleFilter {
|
|
62627
|
+
/**
|
|
62628
|
+
* Object prefix for rule filtering.
|
|
62629
|
+
*/
|
|
62501
62630
|
prefix?: string;
|
|
62631
|
+
/**
|
|
62632
|
+
* Key-value map of object tags for rule filtering.
|
|
62633
|
+
*/
|
|
62502
62634
|
tags?: {
|
|
62503
62635
|
[key: string]: string;
|
|
62504
62636
|
};
|
|
@@ -67102,12 +67234,18 @@ export declare namespace securitylake {
|
|
|
67102
67234
|
}
|
|
67103
67235
|
interface CustomLogSourceConfigurationCrawlerConfiguration {
|
|
67104
67236
|
/**
|
|
67105
|
-
* The ARN of the IAM role to be used by the
|
|
67237
|
+
* The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
|
|
67106
67238
|
*/
|
|
67107
67239
|
roleArn: string;
|
|
67108
67240
|
}
|
|
67109
67241
|
interface CustomLogSourceConfigurationProviderIdentity {
|
|
67242
|
+
/**
|
|
67243
|
+
* The external ID used to estalish trust relationship with the AWS identity.
|
|
67244
|
+
*/
|
|
67110
67245
|
externalId: string;
|
|
67246
|
+
/**
|
|
67247
|
+
* The AWS identity principal.
|
|
67248
|
+
*/
|
|
67111
67249
|
principal: string;
|
|
67112
67250
|
}
|
|
67113
67251
|
interface CustomLogSourceProviderDetail {
|
package/types/output.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAss9DjF,IAAiB,GAAG,CAkXnB;AAlXD,WAAiB,GAAG;IAiThB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAyDL,CAAC,EAlXgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAkXnB"}
|