aws-sdk 2.1657.0 → 2.1659.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 (40) hide show
  1. package/README.md +1 -1
  2. package/apis/acm-pca-2017-08-22.min.json +18 -17
  3. package/apis/acm-pca-2017-08-22.paginators.json +4 -4
  4. package/apis/acm-pca-2017-08-22.waiters2.json +62 -74
  5. package/apis/arc-zonal-shift-2022-10-30.min.json +62 -10
  6. package/apis/batch-2016-08-10.min.json +62 -52
  7. package/apis/bedrock-2023-04-20.min.json +140 -86
  8. package/apis/bedrock-agent-2023-06-05.min.json +1991 -171
  9. package/apis/bedrock-agent-2023-06-05.paginators.json +24 -0
  10. package/apis/bedrock-agent-runtime-2023-07-26.min.json +642 -216
  11. package/apis/bedrock-agent-runtime-2023-07-26.paginators.json +6 -0
  12. package/apis/bedrock-runtime-2023-09-30.min.json +329 -192
  13. package/apis/ec2-2016-11-15.min.json +79 -67
  14. package/apis/glue-2017-03-31.min.json +407 -368
  15. package/apis/groundstation-2019-05-23.min.json +7 -1
  16. package/apis/license-manager-linux-subscriptions-2018-05-10.min.json +236 -16
  17. package/apis/license-manager-linux-subscriptions-2018-05-10.paginators.json +6 -0
  18. package/apis/mediaconnect-2018-11-14.min.json +106 -94
  19. package/apis/pinpoint-2016-12-01.min.json +4 -1
  20. package/apis/quicksight-2018-04-01.min.json +1783 -1313
  21. package/clients/acmpca.d.ts +39 -39
  22. package/clients/arczonalshift.d.ts +66 -29
  23. package/clients/batch.d.ts +12 -0
  24. package/clients/bedrock.d.ts +63 -14
  25. package/clients/bedrockagent.d.ts +2172 -171
  26. package/clients/bedrockagentruntime.d.ts +396 -11
  27. package/clients/bedrockruntime.d.ts +149 -6
  28. package/clients/ec2.d.ts +28 -3
  29. package/clients/glue.d.ts +48 -1
  30. package/clients/licensemanagerlinuxsubscriptions.d.ts +249 -10
  31. package/clients/mediaconnect.d.ts +13 -0
  32. package/clients/quicksight.d.ts +609 -0
  33. package/dist/aws-sdk-core-react-native.js +1 -1
  34. package/dist/aws-sdk-react-native.js +71 -26
  35. package/dist/aws-sdk.js +133 -76
  36. package/dist/aws-sdk.min.js +76 -76
  37. package/lib/core.js +1 -1
  38. package/lib/services/s3.js +51 -6
  39. package/package.json +1 -1
  40. package/scripts/region-checker/allowlist.js +7 -7
@@ -12,6 +12,14 @@ declare class BedrockRuntime extends Service {
12
12
  */
13
13
  constructor(options?: BedrockRuntime.Types.ClientConfiguration)
14
14
  config: Config & BedrockRuntime.Types.ClientConfiguration;
15
+ /**
16
+ * The action to apply a guardrail.
17
+ */
18
+ applyGuardrail(params: BedrockRuntime.Types.ApplyGuardrailRequest, callback?: (err: AWSError, data: BedrockRuntime.Types.ApplyGuardrailResponse) => void): Request<BedrockRuntime.Types.ApplyGuardrailResponse, AWSError>;
19
+ /**
20
+ * The action to apply a guardrail.
21
+ */
22
+ applyGuardrail(callback?: (err: AWSError, data: BedrockRuntime.Types.ApplyGuardrailResponse) => void): Request<BedrockRuntime.Types.ApplyGuardrailResponse, AWSError>;
15
23
  /**
16
24
  * Sends messages to the specified Amazon Bedrock model. Converse provides a consistent interface that works with all models that support messages. This allows you to write code once and use it with different models. Should a model have unique inference parameters, you can also pass those unique parameters to the model. For information about the Converse API, see Use the Converse API in the Amazon Bedrock User Guide. To use a guardrail, see Use a guardrail with the Converse API in the Amazon Bedrock User Guide. To use a tool with a model, see Tool use (Function calling) in the Amazon Bedrock User Guide For example code, see Converse API examples in the Amazon Bedrock User Guide. This operation requires permission for the bedrock:InvokeModel action.
17
25
  */
@@ -48,6 +56,42 @@ declare class BedrockRuntime extends Service {
48
56
  declare namespace BedrockRuntime {
49
57
  export interface AnyToolChoice {
50
58
  }
59
+ export interface ApplyGuardrailRequest {
60
+ /**
61
+ * The guardrail identifier used in the request to apply the guardrail.
62
+ */
63
+ guardrailIdentifier: GuardrailIdentifier;
64
+ /**
65
+ * The guardrail version used in the request to apply the guardrail.
66
+ */
67
+ guardrailVersion: GuardrailVersion;
68
+ /**
69
+ * The source of data used in the request to apply the guardrail.
70
+ */
71
+ source: GuardrailContentSource;
72
+ /**
73
+ * The content details used in the request to apply the guardrail.
74
+ */
75
+ content: GuardrailContentBlockList;
76
+ }
77
+ export interface ApplyGuardrailResponse {
78
+ /**
79
+ * The usage details in the response from the guardrail.
80
+ */
81
+ usage: GuardrailUsage;
82
+ /**
83
+ * The action taken in the response from the guardrail.
84
+ */
85
+ action: GuardrailAction;
86
+ /**
87
+ * The output details in the response from the guardrail.
88
+ */
89
+ outputs: GuardrailOutputContentList;
90
+ /**
91
+ * The assessment details in the response from the guardrail.
92
+ */
93
+ assessments: GuardrailAssessmentList;
94
+ }
51
95
  export interface AutoToolChoice {
52
96
  }
53
97
  export type Body = Buffer|Uint8Array|Blob|string;
@@ -65,7 +109,7 @@ declare namespace BedrockRuntime {
65
109
  */
66
110
  document?: DocumentBlock;
67
111
  /**
68
- * Information about a tool use request from a model.
112
+ * Information about a tool use request from a model.
69
113
  */
70
114
  toolUse?: ToolUseBlock;
71
115
  /**
@@ -279,7 +323,7 @@ declare namespace BedrockRuntime {
279
323
  */
280
324
  format: DocumentFormat;
281
325
  /**
282
- * A name for the document.
326
+ * A name for the document. The name can only contain the following characters: Alphanumeric characters Whitespace characters (no more than one in a row) Hyphens Parentheses Square brackets This field is vulnerable to prompt injections, because the model might inadvertently interpret it as instructions. Therefore, we recommend that you specify a neutral name.
283
327
  */
284
328
  name: DocumentBlockNameString;
285
329
  /**
@@ -291,11 +335,12 @@ declare namespace BedrockRuntime {
291
335
  export type DocumentFormat = "pdf"|"csv"|"doc"|"docx"|"xls"|"xlsx"|"html"|"txt"|"md"|string;
292
336
  export interface DocumentSource {
293
337
  /**
294
- * A base64-encoded string of a UTF-8 encoded file, that is the document to include in the message.
338
+ * The raw bytes for the document. If you use an Amazon Web Services SDK, you don't need to encode the bytes in base64.
295
339
  */
296
340
  bytes?: DocumentSourceBytesBlob;
297
341
  }
298
342
  export type DocumentSourceBytesBlob = Buffer|Uint8Array|Blob|string;
343
+ export type GuardrailAction = "NONE"|"GUARDRAIL_INTERVENED"|string;
299
344
  export interface GuardrailAssessment {
300
345
  /**
301
346
  * The topic policy.
@@ -313,6 +358,10 @@ declare namespace BedrockRuntime {
313
358
  * The sensitive information policy.
314
359
  */
315
360
  sensitiveInformationPolicy?: GuardrailSensitiveInformationPolicyAssessment;
361
+ /**
362
+ * The contextual grounding policy used for the guardrail assessment.
363
+ */
364
+ contextualGroundingPolicy?: GuardrailContextualGroundingPolicyAssessment;
316
365
  }
317
366
  export type GuardrailAssessmentList = GuardrailAssessment[];
318
367
  export type GuardrailAssessmentListMap = {[key: string]: GuardrailAssessmentList};
@@ -331,6 +380,13 @@ declare namespace BedrockRuntime {
331
380
  */
332
381
  trace?: GuardrailTrace;
333
382
  }
383
+ export interface GuardrailContentBlock {
384
+ /**
385
+ * Text within content block to be evaluated by the guardrail.
386
+ */
387
+ text?: GuardrailTextBlock;
388
+ }
389
+ export type GuardrailContentBlockList = GuardrailContentBlock[];
334
390
  export interface GuardrailContentFilter {
335
391
  /**
336
392
  * The guardrail type.
@@ -355,17 +411,57 @@ declare namespace BedrockRuntime {
355
411
  */
356
412
  filters: GuardrailContentFilterList;
357
413
  }
414
+ export type GuardrailContentPolicyUnitsProcessed = number;
415
+ export type GuardrailContentQualifier = "grounding_source"|"query"|"guard_content"|string;
416
+ export type GuardrailContentQualifierList = GuardrailContentQualifier[];
417
+ export type GuardrailContentSource = "INPUT"|"OUTPUT"|string;
418
+ export interface GuardrailContextualGroundingFilter {
419
+ /**
420
+ * The contextual grounding filter type.
421
+ */
422
+ type: GuardrailContextualGroundingFilterType;
423
+ /**
424
+ * The threshold used by contextual grounding filter to determine whether the content is grounded or not.
425
+ */
426
+ threshold: GuardrailContextualGroundingFilterThresholdDouble;
427
+ /**
428
+ * The score generated by contextual grounding filter.
429
+ */
430
+ score: GuardrailContextualGroundingFilterScoreDouble;
431
+ /**
432
+ * The action performed by the guardrails contextual grounding filter.
433
+ */
434
+ action: GuardrailContextualGroundingPolicyAction;
435
+ }
436
+ export type GuardrailContextualGroundingFilterScoreDouble = number;
437
+ export type GuardrailContextualGroundingFilterThresholdDouble = number;
438
+ export type GuardrailContextualGroundingFilterType = "GROUNDING"|"RELEVANCE"|string;
439
+ export type GuardrailContextualGroundingFilters = GuardrailContextualGroundingFilter[];
440
+ export type GuardrailContextualGroundingPolicyAction = "BLOCKED"|"NONE"|string;
441
+ export interface GuardrailContextualGroundingPolicyAssessment {
442
+ /**
443
+ * The filter details for the guardrails contextual grounding filter.
444
+ */
445
+ filters?: GuardrailContextualGroundingFilters;
446
+ }
447
+ export type GuardrailContextualGroundingPolicyUnitsProcessed = number;
358
448
  export interface GuardrailConverseContentBlock {
359
449
  /**
360
450
  * The text to guard.
361
451
  */
362
452
  text?: GuardrailConverseTextBlock;
363
453
  }
454
+ export type GuardrailConverseContentQualifier = "grounding_source"|"query"|"guard_content"|string;
455
+ export type GuardrailConverseContentQualifierList = GuardrailConverseContentQualifier[];
364
456
  export interface GuardrailConverseTextBlock {
365
457
  /**
366
458
  * The text that you want to guard.
367
459
  */
368
460
  text: String;
461
+ /**
462
+ * The qualifier details for the guardrails contextual grounding filter.
463
+ */
464
+ qualifiers?: GuardrailConverseContentQualifierList;
369
465
  }
370
466
  export interface GuardrailCustomWord {
371
467
  /**
@@ -395,6 +491,13 @@ declare namespace BedrockRuntime {
395
491
  }
396
492
  export type GuardrailManagedWordList = GuardrailManagedWord[];
397
493
  export type GuardrailManagedWordType = "PROFANITY"|string;
494
+ export interface GuardrailOutputContent {
495
+ /**
496
+ * The specific text for the output content produced by the guardrail.
497
+ */
498
+ text?: GuardrailOutputText;
499
+ }
500
+ export type GuardrailOutputContentList = GuardrailOutputContent[];
398
501
  export type GuardrailOutputText = string;
399
502
  export interface GuardrailPiiEntityFilter {
400
503
  /**
@@ -442,6 +545,8 @@ declare namespace BedrockRuntime {
442
545
  */
443
546
  regexes: GuardrailRegexFilterList;
444
547
  }
548
+ export type GuardrailSensitiveInformationPolicyFreeUnitsProcessed = number;
549
+ export type GuardrailSensitiveInformationPolicyUnitsProcessed = number;
445
550
  export interface GuardrailStreamConfiguration {
446
551
  /**
447
552
  * The identifier for the guardrail.
@@ -461,6 +566,16 @@ declare namespace BedrockRuntime {
461
566
  streamProcessingMode?: GuardrailStreamProcessingMode;
462
567
  }
463
568
  export type GuardrailStreamProcessingMode = "sync"|"async"|string;
569
+ export interface GuardrailTextBlock {
570
+ /**
571
+ * The input text details to be evaluated by the guardrail.
572
+ */
573
+ text: String;
574
+ /**
575
+ * The qualifiers describing the text block.
576
+ */
577
+ qualifiers?: GuardrailContentQualifierList;
578
+ }
464
579
  export interface GuardrailTopic {
465
580
  /**
466
581
  * The name for the guardrail.
@@ -483,6 +598,7 @@ declare namespace BedrockRuntime {
483
598
  */
484
599
  topics: GuardrailTopicList;
485
600
  }
601
+ export type GuardrailTopicPolicyUnitsProcessed = number;
486
602
  export type GuardrailTopicType = "DENY"|string;
487
603
  export type GuardrailTrace = "enabled"|"disabled"|string;
488
604
  export interface GuardrailTraceAssessment {
@@ -499,6 +615,32 @@ declare namespace BedrockRuntime {
499
615
  */
500
616
  outputAssessments?: GuardrailAssessmentListMap;
501
617
  }
618
+ export interface GuardrailUsage {
619
+ /**
620
+ * The topic policy units processed by the guardrail.
621
+ */
622
+ topicPolicyUnits: GuardrailTopicPolicyUnitsProcessed;
623
+ /**
624
+ * The content policy units processed by the guardrail.
625
+ */
626
+ contentPolicyUnits: GuardrailContentPolicyUnitsProcessed;
627
+ /**
628
+ * The word policy units processed by the guardrail.
629
+ */
630
+ wordPolicyUnits: GuardrailWordPolicyUnitsProcessed;
631
+ /**
632
+ * The sensitive information policy units processed by the guardrail.
633
+ */
634
+ sensitiveInformationPolicyUnits: GuardrailSensitiveInformationPolicyUnitsProcessed;
635
+ /**
636
+ * The sensitive information policy free units processed by the guardrail.
637
+ */
638
+ sensitiveInformationPolicyFreeUnits: GuardrailSensitiveInformationPolicyFreeUnitsProcessed;
639
+ /**
640
+ * The contextual grounding policy units processed by the guardrail.
641
+ */
642
+ contextualGroundingPolicyUnits: GuardrailContextualGroundingPolicyUnitsProcessed;
643
+ }
502
644
  export type GuardrailVersion = string;
503
645
  export type GuardrailWordPolicyAction = "BLOCKED"|string;
504
646
  export interface GuardrailWordPolicyAssessment {
@@ -511,6 +653,7 @@ declare namespace BedrockRuntime {
511
653
  */
512
654
  managedWordLists: GuardrailManagedWordList;
513
655
  }
656
+ export type GuardrailWordPolicyUnitsProcessed = number;
514
657
  export interface ImageBlock {
515
658
  /**
516
659
  * The format of the image.
@@ -524,7 +667,7 @@ declare namespace BedrockRuntime {
524
667
  export type ImageFormat = "png"|"jpeg"|"gif"|"webp"|string;
525
668
  export interface ImageSource {
526
669
  /**
527
- * The raw image bytes for the image. If you use an AWS SDK, you don't need to base64 encode the image bytes.
670
+ * The raw image bytes for the image. If you use an AWS SDK, you don't need to encode the image bytes in base64.
528
671
  */
529
672
  bytes?: ImageSourceBytesBlob;
530
673
  }
@@ -642,7 +785,7 @@ declare namespace BedrockRuntime {
642
785
  */
643
786
  role: ConversationRole;
644
787
  /**
645
- * The message content.
788
+ * The message content. Note the following restrictions: You can include up to 20 images. Each image's size, height, and width must be no more than 3.75 MB, 8000 px, and 8000 px, respectively. You can include up to five documents. Each document's size must be no more than 4.5 MB. If you include a ContentBlock with a document field in the array, you must also include a ContentBlock with a text field. You can only include images and documents if the role is user.
646
789
  */
647
790
  content: ContentBlocks;
648
791
  }
@@ -705,7 +848,7 @@ declare namespace BedrockRuntime {
705
848
  */
706
849
  text?: NonEmptyString;
707
850
  /**
708
- * A content block to assess with the guardrail. Use with the Converse API (Converse and ConverseStream). For more information, see Use a guardrail with the Converse API in the Amazon Bedrock User Guide.
851
+ * A content block to assess with the guardrail. Use with the Converse or ConverseStream API operations. For more information, see Use a guardrail with the Converse API in the Amazon Bedrock User Guide.
709
852
  */
710
853
  guardContent?: GuardrailConverseContentBlock;
711
854
  }
package/clients/ec2.d.ts CHANGED
@@ -9650,7 +9650,7 @@ declare namespace EC2 {
9650
9650
  */
9651
9651
  IpamScopeId: IpamScopeId;
9652
9652
  /**
9653
- * In IPAM, the locale is the Amazon Web Services Region where you want to make an IPAM pool available for allocations. Only resources in the same Region as the locale of the pool can get IP address allocations from the pool. You can only allocate a CIDR for a VPC, for example, from an IPAM pool that shares a locale with the VPC’s Region. Note that once you choose a Locale for a pool, you cannot modify it. If you do not choose a locale, resources in Regions others than the IPAM's home region cannot use CIDRs from this pool. Possible values: Any Amazon Web Services Region, such as us-east-1.
9653
+ * In IPAM, the locale is the Amazon Web Services Region or, for IPAM IPv4 pools in the public scope, the network border group for an Amazon Web Services Local Zone where you want to make an IPAM pool available for allocations (supported Local Zones). If you do not choose a locale, resources in Regions others than the IPAM's home region cannot use CIDRs from this pool. Possible values: Any Amazon Web Services Region, such as us-east-1.
9654
9654
  */
9655
9655
  Locale?: String;
9656
9656
  /**
@@ -10405,6 +10405,10 @@ declare namespace EC2 {
10405
10405
  * The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.
10406
10406
  */
10407
10407
  TagSpecifications?: TagSpecificationList;
10408
+ /**
10409
+ * The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see Local Zone availability in the Amazon EC2 User Guide.
10410
+ */
10411
+ NetworkBorderGroup?: String;
10408
10412
  }
10409
10413
  export interface CreatePublicIpv4PoolResult {
10410
10414
  /**
@@ -12819,6 +12823,10 @@ declare namespace EC2 {
12819
12823
  * The ID of the public IPv4 pool you want to delete.
12820
12824
  */
12821
12825
  PoolId: Ipv4PoolEc2Id;
12826
+ /**
12827
+ * The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see Local Zone availability in the Amazon EC2 User Guide.
12828
+ */
12829
+ NetworkBorderGroup?: String;
12822
12830
  }
12823
12831
  export interface DeletePublicIpv4PoolResult {
12824
12832
  /**
@@ -25860,7 +25868,7 @@ declare namespace EC2 {
25860
25868
  */
25861
25869
  Tags?: IpamPublicAddressTags;
25862
25870
  /**
25863
- * The network border group that the resource that the IP address is assigned to is in.
25871
+ * The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see Local Zone availability in the Amazon EC2 User Guide.
25864
25872
  */
25865
25873
  NetworkBorderGroup?: String;
25866
25874
  /**
@@ -25910,10 +25918,18 @@ declare namespace EC2 {
25910
25918
  * The VPC ID.
25911
25919
  */
25912
25920
  VpcId?: String;
25921
+ /**
25922
+ * For elastic IP addresses, this is the status of an attached network interface.
25923
+ */
25924
+ NetworkInterfaceAttachmentStatus?: IpamNetworkInterfaceAttachmentStatus;
25913
25925
  /**
25914
25926
  * The last successful resource discovery time.
25915
25927
  */
25916
25928
  SampleTime?: MillisecondDateTime;
25929
+ /**
25930
+ * The Availability Zone ID.
25931
+ */
25932
+ AvailabilityZoneId?: String;
25917
25933
  }
25918
25934
  export type IpamDiscoveredResourceCidrSet = IpamDiscoveredResourceCidr[];
25919
25935
  export type IpamDiscoveryFailureCode = "assume-role-failure"|"throttling-failure"|"unauthorized-failure"|string;
@@ -25931,6 +25947,7 @@ declare namespace EC2 {
25931
25947
  export type IpamManagementState = "managed"|"unmanaged"|"ignored"|string;
25932
25948
  export type IpamMaxResults = number;
25933
25949
  export type IpamNetmaskLength = number;
25950
+ export type IpamNetworkInterfaceAttachmentStatus = "available"|"in-use"|string;
25934
25951
  export interface IpamOperatingRegion {
25935
25952
  /**
25936
25953
  * The name of the operating Region.
@@ -25973,7 +25990,7 @@ declare namespace EC2 {
25973
25990
  */
25974
25991
  IpamRegion?: String;
25975
25992
  /**
25976
- * The locale of the IPAM pool. In IPAM, the locale is the Amazon Web Services Region where you want to make an IPAM pool available for allocations. Only resources in the same Region as the locale of the pool can get IP address allocations from the pool. You can only allocate a CIDR for a VPC, for example, from an IPAM pool that shares a locale with the VPC’s Region. Note that once you choose a Locale for a pool, you cannot modify it. If you choose an Amazon Web Services Region for locale that has not been configured as an operating Region for the IPAM, you'll get an error.
25993
+ * The locale of the IPAM pool. In IPAM, the locale is the Amazon Web Services Region or, for IPAM IPv4 pools in the public scope, the network border group for an Amazon Web Services Local Zone where you want to make an IPAM pool available for allocations (supported Local Zones). If you choose an Amazon Web Services Region for locale that has not been configured as an operating Region for the IPAM, you'll get an error.
25977
25994
  */
25978
25995
  Locale?: String;
25979
25996
  /**
@@ -26242,6 +26259,10 @@ declare namespace EC2 {
26242
26259
  * The ID of a VPC.
26243
26260
  */
26244
26261
  VpcId?: String;
26262
+ /**
26263
+ * The Availability Zone ID.
26264
+ */
26265
+ AvailabilityZoneId?: String;
26245
26266
  }
26246
26267
  export type IpamResourceCidrSet = IpamResourceCidr[];
26247
26268
  export interface IpamResourceDiscovery {
@@ -32272,6 +32293,10 @@ declare namespace EC2 {
32272
32293
  * The netmask length of the CIDR you would like to allocate to the public IPv4 pool.
32273
32294
  */
32274
32295
  NetmaskLength: Integer;
32296
+ /**
32297
+ * The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see Local Zone availability in the Amazon EC2 User Guide.
32298
+ */
32299
+ NetworkBorderGroup?: String;
32275
32300
  }
32276
32301
  export interface ProvisionPublicIpv4PoolCidrResult {
32277
32302
  /**
package/clients/glue.d.ts CHANGED
@@ -3546,6 +3546,21 @@ declare namespace Glue {
3546
3546
  */
3547
3547
  CrawlState?: CrawlState;
3548
3548
  }
3549
+ export interface ConditionExpression {
3550
+ /**
3551
+ * The condition of the condition expression.
3552
+ */
3553
+ Condition: DatabrewCondition;
3554
+ /**
3555
+ * The value of the condition expression.
3556
+ */
3557
+ Value?: DatabrewConditionValue;
3558
+ /**
3559
+ * The target column of the condition expressions.
3560
+ */
3561
+ TargetColumn: TargetColumn;
3562
+ }
3563
+ export type ConditionExpressionList = ConditionExpression[];
3549
3564
  export type ConditionList = Condition[];
3550
3565
  export type ConfigValueString = string;
3551
3566
  export type ConfigurationMap = {[key: string]: ConfigurationObject};
@@ -5590,6 +5605,8 @@ declare namespace Glue {
5590
5605
  }
5591
5606
  export type DatabaseList = Database[];
5592
5607
  export type DatabaseName = string;
5608
+ export type DatabrewCondition = string;
5609
+ export type DatabrewConditionValue = string;
5593
5610
  export interface Datatype {
5594
5611
  /**
5595
5612
  * The datatype of the value.
@@ -10740,6 +10757,7 @@ declare namespace Glue {
10740
10757
  */
10741
10758
  IcebergInput?: IcebergInput;
10742
10759
  }
10760
+ export type Operation = string;
10743
10761
  export interface Option {
10744
10762
  /**
10745
10763
  * Specifies the value of the option.
@@ -10857,6 +10875,9 @@ declare namespace Glue {
10857
10875
  export type PageSize = number;
10858
10876
  export type PaginationToken = string;
10859
10877
  export type ParamType = "str"|"int"|"float"|"complex"|"bool"|"list"|"null"|string;
10878
+ export type ParameterMap = {[key: string]: ParameterValue};
10879
+ export type ParameterName = string;
10880
+ export type ParameterValue = string;
10860
10881
  export type ParametersMap = {[key: string]: ParametersMapValue};
10861
10882
  export type ParametersMapValue = string;
10862
10883
  export type ParquetCompressionType = "snappy"|"lzo"|"gzip"|"uncompressed"|"none"|string;
@@ -11273,7 +11294,21 @@ declare namespace Glue {
11273
11294
  /**
11274
11295
  * A reference to the DataBrew recipe used by the node.
11275
11296
  */
11276
- RecipeReference: RecipeReference;
11297
+ RecipeReference?: RecipeReference;
11298
+ /**
11299
+ * Transform steps used in the recipe node.
11300
+ */
11301
+ RecipeSteps?: RecipeSteps;
11302
+ }
11303
+ export interface RecipeAction {
11304
+ /**
11305
+ * The operation of the recipe action.
11306
+ */
11307
+ Operation: Operation;
11308
+ /**
11309
+ * The parameters of the recipe action.
11310
+ */
11311
+ Parameters?: ParameterMap;
11277
11312
  }
11278
11313
  export interface RecipeReference {
11279
11314
  /**
@@ -11285,6 +11320,17 @@ declare namespace Glue {
11285
11320
  */
11286
11321
  RecipeVersion: RecipeVersion;
11287
11322
  }
11323
+ export interface RecipeStep {
11324
+ /**
11325
+ * The transformation action of the recipe step.
11326
+ */
11327
+ Action: RecipeAction;
11328
+ /**
11329
+ * The condition expressions for the recipe step.
11330
+ */
11331
+ ConditionExpressions?: ConditionExpressionList;
11332
+ }
11333
+ export type RecipeSteps = RecipeStep[];
11288
11334
  export type RecipeVersion = string;
11289
11335
  export type RecordsCount = number;
11290
11336
  export type RecrawlBehavior = "CRAWL_EVERYTHING"|"CRAWL_NEW_FOLDERS_ONLY"|"CRAWL_EVENT_MODE"|string;
@@ -13618,6 +13664,7 @@ declare namespace Glue {
13618
13664
  }
13619
13665
  export type TagValue = string;
13620
13666
  export type TagsMap = {[key: string]: TagValue};
13667
+ export type TargetColumn = string;
13621
13668
  export type TargetFormat = "json"|"csv"|"avro"|"orc"|"parquet"|"hudi"|"delta"|string;
13622
13669
  export interface TaskRun {
13623
13670
  /**