cdk-comprehend-s3olap 2.0.36 → 2.0.37
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/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +38 -38
- package/node_modules/aws-sdk/apis/codeartifact-2018-09-22.min.json +171 -6
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1 -2
- package/node_modules/aws-sdk/apis/fms-2018-01-01.min.json +56 -44
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +103 -44
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +326 -182
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/nimble-2020-08-01.min.json +119 -111
- package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +54 -34
- package/node_modules/aws-sdk/clients/athena.d.ts +6 -4
- package/node_modules/aws-sdk/clients/codeartifact.d.ts +207 -42
- package/node_modules/aws-sdk/clients/configservice.d.ts +7 -7
- package/node_modules/aws-sdk/clients/ec2.d.ts +2 -2
- package/node_modules/aws-sdk/clients/fms.d.ts +23 -3
- package/node_modules/aws-sdk/clients/glue.d.ts +43 -37
- package/node_modules/aws-sdk/clients/inspector2.d.ts +73 -5
- package/node_modules/aws-sdk/clients/kendra.d.ts +316 -131
- package/node_modules/aws-sdk/clients/nimble.d.ts +61 -37
- package/node_modules/aws-sdk/clients/outposts.d.ts +33 -0
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +42 -43
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +4 -4
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -253,11 +253,11 @@ declare class Nimble extends Service {
|
|
253
253
|
*/
|
254
254
|
listStreamingImages(callback?: (err: AWSError, data: Nimble.Types.ListStreamingImagesResponse) => void): Request<Nimble.Types.ListStreamingImagesResponse, AWSError>;
|
255
255
|
/**
|
256
|
-
* Lists the streaming
|
256
|
+
* Lists the streaming sessions in a studio.
|
257
257
|
*/
|
258
258
|
listStreamingSessions(params: Nimble.Types.ListStreamingSessionsRequest, callback?: (err: AWSError, data: Nimble.Types.ListStreamingSessionsResponse) => void): Request<Nimble.Types.ListStreamingSessionsResponse, AWSError>;
|
259
259
|
/**
|
260
|
-
* Lists the streaming
|
260
|
+
* Lists the streaming sessions in a studio.
|
261
261
|
*/
|
262
262
|
listStreamingSessions(callback?: (err: AWSError, data: Nimble.Types.ListStreamingSessionsResponse) => void): Request<Nimble.Types.ListStreamingSessionsResponse, AWSError>;
|
263
263
|
/**
|
@@ -545,7 +545,7 @@ declare namespace Nimble {
|
|
545
545
|
/**
|
546
546
|
* The endpoint of the ComputeFarm that is accessed by the studio component resource.
|
547
547
|
*/
|
548
|
-
endpoint?:
|
548
|
+
endpoint?: SensitiveString;
|
549
549
|
}
|
550
550
|
export interface CreateLaunchProfileRequest {
|
551
551
|
/**
|
@@ -599,7 +599,7 @@ declare namespace Nimble {
|
|
599
599
|
/**
|
600
600
|
* A human-readable description of the streaming image.
|
601
601
|
*/
|
602
|
-
description?:
|
602
|
+
description?: StreamingImageDescription;
|
603
603
|
/**
|
604
604
|
* The ID of an EC2 machine image with which to create this streaming image.
|
605
605
|
*/
|
@@ -607,7 +607,7 @@ declare namespace Nimble {
|
|
607
607
|
/**
|
608
608
|
* A friendly name for a streaming image resource.
|
609
609
|
*/
|
610
|
-
name:
|
610
|
+
name: StreamingImageName;
|
611
611
|
/**
|
612
612
|
* The studio ID.
|
613
613
|
*/
|
@@ -708,10 +708,18 @@ declare namespace Nimble {
|
|
708
708
|
* The name for the studio component.
|
709
709
|
*/
|
710
710
|
name: StudioComponentName;
|
711
|
+
/**
|
712
|
+
* An IAM role attached to a Studio Component that gives the studio component access to AWS resources at anytime while the instance is running.
|
713
|
+
*/
|
714
|
+
runtimeRoleArn?: RoleArn;
|
711
715
|
/**
|
712
716
|
* Parameters for the studio component scripts.
|
713
717
|
*/
|
714
718
|
scriptParameters?: StudioComponentScriptParameterKeyValueList;
|
719
|
+
/**
|
720
|
+
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to AWS resources when the system initialization script runs.
|
721
|
+
*/
|
722
|
+
secureInitializationRoleArn?: RoleArn;
|
715
723
|
/**
|
716
724
|
* The studio ID.
|
717
725
|
*/
|
@@ -739,7 +747,7 @@ declare namespace Nimble {
|
|
739
747
|
/**
|
740
748
|
* The IAM role that Studio Admins will assume when logging in to the Nimble Studio portal.
|
741
749
|
*/
|
742
|
-
adminRoleArn:
|
750
|
+
adminRoleArn: RoleArn;
|
743
751
|
/**
|
744
752
|
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the AWS SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
745
753
|
*/
|
@@ -747,7 +755,7 @@ declare namespace Nimble {
|
|
747
755
|
/**
|
748
756
|
* A friendly name for the studio.
|
749
757
|
*/
|
750
|
-
displayName:
|
758
|
+
displayName: StudioDisplayName;
|
751
759
|
/**
|
752
760
|
* The studio encryption configuration.
|
753
761
|
*/
|
@@ -763,7 +771,7 @@ declare namespace Nimble {
|
|
763
771
|
/**
|
764
772
|
* The IAM role that Studio Users will assume when logging in to the Nimble Studio portal.
|
765
773
|
*/
|
766
|
-
userRoleArn:
|
774
|
+
userRoleArn: RoleArn;
|
767
775
|
}
|
768
776
|
export interface CreateStudioResponse {
|
769
777
|
/**
|
@@ -1294,10 +1302,18 @@ declare namespace Nimble {
|
|
1294
1302
|
studioComponentName?: StudioComponentName;
|
1295
1303
|
}
|
1296
1304
|
export interface LaunchProfileInitializationScript {
|
1305
|
+
/**
|
1306
|
+
* An IAM role attached to a Studio Component that gives the studio component access to AWS resources at anytime while the instance is running.
|
1307
|
+
*/
|
1308
|
+
runtimeRoleArn?: RoleArn;
|
1297
1309
|
/**
|
1298
1310
|
* The initialization script.
|
1299
1311
|
*/
|
1300
1312
|
script?: StudioComponentInitializationScriptContent;
|
1313
|
+
/**
|
1314
|
+
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to AWS resources when the system initialization script runs.
|
1315
|
+
*/
|
1316
|
+
secureInitializationRoleArn?: RoleArn;
|
1301
1317
|
/**
|
1302
1318
|
* The unique identifier for a studio component resource.
|
1303
1319
|
*/
|
@@ -1347,7 +1363,7 @@ declare namespace Nimble {
|
|
1347
1363
|
/**
|
1348
1364
|
* The endpoint of the license service that is accessed by the studio component resource.
|
1349
1365
|
*/
|
1350
|
-
endpoint?:
|
1366
|
+
endpoint?: SensitiveString;
|
1351
1367
|
}
|
1352
1368
|
export type LinuxMountPoint = string;
|
1353
1369
|
export interface ListEulaAcceptancesRequest {
|
@@ -1662,6 +1678,7 @@ declare namespace Nimble {
|
|
1662
1678
|
export interface PutStudioMembersResponse {
|
1663
1679
|
}
|
1664
1680
|
export type Region = string;
|
1681
|
+
export type RoleArn = string;
|
1665
1682
|
export type ScriptParameterKey = string;
|
1666
1683
|
export interface ScriptParameterKeyValue {
|
1667
1684
|
/**
|
@@ -1675,11 +1692,12 @@ declare namespace Nimble {
|
|
1675
1692
|
}
|
1676
1693
|
export type ScriptParameterValue = string;
|
1677
1694
|
export type SecurityGroupId = string;
|
1695
|
+
export type SensitiveString = string;
|
1678
1696
|
export interface SharedFileSystemConfiguration {
|
1679
1697
|
/**
|
1680
1698
|
* The endpoint of the shared file system that is accessed by the studio component resource.
|
1681
1699
|
*/
|
1682
|
-
endpoint?:
|
1700
|
+
endpoint?: SensitiveString;
|
1683
1701
|
/**
|
1684
1702
|
* The unique identifier for a file system.
|
1685
1703
|
*/
|
@@ -1691,7 +1709,7 @@ declare namespace Nimble {
|
|
1691
1709
|
/**
|
1692
1710
|
* The name of the file share.
|
1693
1711
|
*/
|
1694
|
-
shareName?:
|
1712
|
+
shareName?: SensitiveString;
|
1695
1713
|
/**
|
1696
1714
|
* The mount location for a shared file system on a Windows virtual workstation.
|
1697
1715
|
*/
|
@@ -1761,7 +1779,7 @@ declare namespace Nimble {
|
|
1761
1779
|
*/
|
1762
1780
|
maxSessionLengthInMinutes?: StreamConfigurationMaxSessionLengthInMinutes;
|
1763
1781
|
/**
|
1764
|
-
* Integer that determines if you can start and stop your sessions and how long a session can stay in the STOPPED state. The default value is 0. The maximum value is 5760. If the value is missing or set to 0, your sessions can’t be stopped. If you then call StopStreamingSession, the session fails. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be terminated
|
1782
|
+
* Integer that determines if you can start and stop your sessions and how long a session can stay in the STOPPED state. The default value is 0. The maximum value is 5760. If the value is missing or set to 0, your sessions can’t be stopped. If you then call StopStreamingSession, the session fails. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be terminated (instead of stopped). If the value is set to a positive number, the session can be stopped. You can call StopStreamingSession to stop sessions in the READY state. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be stopped (instead of terminated).
|
1765
1783
|
*/
|
1766
1784
|
maxStoppedSessionLengthInMinutes?: StreamConfigurationMaxStoppedSessionLengthInMinutes;
|
1767
1785
|
/**
|
@@ -1787,7 +1805,7 @@ declare namespace Nimble {
|
|
1787
1805
|
*/
|
1788
1806
|
maxSessionLengthInMinutes?: StreamConfigurationMaxSessionLengthInMinutes;
|
1789
1807
|
/**
|
1790
|
-
* Integer that determines if you can start and stop your sessions and how long a session can stay in the STOPPED state. The default value is 0. The maximum value is 5760. If the value is missing or set to 0, your sessions can’t be stopped. If you then call StopStreamingSession, the session fails. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be terminated
|
1808
|
+
* Integer that determines if you can start and stop your sessions and how long a session can stay in the STOPPED state. The default value is 0. The maximum value is 5760. If the value is missing or set to 0, your sessions can’t be stopped. If you then call StopStreamingSession, the session fails. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be terminated (instead of stopped). If the value is set to a positive number, the session can be stopped. You can call StopStreamingSession to stop sessions in the READY state. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be stopped (instead of terminated).
|
1791
1809
|
*/
|
1792
1810
|
maxStoppedSessionLengthInMinutes?: StreamConfigurationMaxStoppedSessionLengthInMinutes;
|
1793
1811
|
/**
|
@@ -1820,7 +1838,7 @@ declare namespace Nimble {
|
|
1820
1838
|
/**
|
1821
1839
|
* A human-readable description of the streaming image.
|
1822
1840
|
*/
|
1823
|
-
description?:
|
1841
|
+
description?: StreamingImageDescription;
|
1824
1842
|
/**
|
1825
1843
|
* The ID of an EC2 machine image with which to create the streaming image.
|
1826
1844
|
*/
|
@@ -1836,7 +1854,7 @@ declare namespace Nimble {
|
|
1836
1854
|
/**
|
1837
1855
|
* A friendly name for a streaming image resource.
|
1838
1856
|
*/
|
1839
|
-
name?:
|
1857
|
+
name?: StreamingImageName;
|
1840
1858
|
/**
|
1841
1859
|
* The owner of the streaming image, either the studioId that contains the streaming image, or 'amazon' for images that are provided by Amazon Nimble Studio.
|
1842
1860
|
*/
|
@@ -1866,6 +1884,7 @@ declare namespace Nimble {
|
|
1866
1884
|
*/
|
1867
1885
|
tags?: Tags;
|
1868
1886
|
}
|
1887
|
+
export type StreamingImageDescription = string;
|
1869
1888
|
export interface StreamingImageEncryptionConfiguration {
|
1870
1889
|
/**
|
1871
1890
|
* The ARN for a KMS key that is used to encrypt studio data.
|
@@ -1881,6 +1900,7 @@ declare namespace Nimble {
|
|
1881
1900
|
export type StreamingImageId = string;
|
1882
1901
|
export type StreamingImageIdList = StreamingImageId[];
|
1883
1902
|
export type StreamingImageList = StreamingImage[];
|
1903
|
+
export type StreamingImageName = string;
|
1884
1904
|
export type StreamingImageOwner = string;
|
1885
1905
|
export type StreamingImagePlatform = string;
|
1886
1906
|
export type StreamingImageState = "CREATE_IN_PROGRESS"|"READY"|"DELETE_IN_PROGRESS"|"DELETED"|"UPDATE_IN_PROGRESS"|"UPDATE_FAILED"|"CREATE_FAILED"|"DELETE_FAILED"|string;
|
@@ -2019,7 +2039,7 @@ declare namespace Nimble {
|
|
2019
2039
|
/**
|
2020
2040
|
* The URL to connect to this stream using the DCV client.
|
2021
2041
|
*/
|
2022
|
-
url?:
|
2042
|
+
url?: SensitiveString;
|
2023
2043
|
}
|
2024
2044
|
export type StreamingSessionStreamExpirationInSeconds = number;
|
2025
2045
|
export type StreamingSessionStreamState = "READY"|"CREATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"DELETED"|"CREATE_FAILED"|"DELETE_FAILED"|string;
|
@@ -2030,7 +2050,7 @@ declare namespace Nimble {
|
|
2030
2050
|
/**
|
2031
2051
|
* The IAM role that studio admins assume when logging in to the Nimble Studio portal.
|
2032
2052
|
*/
|
2033
|
-
adminRoleArn?:
|
2053
|
+
adminRoleArn?: RoleArn;
|
2034
2054
|
/**
|
2035
2055
|
* The Amazon Resource Name (ARN) that is assigned to a studio resource and uniquely identifies it. ARNs are unique across all Regions.
|
2036
2056
|
*/
|
@@ -2042,7 +2062,7 @@ declare namespace Nimble {
|
|
2042
2062
|
/**
|
2043
2063
|
* A friendly name for the studio.
|
2044
2064
|
*/
|
2045
|
-
displayName?:
|
2065
|
+
displayName?: StudioDisplayName;
|
2046
2066
|
/**
|
2047
2067
|
* The Amazon Web Services Region where the studio resource is located.
|
2048
2068
|
*/
|
@@ -2090,7 +2110,7 @@ declare namespace Nimble {
|
|
2090
2110
|
/**
|
2091
2111
|
* The IAM role that studio users assume when logging in to the Nimble Studio portal.
|
2092
2112
|
*/
|
2093
|
-
userRoleArn?:
|
2113
|
+
userRoleArn?: RoleArn;
|
2094
2114
|
}
|
2095
2115
|
export interface StudioComponent {
|
2096
2116
|
/**
|
@@ -2125,10 +2145,18 @@ declare namespace Nimble {
|
|
2125
2145
|
* A friendly name for the studio component resource.
|
2126
2146
|
*/
|
2127
2147
|
name?: StudioComponentName;
|
2148
|
+
/**
|
2149
|
+
* An IAM role attached to a Studio Component that gives the studio component access to AWS resources at anytime while the instance is running.
|
2150
|
+
*/
|
2151
|
+
runtimeRoleArn?: RoleArn;
|
2128
2152
|
/**
|
2129
2153
|
* Parameters for the studio component scripts.
|
2130
2154
|
*/
|
2131
2155
|
scriptParameters?: StudioComponentScriptParameterKeyValueList;
|
2156
|
+
/**
|
2157
|
+
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to AWS resources when the system initialization script runs.
|
2158
|
+
*/
|
2159
|
+
secureInitializationRoleArn?: RoleArn;
|
2132
2160
|
/**
|
2133
2161
|
* The current state.
|
2134
2162
|
*/
|
@@ -2256,6 +2284,7 @@ declare namespace Nimble {
|
|
2256
2284
|
export type StudioComponentSummaryList = StudioComponentSummary[];
|
2257
2285
|
export type StudioComponentType = "ACTIVE_DIRECTORY"|"SHARED_FILE_SYSTEM"|"COMPUTE_FARM"|"LICENSE_SERVICE"|"CUSTOM"|string;
|
2258
2286
|
export type StudioComponentTypeList = StudioComponentType[];
|
2287
|
+
export type StudioDisplayName = string;
|
2259
2288
|
export interface StudioEncryptionConfiguration {
|
2260
2289
|
/**
|
2261
2290
|
* The ARN for a KMS key that is used to encrypt studio data.
|
@@ -2292,19 +2321,6 @@ declare namespace Nimble {
|
|
2292
2321
|
export type StudioPersona = "ADMINISTRATOR"|string;
|
2293
2322
|
export type StudioState = "CREATE_IN_PROGRESS"|"READY"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"DELETED"|"DELETE_FAILED"|"CREATE_FAILED"|"UPDATE_FAILED"|string;
|
2294
2323
|
export type StudioStatusCode = "STUDIO_CREATED"|"STUDIO_DELETED"|"STUDIO_UPDATED"|"STUDIO_CREATE_IN_PROGRESS"|"STUDIO_UPDATE_IN_PROGRESS"|"STUDIO_DELETE_IN_PROGRESS"|"STUDIO_WITH_LAUNCH_PROFILES_NOT_DELETED"|"STUDIO_WITH_STUDIO_COMPONENTS_NOT_DELETED"|"STUDIO_WITH_STREAMING_IMAGES_NOT_DELETED"|"AWS_SSO_NOT_ENABLED"|"AWS_SSO_ACCESS_DENIED"|"ROLE_NOT_OWNED_BY_STUDIO_OWNER"|"ROLE_COULD_NOT_BE_ASSUMED"|"INTERNAL_ERROR"|"ENCRYPTION_KEY_NOT_FOUND"|"ENCRYPTION_KEY_ACCESS_DENIED"|"AWS_SSO_CONFIGURATION_REPAIRED"|"AWS_SSO_CONFIGURATION_REPAIR_IN_PROGRESS"|string;
|
2295
|
-
export type SyntheticComputeFarmConfigurationString = string;
|
2296
|
-
export type SyntheticCreateStreamingImageRequestStreamingImageDescription = string;
|
2297
|
-
export type SyntheticCreateStreamingImageRequestStreamingImageName = string;
|
2298
|
-
export type SyntheticCreateStudioRequestStudioDisplayName = string;
|
2299
|
-
export type SyntheticLicenseServiceConfigurationString = string;
|
2300
|
-
export type SyntheticSharedFileSystemConfigurationString = string;
|
2301
|
-
export type SyntheticStreamingImageStreamingImageDescription = string;
|
2302
|
-
export type SyntheticStreamingImageStreamingImageName = string;
|
2303
|
-
export type SyntheticStreamingSessionStreamString = string;
|
2304
|
-
export type SyntheticStudioStudioDisplayName = string;
|
2305
|
-
export type SyntheticUpdateStreamingImageRequestStreamingImageDescription = string;
|
2306
|
-
export type SyntheticUpdateStreamingImageRequestStreamingImageName = string;
|
2307
|
-
export type SyntheticUpdateStudioRequestStudioDisplayName = string;
|
2308
2324
|
export interface TagResourceRequest {
|
2309
2325
|
/**
|
2310
2326
|
* The Amazon Resource Name (ARN) of the resource you want to add tags to.
|
@@ -2407,11 +2423,11 @@ declare namespace Nimble {
|
|
2407
2423
|
/**
|
2408
2424
|
* The description.
|
2409
2425
|
*/
|
2410
|
-
description?:
|
2426
|
+
description?: StreamingImageDescription;
|
2411
2427
|
/**
|
2412
2428
|
* The name for the streaming image.
|
2413
2429
|
*/
|
2414
|
-
name?:
|
2430
|
+
name?: StreamingImageName;
|
2415
2431
|
/**
|
2416
2432
|
* The streaming image ID.
|
2417
2433
|
*/
|
@@ -2449,10 +2465,18 @@ declare namespace Nimble {
|
|
2449
2465
|
* The name for the studio component.
|
2450
2466
|
*/
|
2451
2467
|
name?: StudioComponentName;
|
2468
|
+
/**
|
2469
|
+
* An IAM role attached to a Studio Component that gives the studio component access to AWS resources at anytime while the instance is running.
|
2470
|
+
*/
|
2471
|
+
runtimeRoleArn?: RoleArn;
|
2452
2472
|
/**
|
2453
2473
|
* Parameters for the studio component scripts.
|
2454
2474
|
*/
|
2455
2475
|
scriptParameters?: StudioComponentScriptParameterKeyValueList;
|
2476
|
+
/**
|
2477
|
+
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to AWS resources when the system initialization script runs.
|
2478
|
+
*/
|
2479
|
+
secureInitializationRoleArn?: RoleArn;
|
2456
2480
|
/**
|
2457
2481
|
* The studio component ID.
|
2458
2482
|
*/
|
@@ -2480,7 +2504,7 @@ declare namespace Nimble {
|
|
2480
2504
|
/**
|
2481
2505
|
* The IAM role that Studio Admins will assume when logging in to the Nimble Studio portal.
|
2482
2506
|
*/
|
2483
|
-
adminRoleArn?:
|
2507
|
+
adminRoleArn?: RoleArn;
|
2484
2508
|
/**
|
2485
2509
|
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the AWS SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
2486
2510
|
*/
|
@@ -2488,7 +2512,7 @@ declare namespace Nimble {
|
|
2488
2512
|
/**
|
2489
2513
|
* A friendly name for the studio.
|
2490
2514
|
*/
|
2491
|
-
displayName?:
|
2515
|
+
displayName?: StudioDisplayName;
|
2492
2516
|
/**
|
2493
2517
|
* The studio ID.
|
2494
2518
|
*/
|
@@ -2496,7 +2520,7 @@ declare namespace Nimble {
|
|
2496
2520
|
/**
|
2497
2521
|
* The IAM role that Studio Users will assume when logging in to the Nimble Studio portal.
|
2498
2522
|
*/
|
2499
|
-
userRoleArn?:
|
2523
|
+
userRoleArn?: RoleArn;
|
2500
2524
|
}
|
2501
2525
|
export interface UpdateStudioResponse {
|
2502
2526
|
/**
|
@@ -621,7 +621,26 @@ declare namespace Outposts {
|
|
621
621
|
* The status of the line item.
|
622
622
|
*/
|
623
623
|
Status?: LineItemStatus;
|
624
|
+
/**
|
625
|
+
* Information about a line item shipment.
|
626
|
+
*/
|
627
|
+
ShipmentInformation?: ShipmentInformation;
|
628
|
+
/**
|
629
|
+
* Information about assets.
|
630
|
+
*/
|
631
|
+
AssetInformationList?: LineItemAssetInformationList;
|
632
|
+
}
|
633
|
+
export interface LineItemAssetInformation {
|
634
|
+
/**
|
635
|
+
* The ID of the asset.
|
636
|
+
*/
|
637
|
+
AssetId?: AssetId;
|
638
|
+
/**
|
639
|
+
* MAC addresses of the asset.
|
640
|
+
*/
|
641
|
+
MacAddressList?: MacAddressList;
|
624
642
|
}
|
643
|
+
export type LineItemAssetInformationList = LineItemAssetInformation[];
|
625
644
|
export type LineItemId = string;
|
626
645
|
export type LineItemListDefinition = LineItem[];
|
627
646
|
export type LineItemQuantity = number;
|
@@ -747,6 +766,8 @@ declare namespace Outposts {
|
|
747
766
|
*/
|
748
767
|
Tags?: TagMap;
|
749
768
|
}
|
769
|
+
export type MacAddress = string;
|
770
|
+
export type MacAddressList = MacAddress[];
|
750
771
|
export type MaxResults1000 = number;
|
751
772
|
export type MaxSize = string;
|
752
773
|
export type MaximumSupportedWeightLbs = "NO_LIMIT"|"MAX_1400_LBS"|"MAX_1600_LBS"|"MAX_1800_LBS"|"MAX_2000_LBS"|string;
|
@@ -896,6 +917,17 @@ declare namespace Outposts {
|
|
896
917
|
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs;
|
897
918
|
}
|
898
919
|
export type ServerEndpoint = string;
|
920
|
+
export type ShipmentCarrier = "DHL"|"DBS"|"FEDEX"|"UPS"|string;
|
921
|
+
export interface ShipmentInformation {
|
922
|
+
/**
|
923
|
+
* The tracking number of the shipment.
|
924
|
+
*/
|
925
|
+
ShipmentTrackingNumber?: TrackingId;
|
926
|
+
/**
|
927
|
+
* The carrier of the shipment.
|
928
|
+
*/
|
929
|
+
ShipmentCarrier?: ShipmentCarrier;
|
930
|
+
}
|
899
931
|
export interface Site {
|
900
932
|
SiteId?: SiteId;
|
901
933
|
AccountId?: AccountId;
|
@@ -985,6 +1017,7 @@ declare namespace Outposts {
|
|
985
1017
|
}
|
986
1018
|
export type TagValue = string;
|
987
1019
|
export type Token = string;
|
1020
|
+
export type TrackingId = string;
|
988
1021
|
export type UnderlayIpAddress = string;
|
989
1022
|
export interface UntagResourceRequest {
|
990
1023
|
/**
|
@@ -15022,7 +15022,7 @@ declare namespace SageMaker {
|
|
15022
15022
|
*/
|
15023
15023
|
KmsKeyId?: KmsKeyId;
|
15024
15024
|
}
|
15025
|
-
export type ProductionVariantInstanceType = "ml.t2.medium"|"ml.t2.large"|"ml.t2.xlarge"|"ml.t2.2xlarge"|"ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.m5.large"|"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.12xlarge"|"ml.m5d.24xlarge"|"ml.c4.large"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.c5.large"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5d.large"|"ml.c5d.xlarge"|"ml.c5d.2xlarge"|"ml.c5d.4xlarge"|"ml.c5d.9xlarge"|"ml.c5d.18xlarge"|"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.12xlarge"|"ml.r5.24xlarge"|"ml.r5d.large"|"ml.r5d.xlarge"|"ml.r5d.2xlarge"|"ml.r5d.4xlarge"|"ml.r5d.12xlarge"|"ml.r5d.24xlarge"|"ml.inf1.xlarge"|"ml.inf1.2xlarge"|"ml.inf1.6xlarge"|"ml.inf1.24xlarge"|string;
|
15025
|
+
export type ProductionVariantInstanceType = "ml.t2.medium"|"ml.t2.large"|"ml.t2.xlarge"|"ml.t2.2xlarge"|"ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.m5.large"|"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.12xlarge"|"ml.m5d.24xlarge"|"ml.c4.large"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.c5.large"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5d.large"|"ml.c5d.xlarge"|"ml.c5d.2xlarge"|"ml.c5d.4xlarge"|"ml.c5d.9xlarge"|"ml.c5d.18xlarge"|"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.12xlarge"|"ml.r5.24xlarge"|"ml.r5d.large"|"ml.r5d.xlarge"|"ml.r5d.2xlarge"|"ml.r5d.4xlarge"|"ml.r5d.12xlarge"|"ml.r5d.24xlarge"|"ml.inf1.xlarge"|"ml.inf1.2xlarge"|"ml.inf1.6xlarge"|"ml.inf1.24xlarge"|"ml.c6i.large"|"ml.c6i.xlarge"|"ml.c6i.2xlarge"|"ml.c6i.4xlarge"|"ml.c6i.8xlarge"|"ml.c6i.12xlarge"|"ml.c6i.16xlarge"|"ml.c6i.24xlarge"|"ml.c6i.32xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.12xlarge"|"ml.g5.16xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|"ml.p4d.24xlarge"|string;
|
15026
15026
|
export type ProductionVariantList = ProductionVariant[];
|
15027
15027
|
export interface ProductionVariantServerlessConfig {
|
15028
15028
|
/**
|