aws-sdk 2.1385.0 → 2.1386.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 +6 -1
- package/README.md +1 -1
- package/apis/iotwireless-2020-11-22.min.json +137 -120
- package/clients/connect.d.ts +1 -1
- package/clients/iotwireless.d.ts +24 -5
- package/clients/sagemaker.d.ts +1 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +2 -2
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/connect.d.ts
CHANGED
@@ -2190,7 +2190,7 @@ declare namespace Connect {
|
|
2190
2190
|
export type ContactFlowType = "CONTACT_FLOW"|"CUSTOMER_QUEUE"|"CUSTOMER_HOLD"|"CUSTOMER_WHISPER"|"AGENT_HOLD"|"AGENT_WHISPER"|"OUTBOUND_WHISPER"|"AGENT_TRANSFER"|"QUEUE_TRANSFER"|string;
|
2191
2191
|
export type ContactFlowTypes = ContactFlowType[];
|
2192
2192
|
export type ContactId = string;
|
2193
|
-
export type ContactInitiationMethod = "INBOUND"|"OUTBOUND"|"TRANSFER"|"QUEUE_TRANSFER"|"CALLBACK"|"API"|"DISCONNECT"|"MONITOR"|string;
|
2193
|
+
export type ContactInitiationMethod = "INBOUND"|"OUTBOUND"|"TRANSFER"|"QUEUE_TRANSFER"|"CALLBACK"|"API"|"DISCONNECT"|"MONITOR"|"EXTERNAL_OUTBOUND"|string;
|
2194
2194
|
export type ContactReferences = {[key: string]: Reference};
|
2195
2195
|
export type ContactState = "INCOMING"|"PENDING"|"CONNECTING"|"CONNECTED"|"CONNECTED_ONHOLD"|"MISSED"|"ERROR"|"ENDED"|"REJECTED"|string;
|
2196
2196
|
export type ContactStates = ContactState[];
|
package/clients/iotwireless.d.ts
CHANGED
@@ -1302,6 +1302,10 @@ declare namespace IoTWireless {
|
|
1302
1302
|
Description?: Description;
|
1303
1303
|
Tags?: TagList;
|
1304
1304
|
ClientRequestToken?: ClientRequestToken;
|
1305
|
+
/**
|
1306
|
+
* Multicast Group resources to add to the network analyzer configruation. Provide the MulticastGroupId of the resource to add in the input array.
|
1307
|
+
*/
|
1308
|
+
MulticastGroups?: NetworkAnalyzerMulticastGroupList;
|
1305
1309
|
}
|
1306
1310
|
export interface CreateNetworkAnalyzerConfigurationResponse {
|
1307
1311
|
/**
|
@@ -2004,6 +2008,10 @@ declare namespace IoTWireless {
|
|
2004
2008
|
*/
|
2005
2009
|
Arn?: NetworkAnalyzerConfigurationArn;
|
2006
2010
|
Name?: NetworkAnalyzerConfigurationName;
|
2011
|
+
/**
|
2012
|
+
* List of multicast group resources that have been added to the network analyzer configuration.
|
2013
|
+
*/
|
2014
|
+
MulticastGroups?: NetworkAnalyzerMulticastGroupList;
|
2007
2015
|
}
|
2008
2016
|
export interface GetPartnerAccountRequest {
|
2009
2017
|
/**
|
@@ -2335,7 +2343,7 @@ declare namespace IoTWireless {
|
|
2335
2343
|
*/
|
2336
2344
|
WirelessDeviceId?: WirelessDeviceId;
|
2337
2345
|
/**
|
2338
|
-
* The date and time when the most recent uplink was received.
|
2346
|
+
* The date and time when the most recent uplink was received. This value is only valid for 3 months.
|
2339
2347
|
*/
|
2340
2348
|
LastUplinkReceivedAt?: ISODateTimeString;
|
2341
2349
|
/**
|
@@ -2427,7 +2435,7 @@ declare namespace IoTWireless {
|
|
2427
2435
|
*/
|
2428
2436
|
WirelessGatewayId?: WirelessGatewayId;
|
2429
2437
|
/**
|
2430
|
-
* The date and time when the most recent uplink was received.
|
2438
|
+
* The date and time when the most recent uplink was received. This value is only valid for 3 months.
|
2431
2439
|
*/
|
2432
2440
|
LastUplinkReceivedAt?: ISODateTimeString;
|
2433
2441
|
/**
|
@@ -2475,7 +2483,7 @@ declare namespace IoTWireless {
|
|
2475
2483
|
*/
|
2476
2484
|
WirelessGatewayTaskDefinitionId?: WirelessGatewayTaskDefinitionId;
|
2477
2485
|
/**
|
2478
|
-
* The date and time when the most recent uplink was received.
|
2486
|
+
* The date and time when the most recent uplink was received. This value is only valid for 3 months.
|
2479
2487
|
*/
|
2480
2488
|
LastUplinkReceivedAt?: ISODateTimeString;
|
2481
2489
|
/**
|
@@ -3520,6 +3528,7 @@ declare namespace IoTWireless {
|
|
3520
3528
|
export type MinGwDiversity = number;
|
3521
3529
|
export type Model = string;
|
3522
3530
|
export type MulticastDeviceStatus = string;
|
3531
|
+
export type MulticastFrameInfo = "ENABLED"|"DISABLED"|string;
|
3523
3532
|
export interface MulticastGroup {
|
3524
3533
|
Id?: MulticastGroupId;
|
3525
3534
|
Arn?: MulticastGroupArn;
|
@@ -3551,6 +3560,7 @@ declare namespace IoTWireless {
|
|
3551
3560
|
Arn?: NetworkAnalyzerConfigurationArn;
|
3552
3561
|
Name?: NetworkAnalyzerConfigurationName;
|
3553
3562
|
}
|
3563
|
+
export type NetworkAnalyzerMulticastGroupList = MulticastGroupId[];
|
3554
3564
|
export type NetworkId = number;
|
3555
3565
|
export type NextToken = string;
|
3556
3566
|
export type NumberOfDevicesInGroup = number;
|
@@ -4243,6 +4253,7 @@ declare namespace IoTWireless {
|
|
4243
4253
|
export interface TraceContent {
|
4244
4254
|
WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo;
|
4245
4255
|
LogLevel?: LogLevel;
|
4256
|
+
MulticastFrameInfo?: MulticastFrameInfo;
|
4246
4257
|
}
|
4247
4258
|
export type TransmissionInterval = number;
|
4248
4259
|
export type TransmitMode = number;
|
@@ -4382,6 +4393,14 @@ declare namespace IoTWireless {
|
|
4382
4393
|
*/
|
4383
4394
|
WirelessGatewaysToRemove?: WirelessGatewayList;
|
4384
4395
|
Description?: Description;
|
4396
|
+
/**
|
4397
|
+
* Multicast group resources to add to the network analyzer configuration. Provide the MulticastGroupId of the resource to add in the input array.
|
4398
|
+
*/
|
4399
|
+
MulticastGroupsToAdd?: NetworkAnalyzerMulticastGroupList;
|
4400
|
+
/**
|
4401
|
+
* Multicast group resources to remove from the network analyzer configuration. Provide the MulticastGroupId of the resource to remove in the input array.
|
4402
|
+
*/
|
4403
|
+
MulticastGroupsToRemove?: NetworkAnalyzerMulticastGroupList;
|
4385
4404
|
}
|
4386
4405
|
export interface UpdateNetworkAnalyzerConfigurationResponse {
|
4387
4406
|
}
|
@@ -4733,7 +4752,7 @@ declare namespace IoTWireless {
|
|
4733
4752
|
*/
|
4734
4753
|
DestinationName?: DestinationName;
|
4735
4754
|
/**
|
4736
|
-
* The date and time when the most recent uplink was received.
|
4755
|
+
* The date and time when the most recent uplink was received. Theis value is only valid for 3 months.
|
4737
4756
|
*/
|
4738
4757
|
LastUplinkReceivedAt?: ISODateTimeString;
|
4739
4758
|
/**
|
@@ -4793,7 +4812,7 @@ declare namespace IoTWireless {
|
|
4793
4812
|
*/
|
4794
4813
|
LoRaWAN?: LoRaWANGateway;
|
4795
4814
|
/**
|
4796
|
-
* The date and time when the most recent uplink was received.
|
4815
|
+
* The date and time when the most recent uplink was received. This value is only valid for 3 months.
|
4797
4816
|
*/
|
4798
4817
|
LastUplinkReceivedAt?: ISODateTimeString;
|
4799
4818
|
}
|
package/clients/sagemaker.d.ts
CHANGED
@@ -12539,7 +12539,7 @@ declare namespace SageMaker {
|
|
12539
12539
|
*/
|
12540
12540
|
MinimumInstanceMetadataServiceVersion: MinimumInstanceMetadataServiceVersion;
|
12541
12541
|
}
|
12542
|
-
export type InstanceType = "ml.t2.medium"|"ml.t2.large"|"ml.t2.xlarge"|"ml.t2.2xlarge"|"ml.t3.medium"|"ml.t3.large"|"ml.t3.xlarge"|"ml.t3.2xlarge"|"ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.m5d.large"|"ml.m5d.xlarge"|"ml.m5d.2xlarge"|"ml.m5d.4xlarge"|"ml.m5d.8xlarge"|"ml.m5d.12xlarge"|"ml.m5d.16xlarge"|"ml.m5d.24xlarge"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5d.xlarge"|"ml.c5d.2xlarge"|"ml.c5d.4xlarge"|"ml.c5d.9xlarge"|"ml.c5d.18xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.p3dn.24xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.r5.large"|"ml.r5.xlarge"|"ml.r5.2xlarge"|"ml.r5.4xlarge"|"ml.r5.8xlarge"|"ml.r5.12xlarge"|"ml.r5.16xlarge"|"ml.r5.24xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.16xlarge"|"ml.g5.12xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|string;
|
12542
|
+
export type InstanceType = "ml.t2.medium"|"ml.t2.large"|"ml.t2.xlarge"|"ml.t2.2xlarge"|"ml.t3.medium"|"ml.t3.large"|"ml.t3.xlarge"|"ml.t3.2xlarge"|"ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.m5d.large"|"ml.m5d.xlarge"|"ml.m5d.2xlarge"|"ml.m5d.4xlarge"|"ml.m5d.8xlarge"|"ml.m5d.12xlarge"|"ml.m5d.16xlarge"|"ml.m5d.24xlarge"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5d.xlarge"|"ml.c5d.2xlarge"|"ml.c5d.4xlarge"|"ml.c5d.9xlarge"|"ml.c5d.18xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.p3dn.24xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.r5.large"|"ml.r5.xlarge"|"ml.r5.2xlarge"|"ml.r5.4xlarge"|"ml.r5.8xlarge"|"ml.r5.12xlarge"|"ml.r5.16xlarge"|"ml.r5.24xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.16xlarge"|"ml.g5.12xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|"ml.inf1.xlarge"|"ml.inf1.2xlarge"|"ml.inf1.6xlarge"|"ml.inf1.24xlarge"|"ml.p4d.24xlarge"|"ml.p4de.24xlarge"|string;
|
12543
12543
|
export type Integer = number;
|
12544
12544
|
export interface IntegerParameterRange {
|
12545
12545
|
/**
|