@aws-sdk/client-sts 3.451.0 → 3.454.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.
@@ -36,17 +36,20 @@ export interface PolicyDescriptorType {
36
36
  }
37
37
  /**
38
38
  * @public
39
- * <p>Reserved for future use.</p>
39
+ * <p>Contains information about the provided context. This includes the signed and encrypted
40
+ * trusted context assertion and the context provider ARN from which the trusted context
41
+ * assertion was generated.</p>
40
42
  */
41
43
  export interface ProvidedContext {
42
44
  /**
43
45
  * @public
44
- * <p>Reserved for future use.</p>
46
+ * <p>The context provider ARN from which the trusted context assertion was generated.</p>
45
47
  */
46
48
  ProviderArn?: string;
47
49
  /**
48
50
  * @public
49
- * <p>Reserved for future use.</p>
51
+ * <p>The signed and encrypted trusted context assertion generated by the context provider.
52
+ * The trusted context assertion is signed and encrypted by Amazon Web Services STS.</p>
50
53
  */
51
54
  ContextAssertion?: string;
52
55
  }
@@ -280,7 +283,14 @@ export interface AssumeRoleRequest {
280
283
  SourceIdentity?: string;
281
284
  /**
282
285
  * @public
283
- * <p>Reserved for future use.</p>
286
+ * <p>A list of previously acquired trusted context assertions in the format of a JSON array.
287
+ * The trusted context assertion is signed and encrypted by Amazon Web Services STS.</p>
288
+ * <p>The following is an example of a <code>ProvidedContext</code> value that includes a
289
+ * single trusted context assertion and the ARN of the context provider from which the trusted
290
+ * context assertion was generated.</p>
291
+ * <p>
292
+ * <code>[\{"ProviderArn":"arn:aws:iam::aws:contextProvider/identitycenter","ContextAssertion":"trusted-context-assertion"\}]</code>
293
+ * </p>
284
294
  */
285
295
  ProvidedContexts?: ProvidedContext[];
286
296
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sts",
3
3
  "description": "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
4
- "version": "3.451.0",
4
+ "version": "3.454.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",