@aws-sdk/client-rolesanywhere 3.428.0 → 3.430.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.
@@ -201,7 +201,7 @@ export interface NotificationSetting {
201
201
  * @public
202
202
  * <p>The event to which this notification setting is applied.</p>
203
203
  */
204
- event: NotificationEvent | string | undefined;
204
+ event: NotificationEvent | undefined;
205
205
  /**
206
206
  * @public
207
207
  * <p>The number of days before a notification event. This value is required for a notification setting that is enabled.</p>
@@ -215,7 +215,7 @@ export interface NotificationSetting {
215
215
  * <p>In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.</p>
216
216
  * </note>
217
217
  */
218
- channel?: NotificationChannel | string;
218
+ channel?: NotificationChannel;
219
219
  }
220
220
  /**
221
221
  * @public
@@ -284,7 +284,7 @@ export interface Source {
284
284
  * @public
285
285
  * <p>The type of the trust anchor. </p>
286
286
  */
287
- sourceType?: TrustAnchorType | string;
287
+ sourceType?: TrustAnchorType;
288
288
  /**
289
289
  * @public
290
290
  * <p>The data field of the trust anchor depending on its type. </p>
@@ -337,7 +337,7 @@ export interface NotificationSettingDetail {
337
337
  * @public
338
338
  * <p>The event to which this notification setting is applied.</p>
339
339
  */
340
- event: NotificationEvent | string | undefined;
340
+ event: NotificationEvent | undefined;
341
341
  /**
342
342
  * @public
343
343
  * <p>The number of days before a notification event.</p>
@@ -351,7 +351,7 @@ export interface NotificationSettingDetail {
351
351
  * <p>In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.</p>
352
352
  * </note>
353
353
  */
354
- channel?: NotificationChannel | string;
354
+ channel?: NotificationChannel;
355
355
  /**
356
356
  * @public
357
357
  * <p>The principal that configured the notification setting.
@@ -841,12 +841,12 @@ export interface NotificationSettingKey {
841
841
  * @public
842
842
  * <p>The notification setting event to reset.</p>
843
843
  */
844
- event: NotificationEvent | string | undefined;
844
+ event: NotificationEvent | undefined;
845
845
  /**
846
846
  * @public
847
847
  * <p>The specified channel of notification.</p>
848
848
  */
849
- channel?: NotificationChannel | string;
849
+ channel?: NotificationChannel;
850
850
  }
851
851
  /**
852
852
  * @public
@@ -58,9 +58,9 @@ export type NotificationEvent =
58
58
  (typeof NotificationEvent)[keyof typeof NotificationEvent];
59
59
  export interface NotificationSetting {
60
60
  enabled: boolean | undefined;
61
- event: NotificationEvent | string | undefined;
61
+ event: NotificationEvent | undefined;
62
62
  threshold?: number;
63
- channel?: NotificationChannel | string;
63
+ channel?: NotificationChannel;
64
64
  }
65
65
  export type SourceData =
66
66
  | SourceData.AcmPcaArnMember
@@ -97,7 +97,7 @@ export declare const TrustAnchorType: {
97
97
  export type TrustAnchorType =
98
98
  (typeof TrustAnchorType)[keyof typeof TrustAnchorType];
99
99
  export interface Source {
100
- sourceType?: TrustAnchorType | string;
100
+ sourceType?: TrustAnchorType;
101
101
  sourceData?: SourceData;
102
102
  }
103
103
  export interface CreateTrustAnchorRequest {
@@ -109,9 +109,9 @@ export interface CreateTrustAnchorRequest {
109
109
  }
110
110
  export interface NotificationSettingDetail {
111
111
  enabled: boolean | undefined;
112
- event: NotificationEvent | string | undefined;
112
+ event: NotificationEvent | undefined;
113
113
  threshold?: number;
114
- channel?: NotificationChannel | string;
114
+ channel?: NotificationChannel;
115
115
  configuredBy?: string;
116
116
  }
117
117
  export interface TrustAnchorDetail {
@@ -234,8 +234,8 @@ export interface ListTrustAnchorsResponse {
234
234
  trustAnchors?: TrustAnchorDetail[];
235
235
  }
236
236
  export interface NotificationSettingKey {
237
- event: NotificationEvent | string | undefined;
238
- channel?: NotificationChannel | string;
237
+ event: NotificationEvent | undefined;
238
+ channel?: NotificationChannel;
239
239
  }
240
240
  export interface UpdateProfileRequest {
241
241
  profileId: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rolesanywhere",
3
3
  "description": "AWS SDK for JavaScript Rolesanywhere Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.430.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",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0"