@pulumi/aws 6.43.0 → 6.44.0

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.
Files changed (41) hide show
  1. package/amplify/domainAssociation.d.ts +12 -0
  2. package/amplify/domainAssociation.js +2 -0
  3. package/amplify/domainAssociation.js.map +1 -1
  4. package/appstream/getImage.d.ts +121 -0
  5. package/appstream/getImage.js +30 -0
  6. package/appstream/getImage.js.map +1 -0
  7. package/appstream/index.d.ts +3 -0
  8. package/appstream/index.js +4 -1
  9. package/appstream/index.js.map +1 -1
  10. package/backup/getPlan.d.ts +5 -0
  11. package/backup/getPlan.js.map +1 -1
  12. package/cognito/getUserPool.d.ts +134 -0
  13. package/cognito/getUserPool.js +51 -0
  14. package/cognito/getUserPool.js.map +1 -0
  15. package/cognito/index.d.ts +3 -0
  16. package/cognito/index.js +4 -1
  17. package/cognito/index.js.map +1 -1
  18. package/ec2transitgateway/getPeeringAttachments.d.ts +99 -0
  19. package/ec2transitgateway/getPeeringAttachments.js +82 -0
  20. package/ec2transitgateway/getPeeringAttachments.js.map +1 -0
  21. package/ec2transitgateway/index.d.ts +3 -0
  22. package/ec2transitgateway/index.js +5 -1
  23. package/ec2transitgateway/index.js.map +1 -1
  24. package/ec2transitgateway/peeringAttachment.d.ts +14 -0
  25. package/ec2transitgateway/peeringAttachment.js +2 -0
  26. package/ec2transitgateway/peeringAttachment.js.map +1 -1
  27. package/fsx/getOntapFileSystem.d.ts +1 -1
  28. package/iot/authorizer.d.ts +37 -0
  29. package/iot/authorizer.js +7 -0
  30. package/iot/authorizer.js.map +1 -1
  31. package/package.json +2 -2
  32. package/transfer/getConnector.d.ts +72 -0
  33. package/transfer/getConnector.js +25 -0
  34. package/transfer/getConnector.js.map +1 -0
  35. package/transfer/index.d.ts +3 -0
  36. package/transfer/index.js +4 -1
  37. package/transfer/index.js.map +1 -1
  38. package/types/input.d.ts +57 -1
  39. package/types/input.js.map +1 -1
  40. package/types/output.d.ts +374 -3
  41. package/types/output.js.map +1 -1
package/types/input.d.ts CHANGED
@@ -470,6 +470,10 @@ export interface ProviderEndpoint {
470
470
  * Use this to override the default service endpoint URL
471
471
  */
472
472
  databasemigrationservice?: pulumi.Input<string>;
473
+ /**
474
+ * Use this to override the default service endpoint URL
475
+ */
476
+ databrew?: pulumi.Input<string>;
473
477
  /**
474
478
  * Use this to override the default service endpoint URL
475
479
  */
@@ -666,6 +670,10 @@ export interface ProviderEndpoint {
666
670
  * Use this to override the default service endpoint URL
667
671
  */
668
672
  glue?: pulumi.Input<string>;
673
+ /**
674
+ * Use this to override the default service endpoint URL
675
+ */
676
+ gluedatabrew?: pulumi.Input<string>;
669
677
  /**
670
678
  * Use this to override the default service endpoint URL
671
679
  */
@@ -2237,6 +2245,20 @@ export declare namespace amplify {
2237
2245
  */
2238
2246
  thumbnailUrl?: pulumi.Input<string>;
2239
2247
  }
2248
+ interface DomainAssociationCertificateSettings {
2249
+ /**
2250
+ * DNS records for certificate verification in a space-delimited format (`<record> CNAME <target>`).
2251
+ */
2252
+ certificateVerificationDnsRecord?: pulumi.Input<string>;
2253
+ /**
2254
+ * The Amazon resource name (ARN) for the custom certificate.
2255
+ */
2256
+ customCertificateArn?: pulumi.Input<string>;
2257
+ /**
2258
+ * The certificate type. Valid values are `AMPLIFY_MANAGED` and `CUSTOM`.
2259
+ */
2260
+ type: pulumi.Input<string>;
2261
+ }
2240
2262
  interface DomainAssociationSubDomain {
2241
2263
  /**
2242
2264
  * Branch name setting for the subdomain.
@@ -22099,6 +22121,26 @@ export declare namespace ec2transitgateway {
22099
22121
  */
22100
22122
  values: pulumi.Input<pulumi.Input<string>[]>;
22101
22123
  }
22124
+ interface GetPeeringAttachmentsFilter {
22125
+ /**
22126
+ * Name of the field to filter by, as defined by [the underlying AWS API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeTransitGatewayPeeringAttachments.html)
22127
+ */
22128
+ name: string;
22129
+ /**
22130
+ * List of one or more values for the filter.
22131
+ */
22132
+ values: string[];
22133
+ }
22134
+ interface GetPeeringAttachmentsFilterArgs {
22135
+ /**
22136
+ * Name of the field to filter by, as defined by [the underlying AWS API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeTransitGatewayPeeringAttachments.html)
22137
+ */
22138
+ name: pulumi.Input<string>;
22139
+ /**
22140
+ * List of one or more values for the filter.
22141
+ */
22142
+ values: pulumi.Input<pulumi.Input<string>[]>;
22143
+ }
22102
22144
  interface GetRouteTableAssociationsFilter {
22103
22145
  /**
22104
22146
  * Name of the field to filter by, as defined by
@@ -22279,6 +22321,12 @@ export declare namespace ec2transitgateway {
22279
22321
  */
22280
22322
  delete?: pulumi.Input<string>;
22281
22323
  }
22324
+ interface PeeringAttachmentOptions {
22325
+ /**
22326
+ * Indicates whether dynamic routing is enabled or disabled.. Supports `enable` and `disable`.
22327
+ */
22328
+ dynamicRouting?: pulumi.Input<string>;
22329
+ }
22282
22330
  }
22283
22331
  export declare namespace ecr {
22284
22332
  interface GetLifecyclePolicyDocumentRule {
@@ -29504,6 +29552,10 @@ export declare namespace iot {
29504
29552
  stateValue: pulumi.Input<string>;
29505
29553
  }
29506
29554
  interface TopicRuleCloudwatchLog {
29555
+ /**
29556
+ * The payload that contains a JSON array of records will be sent to CloudWatch via a batch call.
29557
+ */
29558
+ batchMode?: pulumi.Input<boolean>;
29507
29559
  /**
29508
29560
  * The CloudWatch log group name.
29509
29561
  */
@@ -29677,6 +29729,10 @@ export declare namespace iot {
29677
29729
  stateValue: pulumi.Input<string>;
29678
29730
  }
29679
29731
  interface TopicRuleErrorActionCloudwatchLogs {
29732
+ /**
29733
+ * The payload that contains a JSON array of records will be sent to CloudWatch via a batch call.
29734
+ */
29735
+ batchMode?: pulumi.Input<boolean>;
29680
29736
  /**
29681
29737
  * The CloudWatch log group name.
29682
29738
  */
@@ -58619,7 +58675,7 @@ export declare namespace sagemaker {
58619
58675
  }
58620
58676
  interface EndpointConfigurationDataCaptureConfigCaptureOption {
58621
58677
  /**
58622
- * Specifies the data to be captured. Should be one of `Input` or `Output`.
58678
+ * Specifies the data to be captured. Should be one of `Input`, `Output` or `InputAndOutput`.
58623
58679
  */
58624
58680
  captureMode: pulumi.Input<string>;
58625
58681
  }
@@ -1 +1 @@
1
- {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAsnxDjF,IAAiB,GAAG,CA8WnB;AA9WD,WAAiB,GAAG;IA8ShB;;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;AAwDL,CAAC,EA9WgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA8WnB"}
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAkrxDjF,IAAiB,GAAG,CA8WnB;AA9WD,WAAiB,GAAG;IA8ShB;;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;AAwDL,CAAC,EA9WgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA8WnB"}
package/types/output.d.ts CHANGED
@@ -1127,6 +1127,20 @@ export declare namespace amplify {
1127
1127
  */
1128
1128
  thumbnailUrl: string;
1129
1129
  }
1130
+ interface DomainAssociationCertificateSettings {
1131
+ /**
1132
+ * DNS records for certificate verification in a space-delimited format (`<record> CNAME <target>`).
1133
+ */
1134
+ certificateVerificationDnsRecord: string;
1135
+ /**
1136
+ * The Amazon resource name (ARN) for the custom certificate.
1137
+ */
1138
+ customCertificateArn?: string;
1139
+ /**
1140
+ * The certificate type. Valid values are `AMPLIFY_MANAGED` and `CUSTOM`.
1141
+ */
1142
+ type: string;
1143
+ }
1130
1144
  interface DomainAssociationSubDomain {
1131
1145
  /**
1132
1146
  * Branch name setting for the subdomain.
@@ -6410,6 +6424,96 @@ export declare namespace appstream {
6410
6424
  */
6411
6425
  subnetIds: string[];
6412
6426
  }
6427
+ interface GetImageApplication {
6428
+ /**
6429
+ * The app block ARN of the application.
6430
+ */
6431
+ appBlockArn: string;
6432
+ /**
6433
+ * Arn of the image being searched for. Cannot be used with nameRegex or name.
6434
+ */
6435
+ arn: string;
6436
+ /**
6437
+ * Time at which this image was created.
6438
+ */
6439
+ createdTime: string;
6440
+ /**
6441
+ * Description of image.
6442
+ */
6443
+ description: string;
6444
+ /**
6445
+ * Image name to display.
6446
+ */
6447
+ displayName: string;
6448
+ /**
6449
+ * Bool based on if the application is enabled.
6450
+ */
6451
+ enabled: boolean;
6452
+ /**
6453
+ * A list named iconS3Location that contains the following:
6454
+ */
6455
+ iconS3Locations: outputs.appstream.GetImageApplicationIconS3Location[];
6456
+ /**
6457
+ * URL of the application icon. This URL may be time-limited.
6458
+ */
6459
+ iconUrl: string;
6460
+ /**
6461
+ * List of the instance families of the application.
6462
+ */
6463
+ instanceFamilies: string[];
6464
+ /**
6465
+ * Arguments that are passed to the application at it's launch.
6466
+ */
6467
+ launchParameters: string;
6468
+ /**
6469
+ * Path to the application's excecutable in the instance.
6470
+ */
6471
+ launchPath: string;
6472
+ /**
6473
+ * String to string map that contains additional attributes used to describe the application.
6474
+ * * `Name` - Name of the application.
6475
+ */
6476
+ metadata: {
6477
+ [key: string]: any;
6478
+ };
6479
+ /**
6480
+ * Name of the image being searched for. Cannot be used with nameRegex or arn.
6481
+ */
6482
+ name: string;
6483
+ /**
6484
+ * Array of strings describing the platforms on which the application can run.
6485
+ * Values will be from: WINDOWS | WINDOWS_SERVER_2016 | WINDOWS_SERVER_2019 | WINDOWS_SERVER_2022 | AMAZON_LINUX2
6486
+ */
6487
+ platforms: string[];
6488
+ /**
6489
+ * Working directory for the application.
6490
+ */
6491
+ workingDirectory: string;
6492
+ }
6493
+ interface GetImageApplicationIconS3Location {
6494
+ /**
6495
+ * S3 bucket of the S3 object.
6496
+ */
6497
+ s3Bucket: string;
6498
+ /**
6499
+ * S3 key of the S3 object.
6500
+ */
6501
+ s3Key: string;
6502
+ }
6503
+ interface GetImageImagePermission {
6504
+ /**
6505
+ * Boolean indicating if the image can be used for a fleet.
6506
+ */
6507
+ allowFleet: boolean;
6508
+ /**
6509
+ * indicated whether the image can be used for an image builder.
6510
+ */
6511
+ allowImageBuilder: boolean;
6512
+ }
6513
+ interface GetImageStateChangeReason {
6514
+ code: string;
6515
+ message: string;
6516
+ }
6413
6517
  interface ImageBuilderAccessEndpoint {
6414
6518
  /**
6415
6519
  * Type of interface endpoint. For valid values, refer to the [AWS documentation](https://docs.aws.amazon.com/appstream2/latest/APIReference/API_AccessEndpoint.html).
@@ -8408,6 +8512,33 @@ export declare namespace backup {
8408
8512
  [key: string]: string;
8409
8513
  };
8410
8514
  }
8515
+ interface GetPlanRule {
8516
+ completionWindow: number;
8517
+ copyActions: outputs.backup.GetPlanRuleCopyAction[];
8518
+ enableContinuousBackup: boolean;
8519
+ lifecycles: outputs.backup.GetPlanRuleLifecycle[];
8520
+ recoveryPointTags?: {
8521
+ [key: string]: string;
8522
+ };
8523
+ ruleName: string;
8524
+ schedule: string;
8525
+ startWindow: number;
8526
+ targetVaultName: string;
8527
+ }
8528
+ interface GetPlanRuleCopyAction {
8529
+ destinationVaultArn: string;
8530
+ lifecycles: outputs.backup.GetPlanRuleCopyActionLifecycle[];
8531
+ }
8532
+ interface GetPlanRuleCopyActionLifecycle {
8533
+ coldStorageAfter: number;
8534
+ deleteAfter: number;
8535
+ optInToArchiveForSupportedResources: boolean;
8536
+ }
8537
+ interface GetPlanRuleLifecycle {
8538
+ coldStorageAfter: number;
8539
+ deleteAfter: number;
8540
+ optInToArchiveForSupportedResources: boolean;
8541
+ }
8411
8542
  interface GetReportPlanReportDeliveryChannel {
8412
8543
  /**
8413
8544
  * List of the format of your reports: CSV, JSON, or both.
@@ -14234,6 +14365,45 @@ export declare namespace cognito {
14234
14365
  */
14235
14366
  roleArn: string;
14236
14367
  }
14368
+ interface GetUserPoolAccountRecoverySetting {
14369
+ recoveryMechanisms: outputs.cognito.GetUserPoolAccountRecoverySettingRecoveryMechanism[];
14370
+ }
14371
+ interface GetUserPoolAccountRecoverySettingRecoveryMechanism {
14372
+ /**
14373
+ * - Name of the attribute.
14374
+ */
14375
+ name: string;
14376
+ /**
14377
+ * - Priority of this mechanism in the recovery process (lower numbers are higher priority).
14378
+ */
14379
+ priority: number;
14380
+ }
14381
+ interface GetUserPoolAdminCreateUserConfig {
14382
+ /**
14383
+ * - Whether only admins can create users.
14384
+ */
14385
+ allowAdminCreateUserOnly: boolean;
14386
+ inviteMessageTemplates: outputs.cognito.GetUserPoolAdminCreateUserConfigInviteMessageTemplate[];
14387
+ /**
14388
+ * - Number of days an unconfirmed user account remains valid.
14389
+ * * invite_message_template - Templates for invitation messages.
14390
+ */
14391
+ unusedAccountValidityDays: number;
14392
+ }
14393
+ interface GetUserPoolAdminCreateUserConfigInviteMessageTemplate {
14394
+ /**
14395
+ * - Email message content.
14396
+ */
14397
+ emailMessage: string;
14398
+ /**
14399
+ * - Email message subject.
14400
+ */
14401
+ emailSubject: string;
14402
+ /**
14403
+ * - SMS message content.
14404
+ */
14405
+ smsMessage: string;
14406
+ }
14237
14407
  interface GetUserPoolClientAnalyticsConfiguration {
14238
14408
  /**
14239
14409
  * (Optional) Application ARN for an Amazon Pinpoint application. Conflicts with `externalId` and `roleArn`.
@@ -14270,6 +14440,130 @@ export declare namespace cognito {
14270
14440
  */
14271
14441
  refreshToken: string;
14272
14442
  }
14443
+ interface GetUserPoolDeviceConfiguration {
14444
+ /**
14445
+ * - Whether a challenge is required on new devices.
14446
+ */
14447
+ challengeRequiredOnNewDevice: boolean;
14448
+ /**
14449
+ * - Whether devices are only remembered if the user prompts it.
14450
+ */
14451
+ deviceOnlyRememberedOnUserPrompt: boolean;
14452
+ }
14453
+ interface GetUserPoolEmailConfiguration {
14454
+ /**
14455
+ * - Configuration set used for sending emails.
14456
+ */
14457
+ configurationSet: string;
14458
+ /**
14459
+ * - Email sending account.
14460
+ */
14461
+ emailSendingAccount: string;
14462
+ /**
14463
+ * - Email sender address.
14464
+ */
14465
+ from: string;
14466
+ /**
14467
+ * - Reply-to email address.
14468
+ */
14469
+ replyToEmailAddress: string;
14470
+ /**
14471
+ * - Source Amazon Resource Name (ARN) for emails.
14472
+ */
14473
+ sourceArn: string;
14474
+ }
14475
+ interface GetUserPoolLambdaConfig {
14476
+ createAuthChallenge: string;
14477
+ customEmailSenders: outputs.cognito.GetUserPoolLambdaConfigCustomEmailSender[];
14478
+ customMessage: string;
14479
+ customSmsSenders: outputs.cognito.GetUserPoolLambdaConfigCustomSmsSender[];
14480
+ defineAuthChallenge: string;
14481
+ kmsKeyId: string;
14482
+ postAuthentication: string;
14483
+ postConfirmation: string;
14484
+ preAuthentication: string;
14485
+ preSignUp: string;
14486
+ preTokenGeneration: string;
14487
+ preTokenGenerationConfigs: outputs.cognito.GetUserPoolLambdaConfigPreTokenGenerationConfig[];
14488
+ userMigration: string;
14489
+ verifyAuthChallengeResponse: string;
14490
+ }
14491
+ interface GetUserPoolLambdaConfigCustomEmailSender {
14492
+ /**
14493
+ * - ARN of the Lambda function.
14494
+ */
14495
+ lambdaArn: string;
14496
+ /**
14497
+ * - Version of the Lambda function.
14498
+ */
14499
+ lambdaVersion: string;
14500
+ }
14501
+ interface GetUserPoolLambdaConfigCustomSmsSender {
14502
+ /**
14503
+ * - ARN of the Lambda function.
14504
+ */
14505
+ lambdaArn: string;
14506
+ /**
14507
+ * - Version of the Lambda function.
14508
+ */
14509
+ lambdaVersion: string;
14510
+ }
14511
+ interface GetUserPoolLambdaConfigPreTokenGenerationConfig {
14512
+ /**
14513
+ * - ARN of the Lambda function.
14514
+ */
14515
+ lambdaArn: string;
14516
+ /**
14517
+ * - Version of the Lambda function.
14518
+ */
14519
+ lambdaVersion: string;
14520
+ }
14521
+ interface GetUserPoolSchemaAttribute {
14522
+ /**
14523
+ * - Data type of the attribute (e.g., string, number).
14524
+ */
14525
+ attributeDataType: string;
14526
+ /**
14527
+ * - Whether the attribute is for developer use only.
14528
+ */
14529
+ developerOnlyAttribute: boolean;
14530
+ /**
14531
+ * - Whether the attribute can be changed after user creation.
14532
+ */
14533
+ mutable: boolean;
14534
+ /**
14535
+ * - Name of the attribute.
14536
+ */
14537
+ name: string;
14538
+ numberAttributeConstraints: outputs.cognito.GetUserPoolSchemaAttributeNumberAttributeConstraint[];
14539
+ /**
14540
+ * - Whether the attribute is required during user registration.
14541
+ * * number_attribute_constraints - Constraints for numeric attributes.
14542
+ * * string_attribute_constraints - Constraints for string attributes.
14543
+ */
14544
+ required: boolean;
14545
+ stringAttributeConstraints: outputs.cognito.GetUserPoolSchemaAttributeStringAttributeConstraint[];
14546
+ }
14547
+ interface GetUserPoolSchemaAttributeNumberAttributeConstraint {
14548
+ /**
14549
+ * - Maximum allowed value.
14550
+ */
14551
+ maxValue: string;
14552
+ /**
14553
+ * - Minimum allowed value.
14554
+ */
14555
+ minValue: string;
14556
+ }
14557
+ interface GetUserPoolSchemaAttributeStringAttributeConstraint {
14558
+ /**
14559
+ * - Maximum allowed length.
14560
+ */
14561
+ maxLength: string;
14562
+ /**
14563
+ * - Minimum allowed length.
14564
+ */
14565
+ minLength: string;
14566
+ }
14273
14567
  interface IdentityPoolCognitoIdentityProvider {
14274
14568
  /**
14275
14569
  * The client ID for the Amazon Cognito Identity User Pool.
@@ -15372,6 +15666,10 @@ export declare namespace config {
15372
15666
  * Use this to override the default service endpoint URL
15373
15667
  */
15374
15668
  databasemigrationservice?: string;
15669
+ /**
15670
+ * Use this to override the default service endpoint URL
15671
+ */
15672
+ databrew?: string;
15375
15673
  /**
15376
15674
  * Use this to override the default service endpoint URL
15377
15675
  */
@@ -15568,6 +15866,10 @@ export declare namespace config {
15568
15866
  * Use this to override the default service endpoint URL
15569
15867
  */
15570
15868
  glue?: string;
15869
+ /**
15870
+ * Use this to override the default service endpoint URL
15871
+ */
15872
+ gluedatabrew?: string;
15571
15873
  /**
15572
15874
  * Use this to override the default service endpoint URL
15573
15875
  */
@@ -26799,6 +27101,16 @@ export declare namespace ec2transitgateway {
26799
27101
  */
26800
27102
  values: string[];
26801
27103
  }
27104
+ interface GetPeeringAttachmentsFilter {
27105
+ /**
27106
+ * Name of the field to filter by, as defined by [the underlying AWS API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeTransitGatewayPeeringAttachments.html)
27107
+ */
27108
+ name: string;
27109
+ /**
27110
+ * List of one or more values for the filter.
27111
+ */
27112
+ values: string[];
27113
+ }
26802
27114
  interface GetRouteTableAssociationsFilter {
26803
27115
  /**
26804
27116
  * Name of the field to filter by, as defined by
@@ -26916,6 +27228,12 @@ export declare namespace ec2transitgateway {
26916
27228
  */
26917
27229
  delete?: string;
26918
27230
  }
27231
+ interface PeeringAttachmentOptions {
27232
+ /**
27233
+ * Indicates whether dynamic routing is enabled or disabled.. Supports `enable` and `disable`.
27234
+ */
27235
+ dynamicRouting?: string;
27236
+ }
26919
27237
  }
26920
27238
  export declare namespace ecr {
26921
27239
  interface GetLifecyclePolicyDocumentRule {
@@ -31178,14 +31496,14 @@ export declare namespace fsx {
31178
31496
  }
31179
31497
  interface GetOntapFileSystemEndpointIntercluster {
31180
31498
  /**
31181
- * DNS name for the file system (e.g. `fs-12345678.corp.example.com`).
31499
+ * DNS name for the file system.
31182
31500
  */
31183
31501
  dnsName: string;
31184
31502
  ipAddresses: string[];
31185
31503
  }
31186
31504
  interface GetOntapFileSystemEndpointManagement {
31187
31505
  /**
31188
- * DNS name for the file system (e.g. `fs-12345678.corp.example.com`).
31506
+ * DNS name for the file system.
31189
31507
  */
31190
31508
  dnsName: string;
31191
31509
  ipAddresses: string[];
@@ -35168,6 +35486,10 @@ export declare namespace iot {
35168
35486
  stateValue: string;
35169
35487
  }
35170
35488
  interface TopicRuleCloudwatchLog {
35489
+ /**
35490
+ * The payload that contains a JSON array of records will be sent to CloudWatch via a batch call.
35491
+ */
35492
+ batchMode?: boolean;
35171
35493
  /**
35172
35494
  * The CloudWatch log group name.
35173
35495
  */
@@ -35341,6 +35663,10 @@ export declare namespace iot {
35341
35663
  stateValue: string;
35342
35664
  }
35343
35665
  interface TopicRuleErrorActionCloudwatchLogs {
35666
+ /**
35667
+ * The payload that contains a JSON array of records will be sent to CloudWatch via a batch call.
35668
+ */
35669
+ batchMode?: boolean;
35344
35670
  /**
35345
35671
  * The CloudWatch log group name.
35346
35672
  */
@@ -65477,7 +65803,7 @@ export declare namespace sagemaker {
65477
65803
  }
65478
65804
  interface EndpointConfigurationDataCaptureConfigCaptureOption {
65479
65805
  /**
65480
- * Specifies the data to be captured. Should be one of `Input` or `Output`.
65806
+ * Specifies the data to be captured. Should be one of `Input`, `Output` or `InputAndOutput`.
65481
65807
  */
65482
65808
  captureMode: string;
65483
65809
  }
@@ -71128,6 +71454,51 @@ export declare namespace transfer {
71128
71454
  trustedHostKeys?: string[];
71129
71455
  userSecretId?: string;
71130
71456
  }
71457
+ interface GetConnectorAs2Config {
71458
+ /**
71459
+ * Basic authentication for AS2 connector API. Returns a null value if not set.
71460
+ */
71461
+ basicAuthSecretId: string;
71462
+ /**
71463
+ * Specifies whether AS2 file is compressed. Will be ZLIB or DISABLED
71464
+ */
71465
+ compression: string;
71466
+ /**
71467
+ * Algorithm used to encrypt file. Will be AES128_CBC or AES192_CBC or AES256_CBC or DES_EDE3_CBC or NONE.
71468
+ */
71469
+ encryptionAlgorithm: string;
71470
+ /**
71471
+ * Unique identifier for AS2 local profile.
71472
+ */
71473
+ localProfileId: string;
71474
+ /**
71475
+ * Used for outbound requests to tell if response is asynchronous or not. Will be either SYNC or NONE.
71476
+ */
71477
+ mdnResponse: string;
71478
+ /**
71479
+ * Signing algorithm for MDN response. Will be SHA256 or SHA384 or SHA512 or SHA1 or NONE or DEFAULT.
71480
+ */
71481
+ mdnSigningAlgorithm: string;
71482
+ /**
71483
+ * Subject HTTP header attribute in outbound AS2 messages to the connector.
71484
+ */
71485
+ messageSubject: string;
71486
+ /**
71487
+ * Unique identifier used by connector for partner profile.
71488
+ */
71489
+ partnerProfileId: string;
71490
+ singingAlgorithm: string;
71491
+ }
71492
+ interface GetConnectorSftpConfig {
71493
+ /**
71494
+ * List of the public portions of the host keys that are used to identify the servers the connector is connected to.
71495
+ */
71496
+ trustedHostKeys: string[];
71497
+ /**
71498
+ * Identifer for the secret in AWS Secrets Manager that contains the SFTP user's private key, and/or password.
71499
+ */
71500
+ userSecretId: string;
71501
+ }
71131
71502
  interface ServerEndpointDetails {
71132
71503
  /**
71133
71504
  * A list of address allocation IDs that are required to attach an Elastic IP address to your SFTP server's endpoint. This property can only be used when `endpointType` is set to `VPC`.
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAkmgEjF,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"}
1
+ {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AA47gEjF,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"}