@aws-sdk/client-bedrock 3.864.0 → 3.872.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.
@@ -82,6 +82,9 @@ declare const CreateAutomatedReasoningPolicyVersionCommand_base: {
82
82
  * @throws {@link ThrottlingException} (client fault)
83
83
  * <p>The number of requests exceeds the limit. Resubmit your request later.</p>
84
84
  *
85
+ * @throws {@link TooManyTagsException} (client fault)
86
+ * <p>The request contains more tags than can be associated with a resource (50 tags per resource). The maximum number of tags includes both existing tags and those included in your current request. </p>
87
+ *
85
88
  * @throws {@link ValidationException} (client fault)
86
89
  * <p>Input validation failed. Check your request parameters and retry the request.</p>
87
90
  *
@@ -1467,7 +1467,7 @@ export interface GetAutomatedReasoningPolicyBuildWorkflowResultAssetsRequest {
1467
1467
  */
1468
1468
  export interface AutomatedReasoningPolicyAddRuleMutation {
1469
1469
  /**
1470
- * <p>Represents a formal logic rule in an Automated Reasoning policy. For example, rules can be expressed as if-then statements that define logical constraints.</p>
1470
+ * <p>The rule definition that specifies the formal logical expression and metadata for the new rule being added to the policy.</p>
1471
1471
  * @public
1472
1472
  */
1473
1473
  rule: AutomatedReasoningPolicyDefinitionRule | undefined;
@@ -1478,7 +1478,7 @@ export interface AutomatedReasoningPolicyAddRuleMutation {
1478
1478
  */
1479
1479
  export interface AutomatedReasoningPolicyAddTypeMutation {
1480
1480
  /**
1481
- * <p>Represents a custom user-defined viarble type in an Automated Reasoning policy. Types are enum-based and provide additional context beyond predefined variable types.</p>
1481
+ * <p>The type definition that specifies the name, description, and possible values for the new custom type being added to the policy.</p>
1482
1482
  * @public
1483
1483
  */
1484
1484
  type: AutomatedReasoningPolicyDefinitionType | undefined;
@@ -1489,7 +1489,7 @@ export interface AutomatedReasoningPolicyAddTypeMutation {
1489
1489
  */
1490
1490
  export interface AutomatedReasoningPolicyAddVariableMutation {
1491
1491
  /**
1492
- * <p>Represents a variable in an Automated Reasoning policy. Variables represent concepts that can have values assigned during natural language translation.</p>
1492
+ * <p>The variable definition that specifies the name, type, and description for the new variable being added to the policy.</p>
1493
1493
  * @public
1494
1494
  */
1495
1495
  variable: AutomatedReasoningPolicyDefinitionVariable | undefined;
@@ -1533,7 +1533,7 @@ export interface AutomatedReasoningPolicyDeleteVariableMutation {
1533
1533
  */
1534
1534
  export interface AutomatedReasoningPolicyUpdateRuleMutation {
1535
1535
  /**
1536
- * <p>Represents a formal logic rule in an Automated Reasoning policy. For example, rules can be expressed as if-then statements that define logical constraints.</p>
1536
+ * <p>The updated rule definition containing the modified formal logical expression and any changed metadata for the existing rule.</p>
1537
1537
  * @public
1538
1538
  */
1539
1539
  rule: AutomatedReasoningPolicyDefinitionRule | undefined;
@@ -1544,7 +1544,7 @@ export interface AutomatedReasoningPolicyUpdateRuleMutation {
1544
1544
  */
1545
1545
  export interface AutomatedReasoningPolicyUpdateTypeMutation {
1546
1546
  /**
1547
- * <p>Represents a custom user-defined viarble type in an Automated Reasoning policy. Types are enum-based and provide additional context beyond predefined variable types.</p>
1547
+ * <p>The updated type definition containing the modified name, description, or values for the existing custom type.</p>
1548
1548
  * @public
1549
1549
  */
1550
1550
  type: AutomatedReasoningPolicyDefinitionType | undefined;
@@ -1555,7 +1555,7 @@ export interface AutomatedReasoningPolicyUpdateTypeMutation {
1555
1555
  */
1556
1556
  export interface AutomatedReasoningPolicyUpdateVariableMutation {
1557
1557
  /**
1558
- * <p>Represents a variable in an Automated Reasoning policy. Variables represent concepts that can have values assigned during natural language translation.</p>
1558
+ * <p>The updated variable definition containing the modified name, type, or description for the existing variable.</p>
1559
1559
  * @public
1560
1560
  */
1561
1561
  variable: AutomatedReasoningPolicyDefinitionVariable | undefined;
@@ -1829,7 +1829,7 @@ export type AutomatedReasoningPolicyDefinitionElement = AutomatedReasoningPolicy
1829
1829
  */
1830
1830
  export declare namespace AutomatedReasoningPolicyDefinitionElement {
1831
1831
  /**
1832
- * <p>Represents a variable in an Automated Reasoning policy. Variables represent concepts that can have values assigned during natural language translation.</p>
1832
+ * <p>A variable element within the policy definition that represents a concept used in logical expressions and rules.</p>
1833
1833
  * @public
1834
1834
  */
1835
1835
  interface PolicyDefinitionVariableMember {
@@ -1839,7 +1839,7 @@ export declare namespace AutomatedReasoningPolicyDefinitionElement {
1839
1839
  $unknown?: never;
1840
1840
  }
1841
1841
  /**
1842
- * <p>Represents a custom user-defined viarble type in an Automated Reasoning policy. Types are enum-based and provide additional context beyond predefined variable types.</p>
1842
+ * <p>A custom type element within the policy definition that defines a set of possible values for variables.</p>
1843
1843
  * @public
1844
1844
  */
1845
1845
  interface PolicyDefinitionTypeMember {
@@ -1849,7 +1849,7 @@ export declare namespace AutomatedReasoningPolicyDefinitionElement {
1849
1849
  $unknown?: never;
1850
1850
  }
1851
1851
  /**
1852
- * <p>Represents a formal logic rule in an Automated Reasoning policy. For example, rules can be expressed as if-then statements that define logical constraints.</p>
1852
+ * <p>A rule element within the policy definition that contains a formal logical expression used for validation.</p>
1853
1853
  * @public
1854
1854
  */
1855
1855
  interface PolicyDefinitionRuleMember {
@@ -2028,7 +2028,7 @@ export type AutomatedReasoningPolicyBuildResultAssets = AutomatedReasoningPolicy
2028
2028
  */
2029
2029
  export declare namespace AutomatedReasoningPolicyBuildResultAssets {
2030
2030
  /**
2031
- * <p>Contains the formal logic rules, variables, and custom variable types that define an Automated Reasoning policy. The policy definition specifies the constraints used to validate foundation model responses for accuracy and logical consistency.</p>
2031
+ * <p>The complete policy definition generated by the build workflow, containing all rules, variables, and custom types extracted from the source documents.</p>
2032
2032
  * @public
2033
2033
  */
2034
2034
  interface PolicyDefinitionMember {
@@ -2657,7 +2657,7 @@ export type AutomatedReasoningPolicyTestRunStatus = (typeof AutomatedReasoningPo
2657
2657
  */
2658
2658
  export interface AutomatedReasoningPolicyTestResult {
2659
2659
  /**
2660
- * <p>Represents a test for validating an Automated Reasoning policy. tests contain sample inputs and expected outcomes to verify policy behavior.</p>
2660
+ * <p>The test case that was executed, including the input content, expected results, and configuration parameters used during validation.</p>
2661
2661
  * @public
2662
2662
  */
2663
2663
  testCase: AutomatedReasoningPolicyTestCase | undefined;
@@ -3009,7 +3009,7 @@ export declare namespace AutomatedReasoningPolicyWorkflowTypeContent {
3009
3009
  */
3010
3010
  export interface AutomatedReasoningPolicyBuildWorkflowSource {
3011
3011
  /**
3012
- * <p>Contains the formal logic rules, variables, and custom variable types that define an Automated Reasoning policy. The policy definition specifies the constraints used to validate foundation model responses for accuracy and logical consistency.</p>
3012
+ * <p>An existing policy definition that serves as the starting point for the build workflow, typically used in policy repair or update scenarios.</p>
3013
3013
  * @public
3014
3014
  */
3015
3015
  policyDefinition?: AutomatedReasoningPolicyDefinition | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock",
3
3
  "description": "AWS SDK for JavaScript Bedrock Client for Node.js, Browser and React Native",
4
- "version": "3.864.0",
4
+ "version": "3.872.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-bedrock",
@@ -21,7 +21,7 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.864.0",
24
- "@aws-sdk/credential-provider-node": "3.864.0",
24
+ "@aws-sdk/credential-provider-node": "3.872.0",
25
25
  "@aws-sdk/middleware-host-header": "3.862.0",
26
26
  "@aws-sdk/middleware-logger": "3.862.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.862.0",