aws-sdk 2.1462.0 → 2.1464.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.
- package/CHANGELOG.md +18 -1
- package/README.md +1 -1
- package/apis/amplifyuibuilder-2021-08-11.min.json +28 -9
- package/apis/braket-2019-09-01.min.json +64 -12
- package/apis/chime-sdk-media-pipelines-2021-07-15.min.json +296 -9
- package/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/apis/dms-2016-01-01.examples.json +968 -0
- package/apis/dms-2016-01-01.min.json +305 -257
- package/apis/emr-serverless-2021-07-13.min.json +94 -73
- package/apis/events-2015-10-07.min.json +59 -34
- package/apis/finspace-data-2020-07-13.min.json +5 -3
- package/apis/mediaconvert-2017-08-29.min.json +169 -161
- package/apis/quicksight-2018-04-01.min.json +4 -1
- package/apis/wafv2-2019-07-29.min.json +177 -168
- package/clients/amplifyuibuilder.d.ts +32 -4
- package/clients/braket.d.ts +73 -0
- package/clients/chimesdkmediapipelines.d.ts +291 -2
- package/clients/cloudwatchevents.d.ts +13 -9
- package/clients/dms.d.ts +117 -19
- package/clients/ec2.d.ts +1 -1
- package/clients/efs.d.ts +10 -10
- package/clients/emrserverless.d.ts +21 -0
- package/clients/finspacedata.d.ts +36 -36
- package/clients/guardduty.d.ts +14 -14
- package/clients/mediaconvert.d.ts +15 -5
- package/clients/quicksight.d.ts +7 -3
- package/clients/ssm.d.ts +7 -7
- package/clients/wafv2.d.ts +42 -32
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +62 -37
- package/dist/aws-sdk.min.js +54 -54
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -206,6 +206,11 @@ declare namespace EMRServerless {
|
|
206
206
|
* The specification applied to each worker type.
|
207
207
|
*/
|
208
208
|
workerTypeSpecifications?: WorkerTypeSpecificationMap;
|
209
|
+
/**
|
210
|
+
* The Configuration specifications of an application. Each configuration consists of a classification and properties. You use this parameter when creating or updating an application. To see the runtimeConfiguration object of an application, run the GetApplication API operation.
|
211
|
+
*/
|
212
|
+
runtimeConfiguration?: ConfigurationList;
|
213
|
+
monitoringConfiguration?: MonitoringConfiguration;
|
209
214
|
}
|
210
215
|
export type ApplicationArn = string;
|
211
216
|
export type ApplicationId = string;
|
@@ -396,6 +401,14 @@ declare namespace EMRServerless {
|
|
396
401
|
* The key-value pairs that specify worker type to WorkerTypeSpecificationInput. This parameter must contain all valid worker types for a Spark or Hive application. Valid worker types include Driver and Executor for Spark applications and HiveDriver and TezTask for Hive applications. You can either set image details in this parameter for each worker type, or in imageConfiguration for all worker types.
|
397
402
|
*/
|
398
403
|
workerTypeSpecifications?: WorkerTypeSpecificationInputMap;
|
404
|
+
/**
|
405
|
+
* The Configuration specifications to use when creating an application. Each configuration consists of a classification and properties. This configuration is applied to all the job runs submitted under the application.
|
406
|
+
*/
|
407
|
+
runtimeConfiguration?: ConfigurationList;
|
408
|
+
/**
|
409
|
+
* The configuration setting for monitoring.
|
410
|
+
*/
|
411
|
+
monitoringConfiguration?: MonitoringConfiguration;
|
399
412
|
}
|
400
413
|
export interface CreateApplicationResponse {
|
401
414
|
/**
|
@@ -987,6 +1000,14 @@ declare namespace EMRServerless {
|
|
987
1000
|
* The Amazon EMR release label for the application. You can change the release label to use a different release of Amazon EMR.
|
988
1001
|
*/
|
989
1002
|
releaseLabel?: ReleaseLabel;
|
1003
|
+
/**
|
1004
|
+
* The Configuration specifications to use when updating an application. Each configuration consists of a classification and properties. This configuration is applied across all the job runs submitted under the application.
|
1005
|
+
*/
|
1006
|
+
runtimeConfiguration?: ConfigurationList;
|
1007
|
+
/**
|
1008
|
+
* The configuration setting for monitoring.
|
1009
|
+
*/
|
1010
|
+
monitoringConfiguration?: MonitoringConfiguration;
|
990
1011
|
}
|
991
1012
|
export interface UpdateApplicationResponse {
|
992
1013
|
/**
|
@@ -12,11 +12,11 @@ declare class Finspacedata extends Service {
|
|
12
12
|
constructor(options?: Finspacedata.Types.ClientConfiguration)
|
13
13
|
config: Config & Finspacedata.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Adds a user
|
15
|
+
* Adds a user to a permission group to grant permissions for actions a user can perform in FinSpace.
|
16
16
|
*/
|
17
17
|
associateUserToPermissionGroup(params: Finspacedata.Types.AssociateUserToPermissionGroupRequest, callback?: (err: AWSError, data: Finspacedata.Types.AssociateUserToPermissionGroupResponse) => void): Request<Finspacedata.Types.AssociateUserToPermissionGroupResponse, AWSError>;
|
18
18
|
/**
|
19
|
-
* Adds a user
|
19
|
+
* Adds a user to a permission group to grant permissions for actions a user can perform in FinSpace.
|
20
20
|
*/
|
21
21
|
associateUserToPermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.AssociateUserToPermissionGroupResponse) => void): Request<Finspacedata.Types.AssociateUserToPermissionGroupResponse, AWSError>;
|
22
22
|
/**
|
@@ -84,11 +84,11 @@ declare class Finspacedata extends Service {
|
|
84
84
|
*/
|
85
85
|
disableUser(callback?: (err: AWSError, data: Finspacedata.Types.DisableUserResponse) => void): Request<Finspacedata.Types.DisableUserResponse, AWSError>;
|
86
86
|
/**
|
87
|
-
* Removes a user
|
87
|
+
* Removes a user from a permission group.
|
88
88
|
*/
|
89
89
|
disassociateUserFromPermissionGroup(params: Finspacedata.Types.DisassociateUserFromPermissionGroupRequest, callback?: (err: AWSError, data: Finspacedata.Types.DisassociateUserFromPermissionGroupResponse) => void): Request<Finspacedata.Types.DisassociateUserFromPermissionGroupResponse, AWSError>;
|
90
90
|
/**
|
91
|
-
* Removes a user
|
91
|
+
* Removes a user from a permission group.
|
92
92
|
*/
|
93
93
|
disassociateUserFromPermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.DisassociateUserFromPermissionGroupResponse) => void): Request<Finspacedata.Types.DisassociateUserFromPermissionGroupResponse, AWSError>;
|
94
94
|
/**
|
@@ -140,11 +140,11 @@ declare class Finspacedata extends Service {
|
|
140
140
|
*/
|
141
141
|
getPermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.GetPermissionGroupResponse) => void): Request<Finspacedata.Types.GetPermissionGroupResponse, AWSError>;
|
142
142
|
/**
|
143
|
-
* Request programmatic credentials to use with FinSpace SDK.
|
143
|
+
* Request programmatic credentials to use with FinSpace SDK. For more information, see Step 2. Access credentials programmatically using IAM access key id and secret access key.
|
144
144
|
*/
|
145
145
|
getProgrammaticAccessCredentials(params: Finspacedata.Types.GetProgrammaticAccessCredentialsRequest, callback?: (err: AWSError, data: Finspacedata.Types.GetProgrammaticAccessCredentialsResponse) => void): Request<Finspacedata.Types.GetProgrammaticAccessCredentialsResponse, AWSError>;
|
146
146
|
/**
|
147
|
-
* Request programmatic credentials to use with FinSpace SDK.
|
147
|
+
* Request programmatic credentials to use with FinSpace SDK. For more information, see Step 2. Access credentials programmatically using IAM access key id and secret access key.
|
148
148
|
*/
|
149
149
|
getProgrammaticAccessCredentials(callback?: (err: AWSError, data: Finspacedata.Types.GetProgrammaticAccessCredentialsResponse) => void): Request<Finspacedata.Types.GetProgrammaticAccessCredentialsResponse, AWSError>;
|
150
150
|
/**
|
@@ -196,19 +196,19 @@ declare class Finspacedata extends Service {
|
|
196
196
|
*/
|
197
197
|
listPermissionGroups(callback?: (err: AWSError, data: Finspacedata.Types.ListPermissionGroupsResponse) => void): Request<Finspacedata.Types.ListPermissionGroupsResponse, AWSError>;
|
198
198
|
/**
|
199
|
-
* Lists all the permission groups that are associated with a specific user
|
199
|
+
* Lists all the permission groups that are associated with a specific user.
|
200
200
|
*/
|
201
201
|
listPermissionGroupsByUser(params: Finspacedata.Types.ListPermissionGroupsByUserRequest, callback?: (err: AWSError, data: Finspacedata.Types.ListPermissionGroupsByUserResponse) => void): Request<Finspacedata.Types.ListPermissionGroupsByUserResponse, AWSError>;
|
202
202
|
/**
|
203
|
-
* Lists all the permission groups that are associated with a specific user
|
203
|
+
* Lists all the permission groups that are associated with a specific user.
|
204
204
|
*/
|
205
205
|
listPermissionGroupsByUser(callback?: (err: AWSError, data: Finspacedata.Types.ListPermissionGroupsByUserResponse) => void): Request<Finspacedata.Types.ListPermissionGroupsByUserResponse, AWSError>;
|
206
206
|
/**
|
207
|
-
* Lists all available
|
207
|
+
* Lists all available users in FinSpace.
|
208
208
|
*/
|
209
209
|
listUsers(params: Finspacedata.Types.ListUsersRequest, callback?: (err: AWSError, data: Finspacedata.Types.ListUsersResponse) => void): Request<Finspacedata.Types.ListUsersResponse, AWSError>;
|
210
210
|
/**
|
211
|
-
* Lists all available
|
211
|
+
* Lists all available users in FinSpace.
|
212
212
|
*/
|
213
213
|
listUsers(callback?: (err: AWSError, data: Finspacedata.Types.ListUsersResponse) => void): Request<Finspacedata.Types.ListUsersResponse, AWSError>;
|
214
214
|
/**
|
@@ -252,11 +252,11 @@ declare class Finspacedata extends Service {
|
|
252
252
|
*/
|
253
253
|
updatePermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.UpdatePermissionGroupResponse) => void): Request<Finspacedata.Types.UpdatePermissionGroupResponse, AWSError>;
|
254
254
|
/**
|
255
|
-
* Modifies the details of the specified user
|
255
|
+
* Modifies the details of the specified user. You cannot update the userId for a user.
|
256
256
|
*/
|
257
257
|
updateUser(params: Finspacedata.Types.UpdateUserRequest, callback?: (err: AWSError, data: Finspacedata.Types.UpdateUserResponse) => void): Request<Finspacedata.Types.UpdateUserResponse, AWSError>;
|
258
258
|
/**
|
259
|
-
* Modifies the details of the specified user
|
259
|
+
* Modifies the details of the specified user. You cannot update the userId for a user.
|
260
260
|
*/
|
261
261
|
updateUser(callback?: (err: AWSError, data: Finspacedata.Types.UpdateUserResponse) => void): Request<Finspacedata.Types.UpdateUserResponse, AWSError>;
|
262
262
|
}
|
@@ -549,7 +549,7 @@ declare namespace Finspacedata {
|
|
549
549
|
/**
|
550
550
|
* The option to indicate whether the user can use the GetProgrammaticAccessCredentials API to obtain credentials that can then be used to access other FinSpace Data API operations. ENABLED – The user has permissions to use the APIs. DISABLED – The user does not have permissions to use any APIs.
|
551
551
|
*/
|
552
|
-
|
552
|
+
apiAccess?: ApiAccess;
|
553
553
|
/**
|
554
554
|
* The ARN identifier of an AWS user or role that is allowed to call the GetProgrammaticAccessCredentials API to obtain a credentials token for a specific FinSpace user. This must be an IAM role within your FinSpace account.
|
555
555
|
*/
|
@@ -755,7 +755,7 @@ declare namespace Finspacedata {
|
|
755
755
|
}
|
756
756
|
export interface DisableUserRequest {
|
757
757
|
/**
|
758
|
-
* The unique identifier for the user
|
758
|
+
* The unique identifier for the user that you want to deactivate.
|
759
759
|
*/
|
760
760
|
userId: UserId;
|
761
761
|
/**
|
@@ -765,7 +765,7 @@ declare namespace Finspacedata {
|
|
765
765
|
}
|
766
766
|
export interface DisableUserResponse {
|
767
767
|
/**
|
768
|
-
* The unique identifier for the
|
768
|
+
* The unique identifier for the deactivated user.
|
769
769
|
*/
|
770
770
|
userId?: UserId;
|
771
771
|
}
|
@@ -792,7 +792,7 @@ declare namespace Finspacedata {
|
|
792
792
|
export type Email = string;
|
793
793
|
export interface EnableUserRequest {
|
794
794
|
/**
|
795
|
-
* The unique identifier for the user
|
795
|
+
* The unique identifier for the user that you want to activate.
|
796
796
|
*/
|
797
797
|
userId: UserId;
|
798
798
|
/**
|
@@ -802,7 +802,7 @@ declare namespace Finspacedata {
|
|
802
802
|
}
|
803
803
|
export interface EnableUserResponse {
|
804
804
|
/**
|
805
|
-
* The unique identifier for the
|
805
|
+
* The unique identifier for the active user.
|
806
806
|
*/
|
807
807
|
userId?: UserId;
|
808
808
|
}
|
@@ -1040,11 +1040,11 @@ declare namespace Finspacedata {
|
|
1040
1040
|
}
|
1041
1041
|
export interface GetUserResponse {
|
1042
1042
|
/**
|
1043
|
-
* The unique identifier for the user
|
1043
|
+
* The unique identifier for the user that is retrieved.
|
1044
1044
|
*/
|
1045
1045
|
userId?: UserId;
|
1046
1046
|
/**
|
1047
|
-
* The current status of the user
|
1047
|
+
* The current status of the user. CREATING – The creation is in progress. ENABLED – The user is created and is currently active. DISABLED – The user is currently inactive.
|
1048
1048
|
*/
|
1049
1049
|
status?: UserStatus;
|
1050
1050
|
/**
|
@@ -1072,19 +1072,19 @@ declare namespace Finspacedata {
|
|
1072
1072
|
*/
|
1073
1073
|
apiAccessPrincipalArn?: RoleArn;
|
1074
1074
|
/**
|
1075
|
-
* The timestamp at which the user
|
1075
|
+
* The timestamp at which the user was created in FinSpace. The value is determined as epoch time in milliseconds.
|
1076
1076
|
*/
|
1077
1077
|
createTime?: TimestampEpoch;
|
1078
1078
|
/**
|
1079
|
-
* Describes the last time the user
|
1079
|
+
* Describes the last time the user was activated. The value is determined as epoch time in milliseconds.
|
1080
1080
|
*/
|
1081
1081
|
lastEnabledTime?: TimestampEpoch;
|
1082
1082
|
/**
|
1083
|
-
* Describes the last time the user
|
1083
|
+
* Describes the last time the user was deactivated. The value is determined as epoch time in milliseconds.
|
1084
1084
|
*/
|
1085
1085
|
lastDisabledTime?: TimestampEpoch;
|
1086
1086
|
/**
|
1087
|
-
* Describes the last time the user
|
1087
|
+
* Describes the last time the user details were updated. The value is determined as epoch time in milliseconds.
|
1088
1088
|
*/
|
1089
1089
|
lastModifiedTime?: TimestampEpoch;
|
1090
1090
|
/**
|
@@ -1263,7 +1263,7 @@ declare namespace Finspacedata {
|
|
1263
1263
|
}
|
1264
1264
|
export interface ListUsersResponse {
|
1265
1265
|
/**
|
1266
|
-
* A list of all the
|
1266
|
+
* A list of all the users.
|
1267
1267
|
*/
|
1268
1268
|
users?: UserList;
|
1269
1269
|
/**
|
@@ -1301,7 +1301,7 @@ declare namespace Finspacedata {
|
|
1301
1301
|
*/
|
1302
1302
|
lastModifiedTime?: TimestampEpoch;
|
1303
1303
|
/**
|
1304
|
-
* Indicates the status of the user
|
1304
|
+
* Indicates the status of the user within a permission group. ADDITION_IN_PROGRESS – The user is currently being added to the permission group. ADDITION_SUCCESS – The user is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.
|
1305
1305
|
*/
|
1306
1306
|
membershipStatus?: PermissionGroupMembershipStatus;
|
1307
1307
|
}
|
@@ -1315,7 +1315,7 @@ declare namespace Finspacedata {
|
|
1315
1315
|
*/
|
1316
1316
|
name?: PermissionGroupName;
|
1317
1317
|
/**
|
1318
|
-
* Indicates the status of the user
|
1318
|
+
* Indicates the status of the user within a permission group. ADDITION_IN_PROGRESS – The user is currently being added to the permission group. ADDITION_SUCCESS – The user is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.
|
1319
1319
|
*/
|
1320
1320
|
membershipStatus?: PermissionGroupMembershipStatus;
|
1321
1321
|
}
|
@@ -1352,7 +1352,7 @@ declare namespace Finspacedata {
|
|
1352
1352
|
*/
|
1353
1353
|
userId?: UserId;
|
1354
1354
|
/**
|
1355
|
-
* A randomly generated temporary password for the requested user
|
1355
|
+
* A randomly generated temporary password for the requested user. This password expires in 7 days.
|
1356
1356
|
*/
|
1357
1357
|
temporaryPassword?: Password;
|
1358
1358
|
}
|
@@ -1503,7 +1503,7 @@ declare namespace Finspacedata {
|
|
1503
1503
|
}
|
1504
1504
|
export interface UpdateUserRequest {
|
1505
1505
|
/**
|
1506
|
-
* The unique identifier for the user
|
1506
|
+
* The unique identifier for the user that you want to update.
|
1507
1507
|
*/
|
1508
1508
|
userId: UserId;
|
1509
1509
|
/**
|
@@ -1533,7 +1533,7 @@ declare namespace Finspacedata {
|
|
1533
1533
|
}
|
1534
1534
|
export interface UpdateUserResponse {
|
1535
1535
|
/**
|
1536
|
-
* The unique identifier of the updated user
|
1536
|
+
* The unique identifier of the updated user.
|
1537
1537
|
*/
|
1538
1538
|
userId?: UserId;
|
1539
1539
|
}
|
@@ -1543,7 +1543,7 @@ declare namespace Finspacedata {
|
|
1543
1543
|
*/
|
1544
1544
|
userId?: UserId;
|
1545
1545
|
/**
|
1546
|
-
* The current status of the user
|
1546
|
+
* The current status of the user. CREATING – The user creation is in progress. ENABLED – The user is created and is currently active. DISABLED – The user is currently inactive.
|
1547
1547
|
*/
|
1548
1548
|
status?: UserStatus;
|
1549
1549
|
/**
|
@@ -1571,19 +1571,19 @@ declare namespace Finspacedata {
|
|
1571
1571
|
*/
|
1572
1572
|
apiAccessPrincipalArn?: RoleArn;
|
1573
1573
|
/**
|
1574
|
-
* The timestamp at which the user
|
1574
|
+
* The timestamp at which the user was created in FinSpace. The value is determined as epoch time in milliseconds.
|
1575
1575
|
*/
|
1576
1576
|
createTime?: TimestampEpoch;
|
1577
1577
|
/**
|
1578
|
-
* Describes the last time the user
|
1578
|
+
* Describes the last time the user was activated. The value is determined as epoch time in milliseconds.
|
1579
1579
|
*/
|
1580
1580
|
lastEnabledTime?: TimestampEpoch;
|
1581
1581
|
/**
|
1582
|
-
* Describes the last time the user
|
1582
|
+
* Describes the last time the user was deactivated. The value is determined as epoch time in milliseconds.
|
1583
1583
|
*/
|
1584
1584
|
lastDisabledTime?: TimestampEpoch;
|
1585
1585
|
/**
|
1586
|
-
* Describes the last time the user
|
1586
|
+
* Describes the last time the user was updated. The value is determined as epoch time in milliseconds.
|
1587
1587
|
*/
|
1588
1588
|
lastModifiedTime?: TimestampEpoch;
|
1589
1589
|
/**
|
@@ -1597,7 +1597,7 @@ declare namespace Finspacedata {
|
|
1597
1597
|
*/
|
1598
1598
|
userId?: UserId;
|
1599
1599
|
/**
|
1600
|
-
* The current status of the user
|
1600
|
+
* The current status of the user. CREATING – The user creation is in progress. ENABLED – The user is created and is currently active. DISABLED – The user is currently inactive.
|
1601
1601
|
*/
|
1602
1602
|
status?: UserStatus;
|
1603
1603
|
/**
|
@@ -1625,7 +1625,7 @@ declare namespace Finspacedata {
|
|
1625
1625
|
*/
|
1626
1626
|
apiAccessPrincipalArn?: RoleArn;
|
1627
1627
|
/**
|
1628
|
-
* Indicates the status of the user
|
1628
|
+
* Indicates the status of the user within a permission group. ADDITION_IN_PROGRESS – The user is currently being added to the permission group. ADDITION_SUCCESS – The user is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.
|
1629
1629
|
*/
|
1630
1630
|
membershipStatus?: PermissionGroupMembershipStatus;
|
1631
1631
|
}
|
package/clients/guardduty.d.ts
CHANGED
@@ -340,11 +340,11 @@ declare class GuardDuty extends Service {
|
|
340
340
|
*/
|
341
341
|
getUsageStatistics(callback?: (err: AWSError, data: GuardDuty.Types.GetUsageStatisticsResponse) => void): Request<GuardDuty.Types.GetUsageStatisticsResponse, AWSError>;
|
342
342
|
/**
|
343
|
-
* Invites Amazon Web Services accounts to become members of an organization administered by the Amazon Web Services account that invokes this API. If you are using
|
343
|
+
* Invites Amazon Web Services accounts to become members of an organization administered by the Amazon Web Services account that invokes this API. If you are using Amazon Web Services Organizations to manage your GuardDuty environment, this step is not needed. For more information, see Managing accounts with organizations. To invite Amazon Web Services accounts, the first step is to ensure that GuardDuty has been enabled in the potential member accounts. You can now invoke this API to add accounts by invitation. The invited accounts can either accept or decline the invitation from their GuardDuty accounts. Each invited Amazon Web Services account can choose to accept the invitation from only one Amazon Web Services account. For more information, see Managing GuardDuty accounts by invitation. After the invite has been accepted and you choose to disassociate a member account (by using DisassociateMembers) from your account, the details of the member account obtained by invoking CreateMembers, including the associated email addresses, will be retained. This is done so that you can invoke InviteMembers without the need to invoke CreateMembers again. To remove the details associated with a member account, you must also invoke DeleteMembers.
|
344
344
|
*/
|
345
345
|
inviteMembers(params: GuardDuty.Types.InviteMembersRequest, callback?: (err: AWSError, data: GuardDuty.Types.InviteMembersResponse) => void): Request<GuardDuty.Types.InviteMembersResponse, AWSError>;
|
346
346
|
/**
|
347
|
-
* Invites Amazon Web Services accounts to become members of an organization administered by the Amazon Web Services account that invokes this API. If you are using
|
347
|
+
* Invites Amazon Web Services accounts to become members of an organization administered by the Amazon Web Services account that invokes this API. If you are using Amazon Web Services Organizations to manage your GuardDuty environment, this step is not needed. For more information, see Managing accounts with organizations. To invite Amazon Web Services accounts, the first step is to ensure that GuardDuty has been enabled in the potential member accounts. You can now invoke this API to add accounts by invitation. The invited accounts can either accept or decline the invitation from their GuardDuty accounts. Each invited Amazon Web Services account can choose to accept the invitation from only one Amazon Web Services account. For more information, see Managing GuardDuty accounts by invitation. After the invite has been accepted and you choose to disassociate a member account (by using DisassociateMembers) from your account, the details of the member account obtained by invoking CreateMembers, including the associated email addresses, will be retained. This is done so that you can invoke InviteMembers without the need to invoke CreateMembers again. To remove the details associated with a member account, you must also invoke DeleteMembers.
|
348
348
|
*/
|
349
349
|
inviteMembers(callback?: (err: AWSError, data: GuardDuty.Types.InviteMembersResponse) => void): Request<GuardDuty.Types.InviteMembersResponse, AWSError>;
|
350
350
|
/**
|
@@ -404,11 +404,11 @@ declare class GuardDuty extends Service {
|
|
404
404
|
*/
|
405
405
|
listMembers(callback?: (err: AWSError, data: GuardDuty.Types.ListMembersResponse) => void): Request<GuardDuty.Types.ListMembersResponse, AWSError>;
|
406
406
|
/**
|
407
|
-
* Lists the accounts
|
407
|
+
* Lists the accounts designated as GuardDuty delegated administrators. Only the organization's management account can run this API operation.
|
408
408
|
*/
|
409
409
|
listOrganizationAdminAccounts(params: GuardDuty.Types.ListOrganizationAdminAccountsRequest, callback?: (err: AWSError, data: GuardDuty.Types.ListOrganizationAdminAccountsResponse) => void): Request<GuardDuty.Types.ListOrganizationAdminAccountsResponse, AWSError>;
|
410
410
|
/**
|
411
|
-
* Lists the accounts
|
411
|
+
* Lists the accounts designated as GuardDuty delegated administrators. Only the organization's management account can run this API operation.
|
412
412
|
*/
|
413
413
|
listOrganizationAdminAccounts(callback?: (err: AWSError, data: GuardDuty.Types.ListOrganizationAdminAccountsResponse) => void): Request<GuardDuty.Types.ListOrganizationAdminAccountsResponse, AWSError>;
|
414
414
|
/**
|
@@ -963,7 +963,7 @@ declare namespace GuardDuty {
|
|
963
963
|
}
|
964
964
|
export interface CoverageFilterCriterion {
|
965
965
|
/**
|
966
|
-
* An enum value representing possible filter fields.
|
966
|
+
* An enum value representing possible filter fields. Replace the enum value CLUSTER_NAME with EKS_CLUSTER_NAME. CLUSTER_NAME has been deprecated.
|
967
967
|
*/
|
968
968
|
CriterionKey?: CoverageFilterCriterionKey;
|
969
969
|
/**
|
@@ -971,7 +971,7 @@ declare namespace GuardDuty {
|
|
971
971
|
*/
|
972
972
|
FilterCondition?: CoverageFilterCondition;
|
973
973
|
}
|
974
|
-
export type CoverageFilterCriterionKey = "ACCOUNT_ID"|"CLUSTER_NAME"|"RESOURCE_TYPE"|"COVERAGE_STATUS"|"ADDON_VERSION"|"MANAGEMENT_TYPE"|string;
|
974
|
+
export type CoverageFilterCriterionKey = "ACCOUNT_ID"|"CLUSTER_NAME"|"RESOURCE_TYPE"|"COVERAGE_STATUS"|"ADDON_VERSION"|"MANAGEMENT_TYPE"|"EKS_CLUSTER_NAME"|string;
|
975
975
|
export type CoverageFilterCriterionList = CoverageFilterCriterion[];
|
976
976
|
export interface CoverageResource {
|
977
977
|
/**
|
@@ -1016,7 +1016,7 @@ declare namespace GuardDuty {
|
|
1016
1016
|
export type CoverageResources = CoverageResource[];
|
1017
1017
|
export interface CoverageSortCriteria {
|
1018
1018
|
/**
|
1019
|
-
* Represents the field name used to sort the coverage details.
|
1019
|
+
* Represents the field name used to sort the coverage details. Replace the enum value CLUSTER_NAME with EKS_CLUSTER_NAME. CLUSTER_NAME has been deprecated.
|
1020
1020
|
*/
|
1021
1021
|
AttributeName?: CoverageSortKey;
|
1022
1022
|
/**
|
@@ -1024,7 +1024,7 @@ declare namespace GuardDuty {
|
|
1024
1024
|
*/
|
1025
1025
|
OrderBy?: OrderBy;
|
1026
1026
|
}
|
1027
|
-
export type CoverageSortKey = "ACCOUNT_ID"|"CLUSTER_NAME"|"COVERAGE_STATUS"|"ISSUE"|"ADDON_VERSION"|"UPDATED_AT"|string;
|
1027
|
+
export type CoverageSortKey = "ACCOUNT_ID"|"CLUSTER_NAME"|"COVERAGE_STATUS"|"ISSUE"|"ADDON_VERSION"|"UPDATED_AT"|"EKS_CLUSTER_NAME"|string;
|
1028
1028
|
export interface CoverageStatistics {
|
1029
1029
|
/**
|
1030
1030
|
* Represents coverage statistics for EKS clusters aggregated by resource type.
|
@@ -1839,7 +1839,7 @@ declare namespace GuardDuty {
|
|
1839
1839
|
export type Email = string;
|
1840
1840
|
export interface EnableOrganizationAdminAccountRequest {
|
1841
1841
|
/**
|
1842
|
-
* The Amazon Web Services
|
1842
|
+
* The Amazon Web Services account ID for the organization account to be enabled as a GuardDuty delegated administrator.
|
1843
1843
|
*/
|
1844
1844
|
AdminAccountId: String;
|
1845
1845
|
}
|
@@ -1880,7 +1880,7 @@ declare namespace GuardDuty {
|
|
1880
1880
|
}
|
1881
1881
|
export interface FilterCriterion {
|
1882
1882
|
/**
|
1883
|
-
* An enum value representing possible scan properties to match with given scan entries.
|
1883
|
+
* An enum value representing possible scan properties to match with given scan entries. Replace the enum value CLUSTER_NAME with EKS_CLUSTER_NAME. CLUSTER_NAME has been deprecated.
|
1884
1884
|
*/
|
1885
1885
|
CriterionKey?: CriterionKey;
|
1886
1886
|
/**
|
@@ -3289,7 +3289,7 @@ declare namespace GuardDuty {
|
|
3289
3289
|
*/
|
3290
3290
|
Name?: OrgFeature;
|
3291
3291
|
/**
|
3292
|
-
*
|
3292
|
+
* Describes the status of the feature that is configured for the member accounts within the organization. One of the following values is the status for the entire organization: NEW: Indicates that when a new account joins the organization, they will have the feature enabled automatically. ALL: Indicates that all accounts in the organization have the feature enabled automatically. This includes NEW accounts that join the organization and accounts that may have been suspended or removed from the organization in GuardDuty. It may take up to 24 hours to update the configuration for all the member accounts. NONE: Indicates that the feature will not be automatically enabled for any account in the organization. The administrator must manage the feature for each account individually.
|
3293
3293
|
*/
|
3294
3294
|
AutoEnable?: OrgFeatureStatus;
|
3295
3295
|
/**
|
@@ -3864,11 +3864,11 @@ declare namespace GuardDuty {
|
|
3864
3864
|
}
|
3865
3865
|
export interface ScanConditionPair {
|
3866
3866
|
/**
|
3867
|
-
* Represents key
|
3867
|
+
* Represents the key in the map condition.
|
3868
3868
|
*/
|
3869
3869
|
Key: TagKey;
|
3870
3870
|
/**
|
3871
|
-
* Represents optional value
|
3871
|
+
* Represents optional value in the map condition. If not specified, only the key will be matched.
|
3872
3872
|
*/
|
3873
3873
|
Value?: TagValue;
|
3874
3874
|
}
|
@@ -4390,7 +4390,7 @@ declare namespace GuardDuty {
|
|
4390
4390
|
*/
|
4391
4391
|
DetectorId: DetectorId;
|
4392
4392
|
/**
|
4393
|
-
*
|
4393
|
+
* Represents whether or not to automatically enable member accounts in the organization. Even though this is still supported, we recommend using AutoEnableOrganizationMembers to achieve the similar results. You must provide a value for either autoEnableOrganizationMembers or autoEnable.
|
4394
4394
|
*/
|
4395
4395
|
AutoEnable?: Boolean;
|
4396
4396
|
/**
|
@@ -1265,7 +1265,7 @@ declare namespace MediaConvert {
|
|
1265
1265
|
export type CmafWriteHLSManifest = "DISABLED"|"ENABLED"|string;
|
1266
1266
|
export type CmafWriteSegmentTimelineInRepresentation = "ENABLED"|"DISABLED"|string;
|
1267
1267
|
export type CmfcAudioDuration = "DEFAULT_CODEC_DURATION"|"MATCH_VIDEO_DURATION"|string;
|
1268
|
-
export type CmfcAudioTrackType = "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT"|"ALTERNATE_AUDIO_AUTO_SELECT"|"ALTERNATE_AUDIO_NOT_AUTO_SELECT"|string;
|
1268
|
+
export type CmfcAudioTrackType = "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT"|"ALTERNATE_AUDIO_AUTO_SELECT"|"ALTERNATE_AUDIO_NOT_AUTO_SELECT"|"AUDIO_ONLY_VARIANT_STREAM"|string;
|
1269
1269
|
export type CmfcDescriptiveVideoServiceFlag = "DONT_FLAG"|"FLAG"|string;
|
1270
1270
|
export type CmfcIFrameOnlyManifest = "INCLUDE"|"EXCLUDE"|string;
|
1271
1271
|
export type CmfcKlvMetadata = "PASSTHROUGH"|"NONE"|string;
|
@@ -1286,7 +1286,7 @@ declare namespace MediaConvert {
|
|
1286
1286
|
*/
|
1287
1287
|
AudioRenditionSets?: __string;
|
1288
1288
|
/**
|
1289
|
-
* Use this setting to control the values that MediaConvert puts in your HLS parent playlist to control how the client player selects which audio track to play. The other options for this setting determine the values that MediaConvert writes for the DEFAULT and AUTOSELECT attributes of the EXT-X-MEDIA entry for the audio variant. For more information about these attributes, see the Apple documentation article https://developer.apple.com/documentation/http_live_streaming/example_playlists_for_http_live_streaming/adding_alternate_media_to_a_playlist. Choose Alternate audio, auto select, default to set DEFAULT=YES and AUTOSELECT=YES. Choose this value for only one variant in your output group. Choose Alternate audio, auto select, not default to set DEFAULT=NO and AUTOSELECT=YES. Choose Alternate Audio, Not Auto Select to set DEFAULT=NO and AUTOSELECT=NO. When you don't specify a value for this setting, MediaConvert defaults to Alternate audio, auto select, default. When there is more than one variant in your output group, you must explicitly choose a value for this setting.
|
1289
|
+
* Use this setting to control the values that MediaConvert puts in your HLS parent playlist to control how the client player selects which audio track to play. Choose Audio-only variant stream (AUDIO_ONLY_VARIANT_STREAM) for any variant that you want to prohibit the client from playing with video. This causes MediaConvert to represent the variant as an EXT-X-STREAM-INF in the HLS manifest. The other options for this setting determine the values that MediaConvert writes for the DEFAULT and AUTOSELECT attributes of the EXT-X-MEDIA entry for the audio variant. For more information about these attributes, see the Apple documentation article https://developer.apple.com/documentation/http_live_streaming/example_playlists_for_http_live_streaming/adding_alternate_media_to_a_playlist. Choose Alternate audio, auto select, default to set DEFAULT=YES and AUTOSELECT=YES. Choose this value for only one variant in your output group. Choose Alternate audio, auto select, not default to set DEFAULT=NO and AUTOSELECT=YES. Choose Alternate Audio, Not Auto Select to set DEFAULT=NO and AUTOSELECT=NO. When you don't specify a value for this setting, MediaConvert defaults to Alternate audio, auto select, default. When there is more than one variant in your output group, you must explicitly choose a value for this setting.
|
1290
1290
|
*/
|
1291
1291
|
AudioTrackType?: CmfcAudioTrackType;
|
1292
1292
|
/**
|
@@ -3644,6 +3644,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3644
3644
|
* If your source content has EIA-608 Line 21 Data Services, enable this feature to specify what MediaConvert does with the Extended Data Services (XDS) packets. You can choose to pass through XDS packets, or remove them from the output. For more information about XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content Advisory.
|
3645
3645
|
*/
|
3646
3646
|
ExtendedDataServices?: ExtendedDataServices;
|
3647
|
+
/**
|
3648
|
+
* Specifies which input metadata to use for the default "Follow input" option for the following settings: resolution, frame rate, and pixel aspect ratio. In the simplest case, specify which input is used based on its index in the job. For example if you specify 3, then the fourth input will be used from each input. If the job does not have a fourth input, then the first input will be used. If no followInputIndex is specified, then 0 will be chosen automatically.
|
3649
|
+
*/
|
3650
|
+
FollowInputIndex?: __integerMin0Max149;
|
3647
3651
|
/**
|
3648
3652
|
* Use Inputs to define source file used in the transcode job. There can be multiple inputs add in a job. These inputs will be concantenated together to create the output.
|
3649
3653
|
*/
|
@@ -3750,6 +3754,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3750
3754
|
* If your source content has EIA-608 Line 21 Data Services, enable this feature to specify what MediaConvert does with the Extended Data Services (XDS) packets. You can choose to pass through XDS packets, or remove them from the output. For more information about XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content Advisory.
|
3751
3755
|
*/
|
3752
3756
|
ExtendedDataServices?: ExtendedDataServices;
|
3757
|
+
/**
|
3758
|
+
* Specifies which input metadata to use for the default "Follow input" option for the following settings: resolution, frame rate, and pixel aspect ratio. In the simplest case, specify which input is used based on its index in the job. For example if you specify 3, then the fourth input will be used from each input. If the job does not have a fourth input, then the first input will be used. If no followInputIndex is specified, then 0 will be chosen automatically.
|
3759
|
+
*/
|
3760
|
+
FollowInputIndex?: __integerMin0Max149;
|
3753
3761
|
/**
|
3754
3762
|
* Use Inputs to define the source file used in the transcode job. There can only be one input in a job template. Using the API, you can include multiple inputs when referencing a job template.
|
3755
3763
|
*/
|
@@ -5290,7 +5298,7 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
5290
5298
|
*/
|
5291
5299
|
Encryption?: S3EncryptionSettings;
|
5292
5300
|
/**
|
5293
|
-
* Specify the S3 storage class to use for this destination.
|
5301
|
+
* Specify the S3 storage class to use for this output. To use your destination's default storage class: Keep the default value, Not set. For more information about S3 storage classes, see https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html
|
5294
5302
|
*/
|
5295
5303
|
StorageClass?: S3StorageClass;
|
5296
5304
|
}
|
@@ -5338,7 +5346,7 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
5338
5346
|
/**
|
5339
5347
|
* Specify the URL to the key server that your SPEKE-compliant DRM key provider uses to provide keys for encrypting your content.
|
5340
5348
|
*/
|
5341
|
-
Url?:
|
5349
|
+
Url?: __stringPatternHttpsD;
|
5342
5350
|
}
|
5343
5351
|
export interface SpekeKeyProviderCmaf {
|
5344
5352
|
/**
|
@@ -5360,7 +5368,7 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
5360
5368
|
/**
|
5361
5369
|
* Specify the URL to the key server that your SPEKE-compliant DRM key provider uses to provide keys for encrypting your content.
|
5362
5370
|
*/
|
5363
|
-
Url?:
|
5371
|
+
Url?: __stringPatternHttpsD;
|
5364
5372
|
}
|
5365
5373
|
export interface SrtDestinationSettings {
|
5366
5374
|
/**
|
@@ -6225,6 +6233,7 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
6225
6233
|
export type __integerMin0Max1152000000 = number;
|
6226
6234
|
export type __integerMin0Max128 = number;
|
6227
6235
|
export type __integerMin0Max1466400000 = number;
|
6236
|
+
export type __integerMin0Max149 = number;
|
6228
6237
|
export type __integerMin0Max15 = number;
|
6229
6238
|
export type __integerMin0Max16 = number;
|
6230
6239
|
export type __integerMin0Max2147483647 = number;
|
@@ -6396,6 +6405,7 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
6396
6405
|
export type __stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932 = string;
|
6397
6406
|
export type __stringPatternDD = string;
|
6398
6407
|
export type __stringPatternHttps = string;
|
6408
|
+
export type __stringPatternHttpsD = string;
|
6399
6409
|
export type __stringPatternHttpsKantarmedia = string;
|
6400
6410
|
export type __stringPatternIdentityAZaZ26AZaZ09163 = string;
|
6401
6411
|
export type __stringPatternS3 = string;
|
package/clients/quicksight.d.ts
CHANGED
@@ -1052,11 +1052,11 @@ declare class QuickSight extends Service {
|
|
1052
1052
|
*/
|
1053
1053
|
startDashboardSnapshotJob(callback?: (err: AWSError, data: QuickSight.Types.StartDashboardSnapshotJobResponse) => void): Request<QuickSight.Types.StartDashboardSnapshotJobResponse, AWSError>;
|
1054
1054
|
/**
|
1055
|
-
* Assigns one or more tags (key-value pairs) to the specified Amazon QuickSight resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource. Amazon QuickSight supports tagging on data set, data source, dashboard, template, and
|
1055
|
+
* Assigns one or more tags (key-value pairs) to the specified Amazon QuickSight resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource. Amazon QuickSight supports tagging on data set, data source, dashboard, template, topic, and user. Tagging for Amazon QuickSight works in a similar way to tagging for other Amazon Web Services services, except for the following: Tags are used to track costs for users in Amazon QuickSight. You can't tag other resources that Amazon QuickSight costs are based on, such as storage capacoty (SPICE), session usage, alert consumption, or reporting units. Amazon QuickSight doesn't currently support the tag editor for Resource Groups.
|
1056
1056
|
*/
|
1057
1057
|
tagResource(params: QuickSight.Types.TagResourceRequest, callback?: (err: AWSError, data: QuickSight.Types.TagResourceResponse) => void): Request<QuickSight.Types.TagResourceResponse, AWSError>;
|
1058
1058
|
/**
|
1059
|
-
* Assigns one or more tags (key-value pairs) to the specified Amazon QuickSight resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource. Amazon QuickSight supports tagging on data set, data source, dashboard, template, and
|
1059
|
+
* Assigns one or more tags (key-value pairs) to the specified Amazon QuickSight resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource. Amazon QuickSight supports tagging on data set, data source, dashboard, template, topic, and user. Tagging for Amazon QuickSight works in a similar way to tagging for other Amazon Web Services services, except for the following: Tags are used to track costs for users in Amazon QuickSight. You can't tag other resources that Amazon QuickSight costs are based on, such as storage capacoty (SPICE), session usage, alert consumption, or reporting units. Amazon QuickSight doesn't currently support the tag editor for Resource Groups.
|
1060
1060
|
*/
|
1061
1061
|
tagResource(callback?: (err: AWSError, data: QuickSight.Types.TagResourceResponse) => void): Request<QuickSight.Types.TagResourceResponse, AWSError>;
|
1062
1062
|
/**
|
@@ -11839,7 +11839,7 @@ declare namespace QuickSight {
|
|
11839
11839
|
*/
|
11840
11840
|
MemberArn?: Arn;
|
11841
11841
|
}
|
11842
|
-
export type MemberType = "DASHBOARD"|"ANALYSIS"|"DATASET"|string;
|
11842
|
+
export type MemberType = "DASHBOARD"|"ANALYSIS"|"DATASET"|"TOPIC"|string;
|
11843
11843
|
export interface MetricComparisonComputation {
|
11844
11844
|
/**
|
11845
11845
|
* The ID for a computation.
|
@@ -13632,6 +13632,10 @@ declare namespace QuickSight {
|
|
13632
13632
|
* The identity ID for a user in the external login provider.
|
13633
13633
|
*/
|
13634
13634
|
ExternalLoginId?: String;
|
13635
|
+
/**
|
13636
|
+
* The tags to associate with the user.
|
13637
|
+
*/
|
13638
|
+
Tags?: TagList;
|
13635
13639
|
}
|
13636
13640
|
export interface RegisterUserResponse {
|
13637
13641
|
/**
|
package/clients/ssm.d.ts
CHANGED
@@ -2470,7 +2470,7 @@ declare namespace SSM {
|
|
2470
2470
|
SeveritySummary?: SeveritySummary;
|
2471
2471
|
}
|
2472
2472
|
export type ComputerName = string;
|
2473
|
-
export type ConnectionStatus = "
|
2473
|
+
export type ConnectionStatus = "connected"|"notconnected"|string;
|
2474
2474
|
export type ContentLength = number;
|
2475
2475
|
export interface CreateActivationRequest {
|
2476
2476
|
/**
|
@@ -2795,11 +2795,11 @@ declare namespace SSM {
|
|
2795
2795
|
}
|
2796
2796
|
export interface CreateOpsItemRequest {
|
2797
2797
|
/**
|
2798
|
-
*
|
2798
|
+
* User-defined text that contains information about the OpsItem, in Markdown format. Provide enough information so that users viewing this OpsItem for the first time understand the issue.
|
2799
2799
|
*/
|
2800
2800
|
Description: OpsItemDescription;
|
2801
2801
|
/**
|
2802
|
-
* The type of OpsItem to create. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/
|
2802
|
+
* The type of OpsItem to create. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/insight This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate OpsItems.
|
2803
2803
|
*/
|
2804
2804
|
OpsItemType?: OpsItemType;
|
2805
2805
|
/**
|
@@ -7148,7 +7148,7 @@ declare namespace SSM {
|
|
7148
7148
|
*/
|
7149
7149
|
CreatedBy?: String;
|
7150
7150
|
/**
|
7151
|
-
* The type of OpsItem. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/
|
7151
|
+
* The type of OpsItem. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/insight This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate OpsItems.
|
7152
7152
|
*/
|
7153
7153
|
OpsItemType?: OpsItemType;
|
7154
7154
|
/**
|
@@ -7448,7 +7448,7 @@ declare namespace SSM {
|
|
7448
7448
|
*/
|
7449
7449
|
Severity?: OpsItemSeverity;
|
7450
7450
|
/**
|
7451
|
-
* The type of OpsItem. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/
|
7451
|
+
* The type of OpsItem. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/insight This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate OpsItems.
|
7452
7452
|
*/
|
7453
7453
|
OpsItemType?: OpsItemType;
|
7454
7454
|
/**
|
@@ -8608,7 +8608,7 @@ declare namespace SSM {
|
|
8608
8608
|
export type ResourceDataSyncType = string;
|
8609
8609
|
export type ResourceId = string;
|
8610
8610
|
export type ResourcePolicyMaxResults = number;
|
8611
|
-
export type ResourceType = "ManagedInstance"|"
|
8611
|
+
export type ResourceType = "ManagedInstance"|"EC2Instance"|string;
|
8612
8612
|
export type ResourceTypeForTagging = "Document"|"ManagedInstance"|"MaintenanceWindow"|"Parameter"|"PatchBaseline"|"OpsItem"|"OpsMetadata"|"Automation"|"Association"|string;
|
8613
8613
|
export type ResponseCode = number;
|
8614
8614
|
export interface ResultAttribute {
|
@@ -9837,7 +9837,7 @@ declare namespace SSM {
|
|
9837
9837
|
}
|
9838
9838
|
export interface UpdateOpsItemRequest {
|
9839
9839
|
/**
|
9840
|
-
*
|
9840
|
+
* User-defined text that contains information about the OpsItem, in Markdown format.
|
9841
9841
|
*/
|
9842
9842
|
Description?: OpsItemDescription;
|
9843
9843
|
/**
|