aws-sdk 2.1391.0 → 2.1393.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 (35) hide show
  1. package/CHANGELOG.md +19 -1
  2. package/README.md +1 -1
  3. package/apis/customer-profiles-2020-08-15.min.json +252 -52
  4. package/apis/customer-profiles-2020-08-15.paginators.json +6 -0
  5. package/apis/emr-containers-2020-10-01.min.json +31 -18
  6. package/apis/inspector2-2020-06-08.min.json +29 -12
  7. package/apis/iot-2015-05-28.min.json +714 -214
  8. package/apis/iot-2015-05-28.paginators.json +12 -0
  9. package/apis/logs-2014-03-28.min.json +99 -16
  10. package/apis/models.lex.v2-2020-08-07.min.json +1496 -286
  11. package/apis/models.lex.v2-2020-08-07.paginators.json +20 -0
  12. package/apis/quicksight-2018-04-01.min.json +625 -594
  13. package/apis/signer-2017-08-25.min.json +105 -16
  14. package/apis/sqs-2012-11-05.min.json +120 -31
  15. package/clients/cloudformation.d.ts +24 -24
  16. package/clients/cloudwatchlogs.d.ts +132 -18
  17. package/clients/connect.d.ts +3 -3
  18. package/clients/customerprofiles.d.ts +201 -0
  19. package/clients/directconnect.d.ts +6 -6
  20. package/clients/emr.d.ts +2 -2
  21. package/clients/emrcontainers.d.ts +16 -0
  22. package/clients/iam.d.ts +7 -7
  23. package/clients/inspector2.d.ts +20 -1
  24. package/clients/iot.d.ts +500 -3
  25. package/clients/iotdeviceadvisor.d.ts +2 -2
  26. package/clients/lexmodelsv2.d.ts +1516 -127
  27. package/clients/quicksight.d.ts +50 -14
  28. package/clients/signer.d.ts +90 -5
  29. package/clients/sqs.d.ts +151 -39
  30. package/dist/aws-sdk-core-react-native.js +1 -1
  31. package/dist/aws-sdk-react-native.js +13 -13
  32. package/dist/aws-sdk.js +948 -264
  33. package/dist/aws-sdk.min.js +48 -48
  34. package/lib/core.js +1 -1
  35. package/package.json +1 -1
@@ -35,6 +35,14 @@ declare class CustomerProfiles extends Service {
35
35
  * Creates a domain, which is a container for all customer data, such as customer profile attributes, object types, profile keys, and encryption keys. You can create multiple domains, and each domain can have multiple third-party integrations. Each Amazon Connect instance can be associated with only one domain. Multiple Amazon Connect instances can be associated with one domain. Use this API or UpdateDomain to enable identity resolution: set Matching to true. To prevent cross-service impersonation when you call this API, see Cross-service confused deputy prevention for sample policies that you should apply.
36
36
  */
37
37
  createDomain(callback?: (err: AWSError, data: CustomerProfiles.Types.CreateDomainResponse) => void): Request<CustomerProfiles.Types.CreateDomainResponse, AWSError>;
38
+ /**
39
+ * Creates an event stream, which is a subscription to real-time events, such as when profiles are created and updated through Amazon Connect Customer Profiles. Each event stream can be associated with only one Kinesis Data Stream destination in the same region and Amazon Web Services account as the customer profiles domain
40
+ */
41
+ createEventStream(params: CustomerProfiles.Types.CreateEventStreamRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.CreateEventStreamResponse) => void): Request<CustomerProfiles.Types.CreateEventStreamResponse, AWSError>;
42
+ /**
43
+ * Creates an event stream, which is a subscription to real-time events, such as when profiles are created and updated through Amazon Connect Customer Profiles. Each event stream can be associated with only one Kinesis Data Stream destination in the same region and Amazon Web Services account as the customer profiles domain
44
+ */
45
+ createEventStream(callback?: (err: AWSError, data: CustomerProfiles.Types.CreateEventStreamResponse) => void): Request<CustomerProfiles.Types.CreateEventStreamResponse, AWSError>;
38
46
  /**
39
47
  * Creates an integration workflow. An integration workflow is an async process which ingests historic data and sets up an integration for ongoing updates. The supported Amazon AppFlow sources are Salesforce, ServiceNow, and Marketo.
40
48
  */
@@ -67,6 +75,14 @@ declare class CustomerProfiles extends Service {
67
75
  * Deletes a specific domain and all of its customer data, such as customer profile attributes and their related objects.
68
76
  */
69
77
  deleteDomain(callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteDomainResponse) => void): Request<CustomerProfiles.Types.DeleteDomainResponse, AWSError>;
78
+ /**
79
+ * Disables and deletes the specified event stream.
80
+ */
81
+ deleteEventStream(params: CustomerProfiles.Types.DeleteEventStreamRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteEventStreamResponse) => void): Request<CustomerProfiles.Types.DeleteEventStreamResponse, AWSError>;
82
+ /**
83
+ * Disables and deletes the specified event stream.
84
+ */
85
+ deleteEventStream(callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteEventStreamResponse) => void): Request<CustomerProfiles.Types.DeleteEventStreamResponse, AWSError>;
70
86
  /**
71
87
  * Removes an integration from a specific domain.
72
88
  */
@@ -147,6 +163,14 @@ declare class CustomerProfiles extends Service {
147
163
  * Returns information about a specific domain.
148
164
  */
149
165
  getDomain(callback?: (err: AWSError, data: CustomerProfiles.Types.GetDomainResponse) => void): Request<CustomerProfiles.Types.GetDomainResponse, AWSError>;
166
+ /**
167
+ * Returns information about the specified event stream in a specific domain.
168
+ */
169
+ getEventStream(params: CustomerProfiles.Types.GetEventStreamRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.GetEventStreamResponse) => void): Request<CustomerProfiles.Types.GetEventStreamResponse, AWSError>;
170
+ /**
171
+ * Returns information about the specified event stream in a specific domain.
172
+ */
173
+ getEventStream(callback?: (err: AWSError, data: CustomerProfiles.Types.GetEventStreamResponse) => void): Request<CustomerProfiles.Types.GetEventStreamResponse, AWSError>;
150
174
  /**
151
175
  * Returns information about an Identity Resolution Job in a specific domain. Identity Resolution Jobs are set up using the Amazon Connect admin console. For more information, see Use Identity Resolution to consolidate similar profiles.
152
176
  */
@@ -235,6 +259,14 @@ declare class CustomerProfiles extends Service {
235
259
  * Returns a list of all the domains for an AWS account that have been created.
236
260
  */
237
261
  listDomains(callback?: (err: AWSError, data: CustomerProfiles.Types.ListDomainsResponse) => void): Request<CustomerProfiles.Types.ListDomainsResponse, AWSError>;
262
+ /**
263
+ * Returns a list of all the event streams in a specific domain.
264
+ */
265
+ listEventStreams(params: CustomerProfiles.Types.ListEventStreamsRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.ListEventStreamsResponse) => void): Request<CustomerProfiles.Types.ListEventStreamsResponse, AWSError>;
266
+ /**
267
+ * Returns a list of all the event streams in a specific domain.
268
+ */
269
+ listEventStreams(callback?: (err: AWSError, data: CustomerProfiles.Types.ListEventStreamsResponse) => void): Request<CustomerProfiles.Types.ListEventStreamsResponse, AWSError>;
238
270
  /**
239
271
  * Lists all of the Identity Resolution Jobs in your domain. The response sorts the list by JobStartTime.
240
272
  */
@@ -761,6 +793,34 @@ declare namespace CustomerProfiles {
761
793
  */
762
794
  Tags?: TagMap;
763
795
  }
796
+ export interface CreateEventStreamRequest {
797
+ /**
798
+ * The unique name of the domain.
799
+ */
800
+ DomainName: name;
801
+ /**
802
+ * The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name
803
+ */
804
+ Uri: string1To255;
805
+ /**
806
+ * The name of the event stream.
807
+ */
808
+ EventStreamName: name;
809
+ /**
810
+ * The tags used to organize, track, or control access for this resource.
811
+ */
812
+ Tags?: TagMap;
813
+ }
814
+ export interface CreateEventStreamResponse {
815
+ /**
816
+ * A unique identifier for the event stream.
817
+ */
818
+ EventStreamArn: string1To255;
819
+ /**
820
+ * The tags used to organize, track, or control access for this resource.
821
+ */
822
+ Tags?: TagMap;
823
+ }
764
824
  export interface CreateIntegrationWorkflowRequest {
765
825
  /**
766
826
  * The unique name of the domain.
@@ -928,6 +988,18 @@ declare namespace CustomerProfiles {
928
988
  */
929
989
  Message: message;
930
990
  }
991
+ export interface DeleteEventStreamRequest {
992
+ /**
993
+ * The unique name of the domain.
994
+ */
995
+ DomainName: name;
996
+ /**
997
+ * The name of the event stream
998
+ */
999
+ EventStreamName: name;
1000
+ }
1001
+ export interface DeleteEventStreamResponse {
1002
+ }
931
1003
  export interface DeleteIntegrationRequest {
932
1004
  /**
933
1005
  * The unique name of the domain.
@@ -1037,6 +1109,20 @@ declare namespace CustomerProfiles {
1037
1109
  export interface DeleteWorkflowResponse {
1038
1110
  }
1039
1111
  export type DestinationField = string;
1112
+ export interface DestinationSummary {
1113
+ /**
1114
+ * The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name.
1115
+ */
1116
+ Uri: string1To255;
1117
+ /**
1118
+ * The status of enabling the Kinesis stream as a destination for export.
1119
+ */
1120
+ Status: EventStreamDestinationStatus;
1121
+ /**
1122
+ * The timestamp when the status last changed to UNHEALHY.
1123
+ */
1124
+ UnhealthySince?: timestamp;
1125
+ }
1040
1126
  export type DomainList = ListDomainItem[];
1041
1127
  export interface DomainStats {
1042
1128
  /**
@@ -1058,6 +1144,57 @@ declare namespace CustomerProfiles {
1058
1144
  }
1059
1145
  export type Double = number;
1060
1146
  export type Double0To1 = number;
1147
+ export interface EventStreamDestinationDetails {
1148
+ /**
1149
+ * The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name.
1150
+ */
1151
+ Uri: string1To255;
1152
+ /**
1153
+ * The status of enabling the Kinesis stream as a destination for export.
1154
+ */
1155
+ Status: EventStreamDestinationStatus;
1156
+ /**
1157
+ * The timestamp when the status last changed to UNHEALHY.
1158
+ */
1159
+ UnhealthySince?: timestamp;
1160
+ /**
1161
+ * The human-readable string that corresponds to the error or success while enabling the streaming destination.
1162
+ */
1163
+ Message?: string1To1000;
1164
+ }
1165
+ export type EventStreamDestinationStatus = "HEALTHY"|"UNHEALTHY"|string;
1166
+ export type EventStreamState = "RUNNING"|"STOPPED"|string;
1167
+ export interface EventStreamSummary {
1168
+ /**
1169
+ * The unique name of the domain.
1170
+ */
1171
+ DomainName: name;
1172
+ /**
1173
+ * The name of the event stream.
1174
+ */
1175
+ EventStreamName: name;
1176
+ /**
1177
+ * A unique identifier for the event stream.
1178
+ */
1179
+ EventStreamArn: string1To255;
1180
+ /**
1181
+ * The operational state of destination stream for export.
1182
+ */
1183
+ State: EventStreamState;
1184
+ /**
1185
+ * The timestamp when the State changed to STOPPED.
1186
+ */
1187
+ StoppedSince?: timestamp;
1188
+ /**
1189
+ * Summary information about the Kinesis data stream.
1190
+ */
1191
+ DestinationSummary?: DestinationSummary;
1192
+ /**
1193
+ * The tags used to organize, track, or control access for this resource.
1194
+ */
1195
+ Tags?: TagMap;
1196
+ }
1197
+ export type EventStreamSummaryList = EventStreamSummary[];
1061
1198
  export interface ExportingConfig {
1062
1199
  /**
1063
1200
  * The S3 location where Identity Resolution Jobs write result files.
@@ -1358,6 +1495,46 @@ declare namespace CustomerProfiles {
1358
1495
  */
1359
1496
  Tags?: TagMap;
1360
1497
  }
1498
+ export interface GetEventStreamRequest {
1499
+ /**
1500
+ * The unique name of the domain.
1501
+ */
1502
+ DomainName: name;
1503
+ /**
1504
+ * The name of the event stream provided during create operations.
1505
+ */
1506
+ EventStreamName: name;
1507
+ }
1508
+ export interface GetEventStreamResponse {
1509
+ /**
1510
+ * The unique name of the domain.
1511
+ */
1512
+ DomainName: name;
1513
+ /**
1514
+ * A unique identifier for the event stream.
1515
+ */
1516
+ EventStreamArn: string1To255;
1517
+ /**
1518
+ * The timestamp of when the export was created.
1519
+ */
1520
+ CreatedAt: timestamp;
1521
+ /**
1522
+ * The operational state of destination stream for export.
1523
+ */
1524
+ State: EventStreamState;
1525
+ /**
1526
+ * The timestamp when the State changed to STOPPED.
1527
+ */
1528
+ StoppedSince?: timestamp;
1529
+ /**
1530
+ * Details regarding the Kinesis stream.
1531
+ */
1532
+ DestinationDetails: EventStreamDestinationDetails;
1533
+ /**
1534
+ * The tags used to organize, track, or control access for this resource.
1535
+ */
1536
+ Tags?: TagMap;
1537
+ }
1361
1538
  export interface GetIdentityResolutionJobRequest {
1362
1539
  /**
1363
1540
  * The unique name of the domain.
@@ -1909,6 +2086,30 @@ declare namespace CustomerProfiles {
1909
2086
  */
1910
2087
  NextToken?: token;
1911
2088
  }
2089
+ export interface ListEventStreamsRequest {
2090
+ /**
2091
+ * The unique name of the domain.
2092
+ */
2093
+ DomainName: name;
2094
+ /**
2095
+ * Identifies the next page of results to return.
2096
+ */
2097
+ NextToken?: token;
2098
+ /**
2099
+ * The maximum number of objects returned per page.
2100
+ */
2101
+ MaxResults?: maxSize100;
2102
+ }
2103
+ export interface ListEventStreamsResponse {
2104
+ /**
2105
+ * Contains summary information about an EventStream.
2106
+ */
2107
+ Items?: EventStreamSummaryList;
2108
+ /**
2109
+ * Identifies the next page of results to return.
2110
+ */
2111
+ NextToken?: token;
2112
+ }
1912
2113
  export interface ListIdentityResolutionJobsRequest {
1913
2114
  /**
1914
2115
  * The unique name of the domain.
@@ -496,11 +496,11 @@ declare class DirectConnect extends Service {
496
496
  */
497
497
  updateLag(callback?: (err: AWSError, data: DirectConnect.Types.Lag) => void): Request<DirectConnect.Types.Lag, AWSError>;
498
498
  /**
499
- * Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual q interface supports jumbo frames, call DescribeVirtualInterfaces.
499
+ * Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.
500
500
  */
501
501
  updateVirtualInterfaceAttributes(params: DirectConnect.Types.UpdateVirtualInterfaceAttributesRequest, callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
502
502
  /**
503
- * Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual q interface supports jumbo frames, call DescribeVirtualInterfaces.
503
+ * Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.
504
504
  */
505
505
  updateVirtualInterfaceAttributes(callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
506
506
  }
@@ -881,7 +881,7 @@ declare namespace DirectConnect {
881
881
  */
882
882
  awsDevice?: AwsDevice;
883
883
  /**
884
- * Indicates whether jumbo frames (9001 MTU) are supported.
884
+ * Indicates whether jumbo frames are supported.
885
885
  */
886
886
  jumboFrameCapable?: JumboFrameCapable;
887
887
  /**
@@ -1739,7 +1739,7 @@ declare namespace DirectConnect {
1739
1739
  */
1740
1740
  awsDevice?: AwsDevice;
1741
1741
  /**
1742
- * Indicates whether jumbo frames (9001 MTU) are supported.
1742
+ * Indicates whether jumbo frames are supported.
1743
1743
  */
1744
1744
  jumboFrameCapable?: JumboFrameCapable;
1745
1745
  /**
@@ -1832,7 +1832,7 @@ declare namespace DirectConnect {
1832
1832
  */
1833
1833
  allowsHostedConnections?: BooleanFlag;
1834
1834
  /**
1835
- * Indicates whether jumbo frames (9001 MTU) are supported.
1835
+ * Indicates whether jumbo frames are supported.
1836
1836
  */
1837
1837
  jumboFrameCapable?: JumboFrameCapable;
1838
1838
  /**
@@ -2554,7 +2554,7 @@ declare namespace DirectConnect {
2554
2554
  */
2555
2555
  mtu?: MTU;
2556
2556
  /**
2557
- * Indicates whether jumbo frames (9001 MTU) are supported.
2557
+ * Indicates whether jumbo frames are supported.
2558
2558
  */
2559
2559
  jumboFrameCapable?: JumboFrameCapable;
2560
2560
  /**
package/clients/emr.d.ts CHANGED
@@ -3326,7 +3326,7 @@ declare namespace EMR {
3326
3326
  Version?: String;
3327
3327
  }
3328
3328
  export type SimplifiedApplicationList = SimplifiedApplication[];
3329
- export type SpotProvisioningAllocationStrategy = "capacity-optimized"|string;
3329
+ export type SpotProvisioningAllocationStrategy = "capacity-optimized"|"price-capacity-optimized"|"lowest-price"|"diversified"|string;
3330
3330
  export interface SpotProvisioningSpecification {
3331
3331
  /**
3332
3332
  * The Spot provisioning timeout period in minutes. If Spot Instances are not provisioned within this time period, the TimeOutAction is taken. Minimum value is 5 and maximum value is 1440. The timeout applies only during initial provisioning, when the cluster is first created.
@@ -3341,7 +3341,7 @@ declare namespace EMR {
3341
3341
  */
3342
3342
  BlockDurationMinutes?: WholeNumber;
3343
3343
  /**
3344
- * Specifies the strategy to use in launching Spot Instance fleets. Currently, the only option is capacity-optimized (the default), which launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.
3344
+ * Specifies one of the following strategies to launch Spot Instance fleets: price-capacity-optimized, capacity-optimized, lowest-price, or diversified. For more information on the provisioning strategies, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide for Linux Instances. When you launch a Spot Instance fleet with the old console, it automatically launches with the capacity-optimized strategy. You can't change the allocation strategy from the old console.
3345
3345
  */
3346
3346
  AllocationStrategy?: SpotProvisioningAllocationStrategy;
3347
3347
  }
@@ -248,6 +248,16 @@ declare namespace EMRcontainers {
248
248
  */
249
249
  eksInfo?: EksInfo;
250
250
  }
251
+ export interface ContainerLogRotationConfiguration {
252
+ /**
253
+ * The file size at which to rotate logs. Minimum of 2KB, Maximum of 2GB.
254
+ */
255
+ rotationSize: RotationSize;
256
+ /**
257
+ * The number of files to keep in container after rotation.
258
+ */
259
+ maxFilesToKeep: MaxFilesToKeep;
260
+ }
251
261
  export interface ContainerProvider {
252
262
  /**
253
263
  * The type of the container provider. Amazon EKS is the only supported type as of now.
@@ -950,6 +960,7 @@ declare namespace EMRcontainers {
950
960
  }
951
961
  export type LogContext = string;
952
962
  export type LogGroupName = string;
963
+ export type MaxFilesToKeep = number;
953
964
  export interface MonitoringConfiguration {
954
965
  /**
955
966
  * Monitoring configurations for the persistent application UI.
@@ -963,6 +974,10 @@ declare namespace EMRcontainers {
963
974
  * Amazon S3 configuration for monitoring log publishing.
964
975
  */
965
976
  s3MonitoringConfiguration?: S3MonitoringConfiguration;
977
+ /**
978
+ * Enable or disable container log rotation.
979
+ */
980
+ containerLogRotationConfiguration?: ContainerLogRotationConfiguration;
966
981
  }
967
982
  export type NextToken = string;
968
983
  export interface ParametricCloudWatchMonitoringConfiguration {
@@ -1024,6 +1039,7 @@ declare namespace EMRcontainers {
1024
1039
  */
1025
1040
  currentAttemptCount: JavaInteger;
1026
1041
  }
1042
+ export type RotationSize = string;
1027
1043
  export type RsiArn = string;
1028
1044
  export interface S3MonitoringConfiguration {
1029
1045
  /**
package/clients/iam.d.ts CHANGED
@@ -77,11 +77,11 @@ declare class IAM extends Service {
77
77
  */
78
78
  createAccessKey(callback?: (err: AWSError, data: IAM.Types.CreateAccessKeyResponse) => void): Request<IAM.Types.CreateAccessKeyResponse, AWSError>;
79
79
  /**
80
- * Creates an alias for your Amazon Web Services account. For information about using an Amazon Web Services account alias, see Using an alias for your Amazon Web Services account ID in the IAM User Guide.
80
+ * Creates an alias for your Amazon Web Services account. For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
81
81
  */
82
82
  createAccountAlias(params: IAM.Types.CreateAccountAliasRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
83
83
  /**
84
- * Creates an alias for your Amazon Web Services account. For information about using an Amazon Web Services account alias, see Using an alias for your Amazon Web Services account ID in the IAM User Guide.
84
+ * Creates an alias for your Amazon Web Services account. For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
85
85
  */
86
86
  createAccountAlias(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
87
87
  /**
@@ -197,11 +197,11 @@ declare class IAM extends Service {
197
197
  */
198
198
  deleteAccessKey(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
199
199
  /**
200
- * Deletes the specified Amazon Web Services account alias. For information about using an Amazon Web Services account alias, see Using an alias for your Amazon Web Services account ID in the IAM User Guide.
200
+ * Deletes the specified Amazon Web Services account alias. For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
201
201
  */
202
202
  deleteAccountAlias(params: IAM.Types.DeleteAccountAliasRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
203
203
  /**
204
- * Deletes the specified Amazon Web Services account alias. For information about using an Amazon Web Services account alias, see Using an alias for your Amazon Web Services account ID in the IAM User Guide.
204
+ * Deletes the specified Amazon Web Services account alias. For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
205
205
  */
206
206
  deleteAccountAlias(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
207
207
  /**
@@ -617,11 +617,11 @@ declare class IAM extends Service {
617
617
  */
618
618
  listAccessKeys(callback?: (err: AWSError, data: IAM.Types.ListAccessKeysResponse) => void): Request<IAM.Types.ListAccessKeysResponse, AWSError>;
619
619
  /**
620
- * Lists the account alias associated with the Amazon Web Services account (Note: you can have only one). For information about using an Amazon Web Services account alias, see Using an alias for your Amazon Web Services account ID in the IAM User Guide.
620
+ * Lists the account alias associated with the Amazon Web Services account (Note: you can have only one). For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
621
621
  */
622
622
  listAccountAliases(params: IAM.Types.ListAccountAliasesRequest, callback?: (err: AWSError, data: IAM.Types.ListAccountAliasesResponse) => void): Request<IAM.Types.ListAccountAliasesResponse, AWSError>;
623
623
  /**
624
- * Lists the account alias associated with the Amazon Web Services account (Note: you can have only one). For information about using an Amazon Web Services account alias, see Using an alias for your Amazon Web Services account ID in the IAM User Guide.
624
+ * Lists the account alias associated with the Amazon Web Services account (Note: you can have only one). For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
625
625
  */
626
626
  listAccountAliases(callback?: (err: AWSError, data: IAM.Types.ListAccountAliasesResponse) => void): Request<IAM.Types.ListAccountAliasesResponse, AWSError>;
627
627
  /**
@@ -5166,7 +5166,7 @@ declare namespace IAM {
5166
5166
  */
5167
5167
  SerialNumber: serialNumberType;
5168
5168
  /**
5169
- * The base32 seed defined as specified in RFC3548. The Base32StringSeed is base64-encoded.
5169
+ * The base32 seed defined as specified in RFC3548. The Base32StringSeed is base32-encoded.
5170
5170
  */
5171
5171
  Base32StringSeed?: BootstrapDatum;
5172
5172
  /**
@@ -844,6 +844,17 @@ declare namespace Inspector2 {
844
844
  groupKey?: GroupKey;
845
845
  }
846
846
  export type CountsList = Counts[];
847
+ export interface CoverageDateFilter {
848
+ /**
849
+ * A timestamp representing the end of the time period to filter results by.
850
+ */
851
+ endInclusive?: DateTimeTimestamp;
852
+ /**
853
+ * A timestamp representing the start of the time period to filter results by.
854
+ */
855
+ startInclusive?: DateTimeTimestamp;
856
+ }
857
+ export type CoverageDateFilterList = CoverageDateFilter[];
847
858
  export interface CoverageFilterCriteria {
848
859
  /**
849
860
  * An array of Amazon Web Services account IDs to return coverage statistics for.
@@ -873,12 +884,16 @@ declare namespace Inspector2 {
873
884
  * Returns coverage statistics for AWS Lambda functions filtered by tag.
874
885
  */
875
886
  lambdaFunctionTags?: CoverageMapFilterList;
887
+ /**
888
+ * Filters Amazon Web Services resources based on whether Amazon Inspector has checked them for vulnerabilities within the specified time range.
889
+ */
890
+ lastScannedAt?: CoverageDateFilterList;
876
891
  /**
877
892
  * An array of Amazon Web Services resource IDs to return coverage statistics for.
878
893
  */
879
894
  resourceId?: CoverageStringFilterList;
880
895
  /**
881
- * An array of Amazon Web Services resource types to return coverage statistics for. The values can be AWS_EC2_INSTANCE or AWS_ECR_REPOSITORY.
896
+ * An array of Amazon Web Services resource types to return coverage statistics for. The values can be AWS_EC2_INSTANCE, AWS_LAMBDA_FUNCTION or AWS_ECR_REPOSITORY.
882
897
  */
883
898
  resourceType?: CoverageStringFilterList;
884
899
  /**
@@ -929,6 +944,10 @@ declare namespace Inspector2 {
929
944
  * The Amazon Web Services account ID of the covered resource.
930
945
  */
931
946
  accountId: AccountId;
947
+ /**
948
+ * The date and time the resource was last checked for vulnerabilities.
949
+ */
950
+ lastScannedAt?: DateTimeTimestamp;
932
951
  /**
933
952
  * The ID of the covered resource.
934
953
  */