aws-sdk 2.1588.0 → 2.1590.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/README.md +1 -1
- package/apis/codeconnections-2023-12-01.examples.json +5 -0
- package/apis/codeconnections-2023-12-01.min.json +923 -0
- package/apis/codeconnections-2023-12-01.paginators.json +24 -0
- package/apis/datazone-2018-05-10.min.json +706 -496
- package/apis/datazone-2018-05-10.paginators.json +6 -0
- package/apis/deadline-2023-10-12.examples.json +5 -0
- package/apis/deadline-2023-10-12.min.json +6906 -0
- package/apis/deadline-2023-10-12.paginators.json +160 -0
- package/apis/deadline-2023-10-12.waiters2.json +131 -0
- package/apis/internetmonitor-2021-06-03.min.json +40 -22
- package/apis/iotwireless-2020-11-22.min.json +196 -51
- package/apis/lightsail-2016-11-28.min.json +113 -99
- package/apis/marketplace-catalog-2018-09-17.min.json +15 -5
- package/apis/metadata.json +6 -0
- package/apis/monitoring-2010-08-01.min.json +13 -12
- package/apis/sagemaker-2017-07-24.min.json +1048 -1019
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/b2bi.d.ts +2 -2
- package/clients/cloudwatch.d.ts +19 -15
- package/clients/codebuild.d.ts +1 -1
- package/clients/codeconnections.d.ts +1200 -0
- package/clients/codeconnections.js +18 -0
- package/clients/datazone.d.ts +305 -75
- package/clients/deadline.d.ts +6639 -0
- package/clients/deadline.js +19 -0
- package/clients/emr.d.ts +2 -2
- package/clients/internetmonitor.d.ts +22 -0
- package/clients/iotwireless.d.ts +191 -2
- package/clients/lightsail.d.ts +33 -0
- package/clients/marketplacecatalog.d.ts +17 -1
- package/clients/sagemaker.d.ts +24 -0
- package/dist/aws-sdk-core-react-native.js +3 -2
- package/dist/aws-sdk-react-native.js +94 -12
- package/dist/aws-sdk.js +38 -20
- package/dist/aws-sdk.min.js +40 -40
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/lib/event_listeners.js +1 -0
- package/package.json +1 -1
@@ -0,0 +1,19 @@
|
|
1
|
+
require('../lib/node_loader');
|
2
|
+
var AWS = require('../lib/core');
|
3
|
+
var Service = AWS.Service;
|
4
|
+
var apiLoader = AWS.apiLoader;
|
5
|
+
|
6
|
+
apiLoader.services['deadline'] = {};
|
7
|
+
AWS.Deadline = Service.defineService('deadline', ['2023-10-12']);
|
8
|
+
Object.defineProperty(apiLoader.services['deadline'], '2023-10-12', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/deadline-2023-10-12.min.json');
|
11
|
+
model.paginators = require('../apis/deadline-2023-10-12.paginators.json').pagination;
|
12
|
+
model.waiters = require('../apis/deadline-2023-10-12.waiters2.json').waiters;
|
13
|
+
return model;
|
14
|
+
},
|
15
|
+
enumerable: true,
|
16
|
+
configurable: true
|
17
|
+
});
|
18
|
+
|
19
|
+
module.exports = AWS.Deadline;
|
package/clients/emr.d.ts
CHANGED
@@ -761,7 +761,7 @@ declare namespace EMR {
|
|
761
761
|
*/
|
762
762
|
Id?: ClusterId;
|
763
763
|
/**
|
764
|
-
* The name of the cluster.
|
764
|
+
* The name of the cluster. This parameter can't contain the characters <, >, $, |, or ` (backtick).
|
765
765
|
*/
|
766
766
|
Name?: String;
|
767
767
|
/**
|
@@ -2278,7 +2278,7 @@ declare namespace EMR {
|
|
2278
2278
|
*/
|
2279
2279
|
Placement?: PlacementType;
|
2280
2280
|
/**
|
2281
|
-
* Specifies whether the cluster should remain available after completing all steps. Defaults to
|
2281
|
+
* Specifies whether the cluster should remain available after completing all steps. Defaults to false. For more information about configuring cluster termination, see Control Cluster Termination in the EMR Management Guide.
|
2282
2282
|
*/
|
2283
2283
|
KeepJobFlowAliveWhenNoSteps?: Boolean;
|
2284
2284
|
/**
|
@@ -125,6 +125,7 @@ declare class InternetMonitor extends Service {
|
|
125
125
|
updateMonitor(callback?: (err: AWSError, data: InternetMonitor.Types.UpdateMonitorOutput) => void): Request<InternetMonitor.Types.UpdateMonitorOutput, AWSError>;
|
126
126
|
}
|
127
127
|
declare namespace InternetMonitor {
|
128
|
+
export type AccountId = string;
|
128
129
|
export type Arn = string;
|
129
130
|
export interface AvailabilityMeasurement {
|
130
131
|
/**
|
@@ -140,6 +141,7 @@ declare namespace InternetMonitor {
|
|
140
141
|
*/
|
141
142
|
PercentOfClientLocationImpacted?: Double;
|
142
143
|
}
|
144
|
+
export type Boolean = boolean;
|
143
145
|
export interface CreateMonitorInput {
|
144
146
|
/**
|
145
147
|
* The name of the monitor.
|
@@ -218,6 +220,10 @@ declare namespace InternetMonitor {
|
|
218
220
|
* The internally-generated identifier of a health event. Because EventID contains the forward slash (“/”) character, you must URL-encode the EventID field in the request URL.
|
219
221
|
*/
|
220
222
|
EventId: HealthEventName;
|
223
|
+
/**
|
224
|
+
* TBD
|
225
|
+
*/
|
226
|
+
LinkedAccountId?: AccountId;
|
221
227
|
}
|
222
228
|
export interface GetHealthEventOutput {
|
223
229
|
/**
|
@@ -270,6 +276,10 @@ declare namespace InternetMonitor {
|
|
270
276
|
* The name of the monitor.
|
271
277
|
*/
|
272
278
|
MonitorName: ResourceName;
|
279
|
+
/**
|
280
|
+
* TBD
|
281
|
+
*/
|
282
|
+
LinkedAccountId?: AccountId;
|
273
283
|
}
|
274
284
|
export interface GetMonitorOutput {
|
275
285
|
/**
|
@@ -546,6 +556,10 @@ declare namespace InternetMonitor {
|
|
546
556
|
* The status of a health event.
|
547
557
|
*/
|
548
558
|
EventStatus?: HealthEventStatus;
|
559
|
+
/**
|
560
|
+
* TBD
|
561
|
+
*/
|
562
|
+
LinkedAccountId?: AccountId;
|
549
563
|
}
|
550
564
|
export interface ListHealthEventsOutput {
|
551
565
|
/**
|
@@ -570,6 +584,10 @@ declare namespace InternetMonitor {
|
|
570
584
|
* The status of a monitor. This includes the status of the data processing for the monitor and the status of the monitor itself. For information about the statuses for a monitor, see Monitor.
|
571
585
|
*/
|
572
586
|
MonitorStatus?: String;
|
587
|
+
/**
|
588
|
+
* TBD
|
589
|
+
*/
|
590
|
+
IncludeLinkedAccounts?: Boolean;
|
573
591
|
}
|
574
592
|
export interface ListMonitorsOutput {
|
575
593
|
/**
|
@@ -747,6 +765,10 @@ declare namespace InternetMonitor {
|
|
747
765
|
* The FilterParameters field that you use with Amazon CloudWatch Internet Monitor queries is a string the defines how you want a query to be filtered. The filter parameters that you can specify depend on the query type, since each query type returns a different set of Internet Monitor data. For more information about specifying filter parameters, see Using the Amazon CloudWatch Internet Monitor query interface in the Amazon CloudWatch Internet Monitor User Guide.
|
748
766
|
*/
|
749
767
|
FilterParameters?: FilterParameters;
|
768
|
+
/**
|
769
|
+
* TBD
|
770
|
+
*/
|
771
|
+
LinkedAccountId?: AccountId;
|
750
772
|
}
|
751
773
|
export interface StartQueryOutput {
|
752
774
|
/**
|
package/clients/iotwireless.d.ts
CHANGED
@@ -355,6 +355,22 @@ declare class IoTWireless extends Service {
|
|
355
355
|
* Returns current default log levels or log levels by resource types. Based on resource types, log levels can be for wireless device log options or wireless gateway log options.
|
356
356
|
*/
|
357
357
|
getLogLevelsByResourceTypes(callback?: (err: AWSError, data: IoTWireless.Types.GetLogLevelsByResourceTypesResponse) => void): Request<IoTWireless.Types.GetLogLevelsByResourceTypesResponse, AWSError>;
|
358
|
+
/**
|
359
|
+
* Get the metric configuration status for this account.
|
360
|
+
*/
|
361
|
+
getMetricConfiguration(params: IoTWireless.Types.GetMetricConfigurationRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetMetricConfigurationResponse) => void): Request<IoTWireless.Types.GetMetricConfigurationResponse, AWSError>;
|
362
|
+
/**
|
363
|
+
* Get the metric configuration status for this account.
|
364
|
+
*/
|
365
|
+
getMetricConfiguration(callback?: (err: AWSError, data: IoTWireless.Types.GetMetricConfigurationResponse) => void): Request<IoTWireless.Types.GetMetricConfigurationResponse, AWSError>;
|
366
|
+
/**
|
367
|
+
* Get metrics.
|
368
|
+
*/
|
369
|
+
getMetrics(params: IoTWireless.Types.GetMetricsRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetMetricsResponse) => void): Request<IoTWireless.Types.GetMetricsResponse, AWSError>;
|
370
|
+
/**
|
371
|
+
* Get metrics.
|
372
|
+
*/
|
373
|
+
getMetrics(callback?: (err: AWSError, data: IoTWireless.Types.GetMetricsResponse) => void): Request<IoTWireless.Types.GetMetricsResponse, AWSError>;
|
358
374
|
/**
|
359
375
|
* Gets information about a multicast group.
|
360
376
|
*/
|
@@ -811,6 +827,14 @@ declare class IoTWireless extends Service {
|
|
811
827
|
* Set default log level, or log levels by resource types. This can be for wireless device log options or wireless gateways log options and is used to control the log messages that'll be displayed in CloudWatch.
|
812
828
|
*/
|
813
829
|
updateLogLevelsByResourceTypes(callback?: (err: AWSError, data: IoTWireless.Types.UpdateLogLevelsByResourceTypesResponse) => void): Request<IoTWireless.Types.UpdateLogLevelsByResourceTypesResponse, AWSError>;
|
830
|
+
/**
|
831
|
+
* Update the metric configuration.
|
832
|
+
*/
|
833
|
+
updateMetricConfiguration(params: IoTWireless.Types.UpdateMetricConfigurationRequest, callback?: (err: AWSError, data: IoTWireless.Types.UpdateMetricConfigurationResponse) => void): Request<IoTWireless.Types.UpdateMetricConfigurationResponse, AWSError>;
|
834
|
+
/**
|
835
|
+
* Update the metric configuration.
|
836
|
+
*/
|
837
|
+
updateMetricConfiguration(callback?: (err: AWSError, data: IoTWireless.Types.UpdateMetricConfigurationResponse) => void): Request<IoTWireless.Types.UpdateMetricConfigurationResponse, AWSError>;
|
814
838
|
/**
|
815
839
|
* Updates properties of a multicast group session.
|
816
840
|
*/
|
@@ -926,6 +950,7 @@ declare namespace IoTWireless {
|
|
926
950
|
}
|
927
951
|
export type AckModeRetryDurationSecs = number;
|
928
952
|
export type AddGwMetadata = boolean;
|
953
|
+
export type AggregationPeriod = "OneHour"|"OneDay"|"OneWeek"|string;
|
929
954
|
export type AmazonId = string;
|
930
955
|
export type AmazonResourceName = string;
|
931
956
|
export type ApId = string;
|
@@ -1031,6 +1056,7 @@ declare namespace IoTWireless {
|
|
1031
1056
|
export interface AssociateWirelessGatewayWithThingResponse {
|
1032
1057
|
}
|
1033
1058
|
export type AutoCreateTasks = boolean;
|
1059
|
+
export type Avg = number;
|
1034
1060
|
export type BCCH = number;
|
1035
1061
|
export type BSIC = number;
|
1036
1062
|
export type BaseLat = number;
|
@@ -1682,6 +1708,19 @@ declare namespace IoTWireless {
|
|
1682
1708
|
}
|
1683
1709
|
export type DeviceState = "Provisioned"|"RegisteredNotSeen"|"RegisteredReachable"|"RegisteredUnreachable"|string;
|
1684
1710
|
export type DeviceTypeId = string;
|
1711
|
+
export interface Dimension {
|
1712
|
+
/**
|
1713
|
+
* The name of the dimension.
|
1714
|
+
*/
|
1715
|
+
name?: DimensionName;
|
1716
|
+
/**
|
1717
|
+
* The dimension's value.
|
1718
|
+
*/
|
1719
|
+
value?: DimensionValue;
|
1720
|
+
}
|
1721
|
+
export type DimensionName = "DeviceId"|"GatewayId"|string;
|
1722
|
+
export type DimensionValue = string;
|
1723
|
+
export type Dimensions = Dimension[];
|
1685
1724
|
export interface DisassociateAwsAccountFromPartnerAccountRequest {
|
1686
1725
|
/**
|
1687
1726
|
* The partner account ID to disassociate from the AWS account.
|
@@ -1971,6 +2010,26 @@ declare namespace IoTWireless {
|
|
1971
2010
|
WirelessGatewayLogOptions?: WirelessGatewayLogOptionList;
|
1972
2011
|
WirelessDeviceLogOptions?: WirelessDeviceLogOptionList;
|
1973
2012
|
}
|
2013
|
+
export interface GetMetricConfigurationRequest {
|
2014
|
+
}
|
2015
|
+
export interface GetMetricConfigurationResponse {
|
2016
|
+
/**
|
2017
|
+
* The account's configuration status for summary metric aggregation.
|
2018
|
+
*/
|
2019
|
+
SummaryMetric?: SummaryMetricConfiguration;
|
2020
|
+
}
|
2021
|
+
export interface GetMetricsRequest {
|
2022
|
+
/**
|
2023
|
+
* The list of queries to retrieve summary metrics.
|
2024
|
+
*/
|
2025
|
+
SummaryMetricQueries?: SummaryMetricQueries;
|
2026
|
+
}
|
2027
|
+
export interface GetMetricsResponse {
|
2028
|
+
/**
|
2029
|
+
* The list of retrieved metrics.
|
2030
|
+
*/
|
2031
|
+
SummaryMetricQueryResults?: SummaryMetricQueryResults;
|
2032
|
+
}
|
1974
2033
|
export interface GetMulticastGroupRequest {
|
1975
2034
|
Id: MulticastGroupId;
|
1976
2035
|
}
|
@@ -3508,6 +3567,7 @@ declare namespace IoTWireless {
|
|
3508
3567
|
export type MNC = number;
|
3509
3568
|
export type MacAddress = string;
|
3510
3569
|
export type MacVersion = string;
|
3570
|
+
export type Max = number;
|
3511
3571
|
export type MaxAllowedSignature = number;
|
3512
3572
|
export type MaxDutyCycle = number;
|
3513
3573
|
export type MaxEirp = number;
|
@@ -3525,6 +3585,43 @@ declare namespace IoTWireless {
|
|
3525
3585
|
}
|
3526
3586
|
export type MessageId = string;
|
3527
3587
|
export type MessageType = "CUSTOM_COMMAND_ID_NOTIFY"|"CUSTOM_COMMAND_ID_GET"|"CUSTOM_COMMAND_ID_SET"|"CUSTOM_COMMAND_ID_RESP"|string;
|
3588
|
+
export type MetricName = "DeviceRSSI"|"DeviceSNR"|"DeviceUplinkCount"|"DeviceDownlinkCount"|"DeviceUplinkLostCount"|"DeviceUplinkLostRate"|"DeviceJoinRequestCount"|"DeviceJoinAcceptCount"|"DeviceRoamingUplinkCount"|"DeviceRoamingDownlinkCount"|"GatewayUpTime"|"GatewayDownTime"|"GatewayRSSI"|"GatewaySNR"|"GatewayUplinkCount"|"GatewayDownlinkCount"|"GatewayJoinRequestCount"|"GatewayJoinAcceptCount"|"AwsAccountUplinkCount"|"AwsAccountDownlinkCount"|"AwsAccountUplinkLostCount"|"AwsAccountUplinkLostRate"|"AwsAccountJoinRequestCount"|"AwsAccountJoinAcceptCount"|"AwsAccountRoamingUplinkCount"|"AwsAccountRoamingDownlinkCount"|"AwsAccountDeviceCount"|"AwsAccountGatewayCount"|"AwsAccountActiveDeviceCount"|"AwsAccountActiveGatewayCount"|string;
|
3589
|
+
export type MetricQueryEndTimestamp = Date;
|
3590
|
+
export type MetricQueryError = string;
|
3591
|
+
export type MetricQueryId = string;
|
3592
|
+
export type MetricQueryStartTimestamp = Date;
|
3593
|
+
export type MetricQueryStatus = "Succeeded"|"Failed"|string;
|
3594
|
+
export type MetricQueryTimestamp = Date;
|
3595
|
+
export type MetricQueryTimestamps = MetricQueryTimestamp[];
|
3596
|
+
export interface MetricQueryValue {
|
3597
|
+
/**
|
3598
|
+
* The minimum of the values of the all data points collected during the period.
|
3599
|
+
*/
|
3600
|
+
Min?: Min;
|
3601
|
+
/**
|
3602
|
+
* The maximum of the values of the all data points collected during the period.
|
3603
|
+
*/
|
3604
|
+
Max?: Max;
|
3605
|
+
/**
|
3606
|
+
* The sum of the values of the all data points collected during the period.
|
3607
|
+
*/
|
3608
|
+
Sum?: Sum;
|
3609
|
+
/**
|
3610
|
+
* The average of the values of the all data points collected during the period.
|
3611
|
+
*/
|
3612
|
+
Avg?: Avg;
|
3613
|
+
/**
|
3614
|
+
* The standard deviation of the values of the all data points collected during the period.
|
3615
|
+
*/
|
3616
|
+
Std?: Std;
|
3617
|
+
/**
|
3618
|
+
* The 90th percentile of the values of the all data points collected during the period.
|
3619
|
+
*/
|
3620
|
+
P90?: P90;
|
3621
|
+
}
|
3622
|
+
export type MetricQueryValues = MetricQueryValue[];
|
3623
|
+
export type MetricUnit = string;
|
3624
|
+
export type Min = number;
|
3528
3625
|
export type MinGwDiversity = number;
|
3529
3626
|
export type Model = string;
|
3530
3627
|
export type MulticastDeviceStatus = string;
|
@@ -3577,11 +3674,11 @@ declare namespace IoTWireless {
|
|
3577
3674
|
*/
|
3578
3675
|
AppKey?: AppKey;
|
3579
3676
|
/**
|
3580
|
-
* The AppEUI value.
|
3677
|
+
* The AppEUI value. You specify this value when using LoRaWAN versions v1.0.2 or v1.0.3.
|
3581
3678
|
*/
|
3582
3679
|
AppEui?: AppEui;
|
3583
3680
|
/**
|
3584
|
-
* The JoinEUI value.
|
3681
|
+
* The JoinEUI value. You specify this value instead of the AppEUI when using LoRaWAN version v1.0.4.
|
3585
3682
|
*/
|
3586
3683
|
JoinEui?: JoinEui;
|
3587
3684
|
/**
|
@@ -3603,6 +3700,7 @@ declare namespace IoTWireless {
|
|
3603
3700
|
*/
|
3604
3701
|
JoinEui?: JoinEui;
|
3605
3702
|
}
|
3703
|
+
export type P90 = number;
|
3606
3704
|
export type PCI = number;
|
3607
3705
|
export type PSC = number;
|
3608
3706
|
export type PackageVersion = string;
|
@@ -4131,8 +4229,91 @@ declare namespace IoTWireless {
|
|
4131
4229
|
}
|
4132
4230
|
export type Station = string;
|
4133
4231
|
export type StatusReason = string;
|
4232
|
+
export type Std = number;
|
4134
4233
|
export type SubBand = number;
|
4135
4234
|
export type SubBands = SubBand[];
|
4235
|
+
export type Sum = number;
|
4236
|
+
export interface SummaryMetricConfiguration {
|
4237
|
+
/**
|
4238
|
+
* The configuration of summary metric.
|
4239
|
+
*/
|
4240
|
+
Status?: SummaryMetricConfigurationStatus;
|
4241
|
+
}
|
4242
|
+
export type SummaryMetricConfigurationStatus = "Enabled"|"Disabled"|string;
|
4243
|
+
export type SummaryMetricQueries = SummaryMetricQuery[];
|
4244
|
+
export interface SummaryMetricQuery {
|
4245
|
+
/**
|
4246
|
+
* The id of the query.
|
4247
|
+
*/
|
4248
|
+
QueryId?: MetricQueryId;
|
4249
|
+
/**
|
4250
|
+
* The name of the metric.
|
4251
|
+
*/
|
4252
|
+
MetricName?: MetricName;
|
4253
|
+
/**
|
4254
|
+
* The dimensions of the metric.
|
4255
|
+
*/
|
4256
|
+
Dimensions?: Dimensions;
|
4257
|
+
/**
|
4258
|
+
* The aggregation period of the metric.
|
4259
|
+
*/
|
4260
|
+
AggregationPeriod?: AggregationPeriod;
|
4261
|
+
/**
|
4262
|
+
* The start timestamp for summary metric query.
|
4263
|
+
*/
|
4264
|
+
StartTimestamp?: MetricQueryStartTimestamp;
|
4265
|
+
/**
|
4266
|
+
* The end timestamp for summary metric query.
|
4267
|
+
*/
|
4268
|
+
EndTimestamp?: MetricQueryEndTimestamp;
|
4269
|
+
}
|
4270
|
+
export interface SummaryMetricQueryResult {
|
4271
|
+
/**
|
4272
|
+
* The id of the query.
|
4273
|
+
*/
|
4274
|
+
QueryId?: MetricQueryId;
|
4275
|
+
/**
|
4276
|
+
* The status of the metric query.
|
4277
|
+
*/
|
4278
|
+
QueryStatus?: MetricQueryStatus;
|
4279
|
+
/**
|
4280
|
+
* The error message for the summary metric query.
|
4281
|
+
*/
|
4282
|
+
Error?: MetricQueryError;
|
4283
|
+
/**
|
4284
|
+
* The name of the metric.
|
4285
|
+
*/
|
4286
|
+
MetricName?: MetricName;
|
4287
|
+
/**
|
4288
|
+
* The dimensions of the metric.
|
4289
|
+
*/
|
4290
|
+
Dimensions?: Dimensions;
|
4291
|
+
/**
|
4292
|
+
* The aggregation period of the metric.
|
4293
|
+
*/
|
4294
|
+
AggregationPeriod?: AggregationPeriod;
|
4295
|
+
/**
|
4296
|
+
* The start timestamp for summary metric query.
|
4297
|
+
*/
|
4298
|
+
StartTimestamp?: MetricQueryStartTimestamp;
|
4299
|
+
/**
|
4300
|
+
* The end timestamp for summary metric query.
|
4301
|
+
*/
|
4302
|
+
EndTimestamp?: MetricQueryEndTimestamp;
|
4303
|
+
/**
|
4304
|
+
* The timestamp of each aggregation result.
|
4305
|
+
*/
|
4306
|
+
Timestamps?: MetricQueryTimestamps;
|
4307
|
+
/**
|
4308
|
+
* The list of aggregated metrics.
|
4309
|
+
*/
|
4310
|
+
Values?: MetricQueryValues;
|
4311
|
+
/**
|
4312
|
+
* The units of measurement to be used for interpreting the aggregation result.
|
4313
|
+
*/
|
4314
|
+
Unit?: MetricUnit;
|
4315
|
+
}
|
4316
|
+
export type SummaryMetricQueryResults = SummaryMetricQueryResult[];
|
4136
4317
|
export type SupportedRfRegion = "EU868"|"US915"|"AU915"|"AS923-1"|"AS923-2"|"AS923-3"|"AS923-4"|"EU433"|"CN470"|"CN779"|"RU864"|"KR920"|"IN865"|string;
|
4137
4318
|
export type Supports32BitFCnt = boolean;
|
4138
4319
|
export type SupportsClassB = boolean;
|
@@ -4369,6 +4550,14 @@ declare namespace IoTWireless {
|
|
4369
4550
|
}
|
4370
4551
|
export interface UpdateLogLevelsByResourceTypesResponse {
|
4371
4552
|
}
|
4553
|
+
export interface UpdateMetricConfigurationRequest {
|
4554
|
+
/**
|
4555
|
+
* The value to be used to set summary metric configuration.
|
4556
|
+
*/
|
4557
|
+
SummaryMetric?: SummaryMetricConfiguration;
|
4558
|
+
}
|
4559
|
+
export interface UpdateMetricConfigurationResponse {
|
4560
|
+
}
|
4372
4561
|
export interface UpdateMulticastGroupRequest {
|
4373
4562
|
Id: MulticastGroupId;
|
4374
4563
|
Name?: MulticastGroupName;
|
package/clients/lightsail.d.ts
CHANGED
@@ -2795,6 +2795,14 @@ declare namespace Lightsail {
|
|
2795
2795
|
* The tag keys and optional values to add to the distribution during create. Use the TagResource action to tag a resource after it's created.
|
2796
2796
|
*/
|
2797
2797
|
tags?: TagList;
|
2798
|
+
/**
|
2799
|
+
* The name of the SSL/TLS certificate that you want to attach to the distribution. Use the GetCertificates action to get a list of certificate names that you can specify.
|
2800
|
+
*/
|
2801
|
+
certificateName?: ResourceName;
|
2802
|
+
/**
|
2803
|
+
* The minimum TLS protocol version for the SSL/TLS certificate.
|
2804
|
+
*/
|
2805
|
+
viewerMinimumTlsProtocolVersion?: ViewerMinimumTlsProtocolVersionEnum;
|
2798
2806
|
}
|
2799
2807
|
export interface CreateDistributionResult {
|
2800
2808
|
/**
|
@@ -5322,6 +5330,10 @@ declare namespace Lightsail {
|
|
5322
5330
|
* The protocol that your Amazon Lightsail distribution uses when establishing a connection with your origin to pull content.
|
5323
5331
|
*/
|
5324
5332
|
protocolPolicy?: OriginProtocolPolicyEnum;
|
5333
|
+
/**
|
5334
|
+
* The amount of time, in seconds, that the distribution waits for a response after forwarding a request to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
5335
|
+
*/
|
5336
|
+
responseTimeout?: integer;
|
5325
5337
|
}
|
5326
5338
|
export interface Instance {
|
5327
5339
|
/**
|
@@ -5848,6 +5860,10 @@ declare namespace Lightsail {
|
|
5848
5860
|
* The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.
|
5849
5861
|
*/
|
5850
5862
|
tags?: TagList;
|
5863
|
+
/**
|
5864
|
+
* The minimum TLS protocol version that the distribution can use to communicate with viewers.
|
5865
|
+
*/
|
5866
|
+
viewerMinimumTlsProtocolVersion?: string;
|
5851
5867
|
}
|
5852
5868
|
export interface LoadBalancer {
|
5853
5869
|
/**
|
@@ -6301,6 +6317,10 @@ declare namespace Lightsail {
|
|
6301
6317
|
* The protocol that your Amazon Lightsail distribution uses when establishing a connection with your origin to pull content.
|
6302
6318
|
*/
|
6303
6319
|
protocolPolicy?: OriginProtocolPolicyEnum;
|
6320
|
+
/**
|
6321
|
+
* The amount of time, in seconds, that the distribution waits for a response after forwarding a request to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
6322
|
+
*/
|
6323
|
+
responseTimeout?: integer;
|
6304
6324
|
}
|
6305
6325
|
export type OriginProtocolPolicyEnum = "http-only"|"https-only"|string;
|
6306
6326
|
export type PartnerIdList = NonEmptyString[];
|
@@ -7531,6 +7551,18 @@ declare namespace Lightsail {
|
|
7531
7551
|
* Indicates whether to enable the distribution.
|
7532
7552
|
*/
|
7533
7553
|
isEnabled?: boolean;
|
7554
|
+
/**
|
7555
|
+
* Use this parameter to update the minimum TLS protocol version for the SSL/TLS certificate that's attached to the distribution.
|
7556
|
+
*/
|
7557
|
+
viewerMinimumTlsProtocolVersion?: ViewerMinimumTlsProtocolVersionEnum;
|
7558
|
+
/**
|
7559
|
+
* The name of the SSL/TLS certificate that you want to attach to the distribution. Only certificates with a status of ISSUED can be attached to a distribution. Use the GetCertificates action to get a list of certificate names that you can specify.
|
7560
|
+
*/
|
7561
|
+
certificateName?: ResourceName;
|
7562
|
+
/**
|
7563
|
+
* Indicates whether the default SSL/TLS certificate is attached to the distribution. The default value is true. When true, the distribution uses the default domain name such as d111111abcdef8.cloudfront.net. Set this value to false to attach a new certificate to the distribution.
|
7564
|
+
*/
|
7565
|
+
useDefaultCertificate?: boolean;
|
7534
7566
|
}
|
7535
7567
|
export interface UpdateDistributionResult {
|
7536
7568
|
/**
|
@@ -7670,6 +7702,7 @@ declare namespace Lightsail {
|
|
7670
7702
|
*/
|
7671
7703
|
operations?: OperationList;
|
7672
7704
|
}
|
7705
|
+
export type ViewerMinimumTlsProtocolVersionEnum = "TLSv1.1_2016"|"TLSv1.2_2018"|"TLSv1.2_2019"|"TLSv1.2_2021"|string;
|
7673
7706
|
export type double = number;
|
7674
7707
|
export type float = number;
|
7675
7708
|
export type integer = number;
|
@@ -946,6 +946,10 @@ declare namespace MarketplaceCatalog {
|
|
946
946
|
* Allows filtering on the ProductId of an offer.
|
947
947
|
*/
|
948
948
|
ProductId?: OfferProductIdFilter;
|
949
|
+
/**
|
950
|
+
* Allows filtering on the ResaleAuthorizationId of an offer. Not all offers have a ResaleAuthorizationId. The response will only include offers for which you have permissions.
|
951
|
+
*/
|
952
|
+
ResaleAuthorizationId?: OfferResaleAuthorizationIdFilter;
|
949
953
|
/**
|
950
954
|
* Allows filtering on the ReleaseDate of an offer.
|
951
955
|
*/
|
@@ -1023,6 +1027,14 @@ declare namespace MarketplaceCatalog {
|
|
1023
1027
|
*/
|
1024
1028
|
BeforeValue?: DateTimeISO8601;
|
1025
1029
|
}
|
1030
|
+
export interface OfferResaleAuthorizationIdFilter {
|
1031
|
+
/**
|
1032
|
+
* Allows filtering on the ResaleAuthorizationId of an offer with list input.
|
1033
|
+
*/
|
1034
|
+
ValueList?: OfferResaleAuthorizationIdFilterValueList;
|
1035
|
+
}
|
1036
|
+
export type OfferResaleAuthorizationIdFilterValueList = OfferResaleAuthorizationIdString[];
|
1037
|
+
export type OfferResaleAuthorizationIdString = string;
|
1026
1038
|
export interface OfferSort {
|
1027
1039
|
/**
|
1028
1040
|
* Allows to sort offers.
|
@@ -1033,7 +1045,7 @@ declare namespace MarketplaceCatalog {
|
|
1033
1045
|
*/
|
1034
1046
|
SortOrder?: SortOrder;
|
1035
1047
|
}
|
1036
|
-
export type OfferSortBy = "EntityId"|"Name"|"ProductId"|"ReleaseDate"|"AvailabilityEndDate"|"BuyerAccounts"|"State"|"Targeting"|"LastModifiedDate"|string;
|
1048
|
+
export type OfferSortBy = "EntityId"|"Name"|"ProductId"|"ResaleAuthorizationId"|"ReleaseDate"|"AvailabilityEndDate"|"BuyerAccounts"|"State"|"Targeting"|"LastModifiedDate"|string;
|
1037
1049
|
export interface OfferStateFilter {
|
1038
1050
|
/**
|
1039
1051
|
* Allows filtering on the State of an offer with list input.
|
@@ -1051,6 +1063,10 @@ declare namespace MarketplaceCatalog {
|
|
1051
1063
|
* The product ID of the offer.
|
1052
1064
|
*/
|
1053
1065
|
ProductId?: OfferProductIdString;
|
1066
|
+
/**
|
1067
|
+
* The ResaleAuthorizationId of the offer.
|
1068
|
+
*/
|
1069
|
+
ResaleAuthorizationId?: OfferResaleAuthorizationIdString;
|
1054
1070
|
/**
|
1055
1071
|
* The release date of the offer.
|
1056
1072
|
*/
|
package/clients/sagemaker.d.ts
CHANGED
@@ -3008,6 +3008,10 @@ declare namespace SageMaker {
|
|
3008
3008
|
* The configuration for the file system and the runtime, such as the environment variables and entry point.
|
3009
3009
|
*/
|
3010
3010
|
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
3011
|
+
/**
|
3012
|
+
* The configuration for the file system and the runtime, such as the environment variables and entry point.
|
3013
|
+
*/
|
3014
|
+
CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
|
3011
3015
|
}
|
3012
3016
|
export type AppImageConfigList = AppImageConfigDetails[];
|
3013
3017
|
export type AppImageConfigName = string;
|
@@ -4316,8 +4320,16 @@ declare namespace SageMaker {
|
|
4316
4320
|
ClusterStatus: ClusterStatus;
|
4317
4321
|
}
|
4318
4322
|
export type ClusterThreadsPerCore = number;
|
4323
|
+
export interface CodeEditorAppImageConfig {
|
4324
|
+
FileSystemConfig?: FileSystemConfig;
|
4325
|
+
ContainerConfig?: ContainerConfig;
|
4326
|
+
}
|
4319
4327
|
export interface CodeEditorAppSettings {
|
4320
4328
|
DefaultResourceSpec?: ResourceSpec;
|
4329
|
+
/**
|
4330
|
+
* A list of custom SageMaker images that are configured to run as a Code Editor app.
|
4331
|
+
*/
|
4332
|
+
CustomImages?: CustomImages;
|
4321
4333
|
/**
|
4322
4334
|
* The Amazon Resource Name (ARN) of the Code Editor application lifecycle configuration.
|
4323
4335
|
*/
|
@@ -4707,6 +4719,10 @@ declare namespace SageMaker {
|
|
4707
4719
|
* The JupyterLabAppImageConfig. You can only specify one image kernel in the AppImageConfig API. This kernel is shown to users before the image starts. After the image runs, all kernels are visible in JupyterLab.
|
4708
4720
|
*/
|
4709
4721
|
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
4722
|
+
/**
|
4723
|
+
* The CodeEditorAppImageConfig. You can only specify one image kernel in the AppImageConfig API. This kernel is shown to users before the image starts. After the image runs, all kernels are visible in Code Editor.
|
4724
|
+
*/
|
4725
|
+
CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
|
4710
4726
|
}
|
4711
4727
|
export interface CreateAppImageConfigResponse {
|
4712
4728
|
/**
|
@@ -7649,6 +7665,10 @@ declare namespace SageMaker {
|
|
7649
7665
|
* The configuration of the JupyterLab app.
|
7650
7666
|
*/
|
7651
7667
|
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
7668
|
+
/**
|
7669
|
+
* The configuration of the Code Editor app.
|
7670
|
+
*/
|
7671
|
+
CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
|
7652
7672
|
}
|
7653
7673
|
export interface DescribeAppRequest {
|
7654
7674
|
/**
|
@@ -23175,6 +23195,10 @@ declare namespace SageMaker {
|
|
23175
23195
|
* The JupyterLab app running on the image.
|
23176
23196
|
*/
|
23177
23197
|
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
23198
|
+
/**
|
23199
|
+
* The Code Editor app running on the image.
|
23200
|
+
*/
|
23201
|
+
CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
|
23178
23202
|
}
|
23179
23203
|
export interface UpdateAppImageConfigResponse {
|
23180
23204
|
/**
|