aws-sdk 2.1508.0 → 2.1510.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/arc-zonal-shift-2022-10-30.min.json +319 -17
- package/apis/arc-zonal-shift-2022-10-30.paginators.json +6 -0
- package/apis/glue-2017-03-31.min.json +654 -589
- package/apis/qconnect-2020-10-19.min.json +68 -6
- package/apis/rbin-2021-06-15.min.json +12 -6
- package/apis/sagemaker-2017-07-24.min.json +1227 -992
- package/apis/verifiedpermissions-2021-12-01.min.json +44 -19
- package/clients/arczonalshift.d.ts +330 -30
- package/clients/glue.d.ts +83 -2
- package/clients/qconnect.d.ts +66 -4
- package/clients/rbin.d.ts +24 -0
- package/clients/sagemaker.d.ts +264 -2
- package/clients/verifiedpermissions.d.ts +27 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +8 -8
- 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/sagemaker.d.ts
CHANGED
@@ -2956,6 +2956,7 @@ declare namespace SageMaker {
|
|
2956
2956
|
* The name of the space.
|
2957
2957
|
*/
|
2958
2958
|
SpaceName?: SpaceName;
|
2959
|
+
ResourceSpec?: ResourceSpec;
|
2959
2960
|
}
|
2960
2961
|
export type AppImageConfigArn = string;
|
2961
2962
|
export interface AppImageConfigDetails {
|
@@ -2979,6 +2980,10 @@ declare namespace SageMaker {
|
|
2979
2980
|
* The configuration for the file system and kernels in the SageMaker image.
|
2980
2981
|
*/
|
2981
2982
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
2983
|
+
/**
|
2984
|
+
* The configuration for the file system and the runtime, such as the environment variables and entry point.
|
2985
|
+
*/
|
2986
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
2982
2987
|
}
|
2983
2988
|
export type AppImageConfigList = AppImageConfigDetails[];
|
2984
2989
|
export type AppImageConfigName = string;
|
@@ -3005,7 +3010,7 @@ declare namespace SageMaker {
|
|
3005
3010
|
ContainerArguments?: ContainerArguments;
|
3006
3011
|
}
|
3007
3012
|
export type AppStatus = "Deleted"|"Deleting"|"Failed"|"InService"|"Pending"|string;
|
3008
|
-
export type AppType = "JupyterServer"|"KernelGateway"|"TensorBoard"|"RStudioServerPro"|"RSessionGateway"|string;
|
3013
|
+
export type AppType = "JupyterServer"|"KernelGateway"|"TensorBoard"|"RStudioServerPro"|"RSessionGateway"|"JupyterLab"|"CodeEditor"|string;
|
3009
3014
|
export type ApprovalDescription = string;
|
3010
3015
|
export type ArnOrName = string;
|
3011
3016
|
export type ArtifactArn = string;
|
@@ -4279,6 +4284,13 @@ declare namespace SageMaker {
|
|
4279
4284
|
ClusterStatus: ClusterStatus;
|
4280
4285
|
}
|
4281
4286
|
export type ClusterThreadsPerCore = number;
|
4287
|
+
export interface CodeEditorAppSettings {
|
4288
|
+
DefaultResourceSpec?: ResourceSpec;
|
4289
|
+
/**
|
4290
|
+
* The Amazon Resource Name (ARN) of the Code Editor application lifecycle configuration.
|
4291
|
+
*/
|
4292
|
+
LifecycleConfigArns?: LifecycleConfigArns;
|
4293
|
+
}
|
4282
4294
|
export type CodeRepositories = CodeRepository[];
|
4283
4295
|
export interface CodeRepository {
|
4284
4296
|
/**
|
@@ -4425,6 +4437,20 @@ declare namespace SageMaker {
|
|
4425
4437
|
export type ConfigValue = string;
|
4426
4438
|
export type ContainerArgument = string;
|
4427
4439
|
export type ContainerArguments = ContainerArgument[];
|
4440
|
+
export interface ContainerConfig {
|
4441
|
+
/**
|
4442
|
+
* The arguments for the container when you're running the application.
|
4443
|
+
*/
|
4444
|
+
ContainerArguments?: CustomImageContainerArguments;
|
4445
|
+
/**
|
4446
|
+
* The entrypoint used to run the application in the container.
|
4447
|
+
*/
|
4448
|
+
ContainerEntrypoint?: CustomImageContainerEntrypoint;
|
4449
|
+
/**
|
4450
|
+
* The environment variables to set in the container
|
4451
|
+
*/
|
4452
|
+
ContainerEnvironmentVariables?: CustomImageContainerEnvironmentVariables;
|
4453
|
+
}
|
4428
4454
|
export interface ContainerDefinition {
|
4429
4455
|
/**
|
4430
4456
|
* This parameter is ignored for models that contain only a PrimaryContainer. When a ContainerDefinition is part of an inference pipeline, the value of the parameter uniquely identifies the container for the purposes of logging and metrics. For information, see Use Logs and Metrics to Monitor an Inference Pipeline. If you don't specify a value for this parameter for a ContainerDefinition that is part of an inference pipeline, a unique name is automatically assigned based on the position of the ContainerDefinition in the pipeline. If you specify a value for the ContainerHostName for any ContainerDefinition that is part of an inference pipeline, you must specify a value for the ContainerHostName parameter of every ContainerDefinition in that pipeline.
|
@@ -4643,6 +4669,10 @@ declare namespace SageMaker {
|
|
4643
4669
|
* The KernelGatewayImageConfig. You can only specify one image kernel in the AppImageConfig API. This kernel will be shown to users before the image starts. Once the image runs, all kernels are visible in JupyterLab.
|
4644
4670
|
*/
|
4645
4671
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
4672
|
+
/**
|
4673
|
+
* 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.
|
4674
|
+
*/
|
4675
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
4646
4676
|
}
|
4647
4677
|
export interface CreateAppImageConfigResponse {
|
4648
4678
|
/**
|
@@ -6237,6 +6267,18 @@ declare namespace SageMaker {
|
|
6237
6267
|
* A collection of space settings.
|
6238
6268
|
*/
|
6239
6269
|
SpaceSettings?: SpaceSettings;
|
6270
|
+
/**
|
6271
|
+
* The name of the space that appears in the SageMaker Studio UI.
|
6272
|
+
*/
|
6273
|
+
SpaceDisplayName?: NonEmptyString64;
|
6274
|
+
/**
|
6275
|
+
* A collection of ownership settings.
|
6276
|
+
*/
|
6277
|
+
OwnershipSettings?: OwnershipSettings;
|
6278
|
+
/**
|
6279
|
+
* A collection of space sharing settings.
|
6280
|
+
*/
|
6281
|
+
SpaceSharingSettings?: SpaceSharingSettings;
|
6240
6282
|
}
|
6241
6283
|
export interface CreateSpaceResponse {
|
6242
6284
|
/**
|
@@ -6584,6 +6626,20 @@ declare namespace SageMaker {
|
|
6584
6626
|
export type CrossAccountFilterOption = "SameAccount"|"CrossAccount"|string;
|
6585
6627
|
export type CsvContentType = string;
|
6586
6628
|
export type CsvContentTypes = CsvContentType[];
|
6629
|
+
export interface CustomFileSystem {
|
6630
|
+
/**
|
6631
|
+
* A custom file system in Amazon EFS.
|
6632
|
+
*/
|
6633
|
+
EFSFileSystem?: EFSFileSystem;
|
6634
|
+
}
|
6635
|
+
export interface CustomFileSystemConfig {
|
6636
|
+
/**
|
6637
|
+
* The settings for a custom Amazon EFS file system.
|
6638
|
+
*/
|
6639
|
+
EFSFileSystemConfig?: EFSFileSystemConfig;
|
6640
|
+
}
|
6641
|
+
export type CustomFileSystemConfigs = CustomFileSystemConfig[];
|
6642
|
+
export type CustomFileSystems = CustomFileSystem[];
|
6587
6643
|
export interface CustomImage {
|
6588
6644
|
/**
|
6589
6645
|
* The name of the CustomImage. Must be unique to your account.
|
@@ -6598,7 +6654,20 @@ declare namespace SageMaker {
|
|
6598
6654
|
*/
|
6599
6655
|
AppImageConfigName: AppImageConfigName;
|
6600
6656
|
}
|
6657
|
+
export type CustomImageContainerArguments = NonEmptyString64[];
|
6658
|
+
export type CustomImageContainerEntrypoint = NonEmptyString256[];
|
6659
|
+
export type CustomImageContainerEnvironmentVariables = {[key: string]: String256};
|
6601
6660
|
export type CustomImages = CustomImage[];
|
6661
|
+
export interface CustomPosixUserConfig {
|
6662
|
+
/**
|
6663
|
+
* The POSIX user ID.
|
6664
|
+
*/
|
6665
|
+
Uid: Uid;
|
6666
|
+
/**
|
6667
|
+
* The POSIX group ID.
|
6668
|
+
*/
|
6669
|
+
Gid: Gid;
|
6670
|
+
}
|
6602
6671
|
export type CustomerMetadataKey = string;
|
6603
6672
|
export type CustomerMetadataKeyList = CustomerMetadataKey[];
|
6604
6673
|
export type CustomerMetadataMap = {[key: string]: CustomerMetadataValue};
|
@@ -6837,6 +6906,16 @@ declare namespace SageMaker {
|
|
6837
6906
|
LastModifiedTime?: Timestamp;
|
6838
6907
|
}
|
6839
6908
|
export type DebugRuleEvaluationStatuses = DebugRuleEvaluationStatus[];
|
6909
|
+
export interface DefaultEbsStorageSettings {
|
6910
|
+
/**
|
6911
|
+
* The default size of the EBS storage volume for a private space.
|
6912
|
+
*/
|
6913
|
+
DefaultEbsVolumeSizeInGb: SpaceEbsVolumeSizeInGb;
|
6914
|
+
/**
|
6915
|
+
* The maximum size of the EBS storage volume for a private space.
|
6916
|
+
*/
|
6917
|
+
MaximumEbsVolumeSizeInGb: SpaceEbsVolumeSizeInGb;
|
6918
|
+
}
|
6840
6919
|
export type DefaultGid = number;
|
6841
6920
|
export interface DefaultSpaceSettings {
|
6842
6921
|
/**
|
@@ -6850,6 +6929,12 @@ declare namespace SageMaker {
|
|
6850
6929
|
JupyterServerAppSettings?: JupyterServerAppSettings;
|
6851
6930
|
KernelGatewayAppSettings?: KernelGatewayAppSettings;
|
6852
6931
|
}
|
6932
|
+
export interface DefaultSpaceStorageSettings {
|
6933
|
+
/**
|
6934
|
+
* The default EBS storage settings for a private space.
|
6935
|
+
*/
|
6936
|
+
DefaultEbsStorageSettings?: DefaultEbsStorageSettings;
|
6937
|
+
}
|
6853
6938
|
export type DefaultUid = number;
|
6854
6939
|
export interface DeleteActionRequest {
|
6855
6940
|
/**
|
@@ -7505,6 +7590,10 @@ declare namespace SageMaker {
|
|
7505
7590
|
* The configuration of a KernelGateway app.
|
7506
7591
|
*/
|
7507
7592
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
7593
|
+
/**
|
7594
|
+
* The configuration of the JupyterLab app.
|
7595
|
+
*/
|
7596
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
7508
7597
|
}
|
7509
7598
|
export interface DescribeAppRequest {
|
7510
7599
|
/**
|
@@ -10256,6 +10345,18 @@ declare namespace SageMaker {
|
|
10256
10345
|
* Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center. The following application types are supported: Studio Classic: &redirect=JupyterServer JupyterLab: &redirect=JupyterLab
|
10257
10346
|
*/
|
10258
10347
|
Url?: String1024;
|
10348
|
+
/**
|
10349
|
+
* The name of the space that appears in the Amazon SageMaker Studio UI.
|
10350
|
+
*/
|
10351
|
+
SpaceDisplayName?: NonEmptyString64;
|
10352
|
+
/**
|
10353
|
+
* The collection of ownership settings for a space.
|
10354
|
+
*/
|
10355
|
+
OwnershipSettings?: OwnershipSettings;
|
10356
|
+
/**
|
10357
|
+
* The collection of space sharing settings for a space.
|
10358
|
+
*/
|
10359
|
+
SpaceSharingSettings?: SpaceSharingSettings;
|
10259
10360
|
}
|
10260
10361
|
export interface DescribeStudioLifecycleConfigRequest {
|
10261
10362
|
/**
|
@@ -11120,6 +11221,22 @@ declare namespace SageMaker {
|
|
11120
11221
|
*/
|
11121
11222
|
ScalingPolicies?: ScalingPolicies;
|
11122
11223
|
}
|
11224
|
+
export interface EFSFileSystem {
|
11225
|
+
/**
|
11226
|
+
* The ID of your Amazon EFS file system.
|
11227
|
+
*/
|
11228
|
+
FileSystemId: FileSystemId;
|
11229
|
+
}
|
11230
|
+
export interface EFSFileSystemConfig {
|
11231
|
+
/**
|
11232
|
+
* The ID of your Amazon EFS file system.
|
11233
|
+
*/
|
11234
|
+
FileSystemId: FileSystemId;
|
11235
|
+
/**
|
11236
|
+
* The path to the file system directory that is accessible in Amazon SageMaker Studio. Permitted users can access only this directory and below.
|
11237
|
+
*/
|
11238
|
+
FileSystemPath?: FileSystemPath;
|
11239
|
+
}
|
11123
11240
|
export interface EMRStepMetadata {
|
11124
11241
|
/**
|
11125
11242
|
* The identifier of the EMR cluster.
|
@@ -11138,6 +11255,12 @@ declare namespace SageMaker {
|
|
11138
11255
|
*/
|
11139
11256
|
LogFilePath?: String1024;
|
11140
11257
|
}
|
11258
|
+
export interface EbsStorageSettings {
|
11259
|
+
/**
|
11260
|
+
* The size of an EBS storage volume for a private space.
|
11261
|
+
*/
|
11262
|
+
EbsVolumeSizeInGb: SpaceEbsVolumeSizeInGb;
|
11263
|
+
}
|
11141
11264
|
export interface Edge {
|
11142
11265
|
/**
|
11143
11266
|
* The Amazon Resource Name (ARN) of the source lineage entity of the directed edge.
|
@@ -11936,6 +12059,7 @@ declare namespace SageMaker {
|
|
11936
12059
|
DirectoryPath: DirectoryPath;
|
11937
12060
|
}
|
11938
12061
|
export type FileSystemId = string;
|
12062
|
+
export type FileSystemPath = string;
|
11939
12063
|
export type FileSystemType = "EFS"|"FSxLustre"|string;
|
11940
12064
|
export type FillingTransformationMap = {[key: string]: FillingTransformationValue};
|
11941
12065
|
export type FillingTransformationValue = string;
|
@@ -12186,6 +12310,7 @@ declare namespace SageMaker {
|
|
12186
12310
|
*/
|
12187
12311
|
PropertyNameSuggestions?: PropertyNameSuggestionList;
|
12188
12312
|
}
|
12313
|
+
export type Gid = number;
|
12189
12314
|
export interface GitConfig {
|
12190
12315
|
/**
|
12191
12316
|
* The URL where the Git repository is located.
|
@@ -13508,6 +13633,24 @@ declare namespace SageMaker {
|
|
13508
13633
|
export type JsonContentType = string;
|
13509
13634
|
export type JsonContentTypes = JsonContentType[];
|
13510
13635
|
export type JsonPath = string;
|
13636
|
+
export interface JupyterLabAppImageConfig {
|
13637
|
+
ContainerConfig?: ContainerConfig;
|
13638
|
+
}
|
13639
|
+
export interface JupyterLabAppSettings {
|
13640
|
+
DefaultResourceSpec?: ResourceSpec;
|
13641
|
+
/**
|
13642
|
+
* A list of custom SageMaker images that are configured to run as a JupyterLab app.
|
13643
|
+
*/
|
13644
|
+
CustomImages?: CustomImages;
|
13645
|
+
/**
|
13646
|
+
* The Amazon Resource Name (ARN) of the lifecycle configurations attached to the user profile or domain. To remove a lifecycle config, you must set LifecycleConfigArns to an empty list.
|
13647
|
+
*/
|
13648
|
+
LifecycleConfigArns?: LifecycleConfigArns;
|
13649
|
+
/**
|
13650
|
+
* A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.
|
13651
|
+
*/
|
13652
|
+
CodeRepositories?: CodeRepositories;
|
13653
|
+
}
|
13511
13654
|
export interface JupyterServerAppSettings {
|
13512
13655
|
/**
|
13513
13656
|
* The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterServer app. If you use the LifecycleConfigArns parameter, then this parameter is also required.
|
@@ -18722,6 +18865,8 @@ declare namespace SageMaker {
|
|
18722
18865
|
}
|
18723
18866
|
export type NetworkInterfaceId = string;
|
18724
18867
|
export type NextToken = string;
|
18868
|
+
export type NonEmptyString256 = string;
|
18869
|
+
export type NonEmptyString64 = string;
|
18725
18870
|
export type NotebookInstanceAcceleratorType = "ml.eia1.medium"|"ml.eia1.large"|"ml.eia1.xlarge"|"ml.eia2.medium"|"ml.eia2.large"|"ml.eia2.xlarge"|string;
|
18726
18871
|
export type NotebookInstanceAcceleratorTypes = NotebookInstanceAcceleratorType[];
|
18727
18872
|
export type NotebookInstanceArn = string;
|
@@ -19019,6 +19164,18 @@ declare namespace SageMaker {
|
|
19019
19164
|
Value: String1024;
|
19020
19165
|
}
|
19021
19166
|
export type OutputParameterList = OutputParameter[];
|
19167
|
+
export interface OwnershipSettings {
|
19168
|
+
/**
|
19169
|
+
* The user profile who is the owner of the private space.
|
19170
|
+
*/
|
19171
|
+
OwnerUserProfileName: UserProfileName;
|
19172
|
+
}
|
19173
|
+
export interface OwnershipSettingsSummary {
|
19174
|
+
/**
|
19175
|
+
* The user profile who is the owner of the private space.
|
19176
|
+
*/
|
19177
|
+
OwnerUserProfileName?: UserProfileName;
|
19178
|
+
}
|
19022
19179
|
export type PaginationToken = string;
|
19023
19180
|
export interface ParallelismConfiguration {
|
19024
19181
|
/**
|
@@ -21198,6 +21355,7 @@ declare namespace SageMaker {
|
|
21198
21355
|
*/
|
21199
21356
|
S3KmsKeyId?: KmsKeyId;
|
21200
21357
|
}
|
21358
|
+
export type SharingType = "Private"|"Shared"|string;
|
21201
21359
|
export interface ShuffleConfig {
|
21202
21360
|
/**
|
21203
21361
|
* Determines the shuffling order in ShuffleConfig value.
|
@@ -21247,6 +21405,9 @@ declare namespace SageMaker {
|
|
21247
21405
|
export type SourceType = string;
|
21248
21406
|
export type SourceUri = string;
|
21249
21407
|
export type SpaceArn = string;
|
21408
|
+
export interface SpaceCodeEditorAppSettings {
|
21409
|
+
DefaultResourceSpec?: ResourceSpec;
|
21410
|
+
}
|
21250
21411
|
export interface SpaceDetails {
|
21251
21412
|
/**
|
21252
21413
|
* The ID of the associated Domain.
|
@@ -21268,15 +21429,87 @@ declare namespace SageMaker {
|
|
21268
21429
|
* The last modified time.
|
21269
21430
|
*/
|
21270
21431
|
LastModifiedTime?: LastModifiedTime;
|
21432
|
+
/**
|
21433
|
+
* The name of the space that appears in the Studio UI.
|
21434
|
+
*/
|
21435
|
+
SpaceDisplayName?: NonEmptyString64;
|
21436
|
+
/**
|
21437
|
+
* Specifies summary information about the space settings.
|
21438
|
+
*/
|
21439
|
+
SpaceSettingsSummary?: SpaceSettingsSummary;
|
21440
|
+
/**
|
21441
|
+
* Specifies summary information about the space sharing settings.
|
21442
|
+
*/
|
21443
|
+
SpaceSharingSettingsSummary?: SpaceSharingSettingsSummary;
|
21444
|
+
/**
|
21445
|
+
* Specifies summary information about the ownership settings.
|
21446
|
+
*/
|
21447
|
+
OwnershipSettingsSummary?: OwnershipSettingsSummary;
|
21448
|
+
}
|
21449
|
+
export type SpaceEbsVolumeSizeInGb = number;
|
21450
|
+
export interface SpaceJupyterLabAppSettings {
|
21451
|
+
DefaultResourceSpec?: ResourceSpec;
|
21452
|
+
/**
|
21453
|
+
* A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.
|
21454
|
+
*/
|
21455
|
+
CodeRepositories?: CodeRepositories;
|
21271
21456
|
}
|
21272
21457
|
export type SpaceList = SpaceDetails[];
|
21273
21458
|
export type SpaceName = string;
|
21274
21459
|
export interface SpaceSettings {
|
21275
21460
|
JupyterServerAppSettings?: JupyterServerAppSettings;
|
21276
21461
|
KernelGatewayAppSettings?: KernelGatewayAppSettings;
|
21462
|
+
/**
|
21463
|
+
* The settings for the JupyterLab application.
|
21464
|
+
*/
|
21465
|
+
JupyterLabAppSettings?: SpaceJupyterLabAppSettings;
|
21466
|
+
/**
|
21467
|
+
* The Code Editor application settings.
|
21468
|
+
*/
|
21469
|
+
CodeEditorAppSettings?: SpaceCodeEditorAppSettings;
|
21470
|
+
/**
|
21471
|
+
* The storage settings for a private space.
|
21472
|
+
*/
|
21473
|
+
SpaceStorageSettings?: SpaceStorageSettings;
|
21474
|
+
/**
|
21475
|
+
* The type of app created within the space.
|
21476
|
+
*/
|
21477
|
+
AppType?: AppType;
|
21478
|
+
/**
|
21479
|
+
* A file system, created by you, that you assign to a space for an Amazon SageMaker Domain. Permitted users can access this file system in Amazon SageMaker Studio.
|
21480
|
+
*/
|
21481
|
+
CustomFileSystems?: CustomFileSystems;
|
21482
|
+
}
|
21483
|
+
export interface SpaceSettingsSummary {
|
21484
|
+
/**
|
21485
|
+
* The type of app created within the space.
|
21486
|
+
*/
|
21487
|
+
AppType?: AppType;
|
21488
|
+
/**
|
21489
|
+
* The storage settings for a private space.
|
21490
|
+
*/
|
21491
|
+
SpaceStorageSettings?: SpaceStorageSettings;
|
21492
|
+
}
|
21493
|
+
export interface SpaceSharingSettings {
|
21494
|
+
/**
|
21495
|
+
* Specifies the sharing type of the space.
|
21496
|
+
*/
|
21497
|
+
SharingType: SharingType;
|
21498
|
+
}
|
21499
|
+
export interface SpaceSharingSettingsSummary {
|
21500
|
+
/**
|
21501
|
+
* Specifies the sharing type of the space.
|
21502
|
+
*/
|
21503
|
+
SharingType?: SharingType;
|
21277
21504
|
}
|
21278
21505
|
export type SpaceSortKey = "CreationTime"|"LastModifiedTime"|string;
|
21279
21506
|
export type SpaceStatus = "Deleting"|"Failed"|"InService"|"Pending"|"Updating"|"Update_Failed"|"Delete_Failed"|string;
|
21507
|
+
export interface SpaceStorageSettings {
|
21508
|
+
/**
|
21509
|
+
* A collection of EBS storage settings for a private space.
|
21510
|
+
*/
|
21511
|
+
EbsStorageSettings?: EbsStorageSettings;
|
21512
|
+
}
|
21280
21513
|
export type SpawnRate = number;
|
21281
21514
|
export type SplitType = "None"|"Line"|"RecordIO"|"TFRecord"|string;
|
21282
21515
|
export type StageStatus = "CREATING"|"READYTODEPLOY"|"STARTING"|"INPROGRESS"|"DEPLOYED"|"FAILED"|"STOPPING"|"STOPPED"|string;
|
@@ -21517,7 +21750,7 @@ declare namespace SageMaker {
|
|
21517
21750
|
export type String64 = string;
|
21518
21751
|
export type String8192 = string;
|
21519
21752
|
export type StringParameterValue = string;
|
21520
|
-
export type StudioLifecycleConfigAppType = "JupyterServer"|"KernelGateway"|string;
|
21753
|
+
export type StudioLifecycleConfigAppType = "JupyterServer"|"KernelGateway"|"JupyterLab"|"CodeEditor"|string;
|
21521
21754
|
export type StudioLifecycleConfigArn = string;
|
21522
21755
|
export type StudioLifecycleConfigContent = string;
|
21523
21756
|
export interface StudioLifecycleConfigDetails {
|
@@ -22736,6 +22969,7 @@ declare namespace SageMaker {
|
|
22736
22969
|
*/
|
22737
22970
|
ContentSha256?: TemplateContentSha256;
|
22738
22971
|
}
|
22972
|
+
export type Uid = number;
|
22739
22973
|
export interface UpdateActionRequest {
|
22740
22974
|
/**
|
22741
22975
|
* The name of the action to update.
|
@@ -22773,6 +23007,10 @@ declare namespace SageMaker {
|
|
22773
23007
|
* The new KernelGateway app to run on the image.
|
22774
23008
|
*/
|
22775
23009
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
23010
|
+
/**
|
23011
|
+
* The JupyterLab app running on the image.
|
23012
|
+
*/
|
23013
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
22776
23014
|
}
|
22777
23015
|
export interface UpdateAppImageConfigResponse {
|
22778
23016
|
/**
|
@@ -23483,6 +23721,10 @@ declare namespace SageMaker {
|
|
23483
23721
|
* A collection of space settings.
|
23484
23722
|
*/
|
23485
23723
|
SpaceSettings?: SpaceSettings;
|
23724
|
+
/**
|
23725
|
+
* The name of the space that appears in the Amazon SageMaker Studio UI.
|
23726
|
+
*/
|
23727
|
+
SpaceDisplayName?: NonEmptyString64;
|
23486
23728
|
}
|
23487
23729
|
export interface UpdateSpaceResponse {
|
23488
23730
|
/**
|
@@ -23733,6 +23975,18 @@ declare namespace SageMaker {
|
|
23733
23975
|
* The Canvas app settings.
|
23734
23976
|
*/
|
23735
23977
|
CanvasAppSettings?: CanvasAppSettings;
|
23978
|
+
/**
|
23979
|
+
* The settings for the JupyterLab application.
|
23980
|
+
*/
|
23981
|
+
JupyterLabAppSettings?: JupyterLabAppSettings;
|
23982
|
+
/**
|
23983
|
+
* The Code Editor application settings.
|
23984
|
+
*/
|
23985
|
+
CodeEditorAppSettings?: CodeEditorAppSettings;
|
23986
|
+
/**
|
23987
|
+
* The storage settings for a private space.
|
23988
|
+
*/
|
23989
|
+
SpaceStorageSettings?: DefaultSpaceStorageSettings;
|
23736
23990
|
/**
|
23737
23991
|
* The default experience that the user is directed to when accessing the domain. The supported values are: studio::: Indicates that Studio is the default experience. This value can only be passed if StudioWebPortal is set to ENABLED. app:JupyterServer:: Indicates that Studio Classic is the default experience.
|
23738
23992
|
*/
|
@@ -23741,6 +23995,14 @@ declare namespace SageMaker {
|
|
23741
23995
|
* Whether the user can access Studio. If this value is set to DISABLED, the user cannot access Studio, even if that is the default experience for the domain.
|
23742
23996
|
*/
|
23743
23997
|
StudioWebPortal?: StudioWebPortal;
|
23998
|
+
/**
|
23999
|
+
* Details about the POSIX identity that is used for file system operations.
|
24000
|
+
*/
|
24001
|
+
CustomPosixUserConfig?: CustomPosixUserConfig;
|
24002
|
+
/**
|
24003
|
+
* The settings for assigning a custom file system to a user profile. Permitted users can access this file system in Amazon SageMaker Studio.
|
24004
|
+
*/
|
24005
|
+
CustomFileSystemConfigs?: CustomFileSystemConfigs;
|
23744
24006
|
}
|
23745
24007
|
export type UsersPerStep = number;
|
23746
24008
|
export type UtilizationMetric = number;
|
@@ -12,11 +12,11 @@ declare class VerifiedPermissions extends Service {
|
|
12
12
|
constructor(options?: VerifiedPermissions.Types.ClientConfiguration)
|
13
13
|
config: Config & VerifiedPermissions.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Makes a series of decisions about multiple authorization requests for one principal or resource. Each request contains the equivalent content of an IsAuthorized request: principal, action, resource, and context. Either the principal or the resource parameter must be identical across all requests. For example, Verified Permissions won't evaluate a pair of requests where bob views photo1 and alice views photo2. Authorization of bob to view photo1 and photo2, or bob and alice to view photo1, are valid batches. The request is evaluated against all policies in the specified policy store that match the entities that you declare. The result of the decisions is a series of Allow or Deny responses, along with the IDs of the policies that produced each decision. The entities of a BatchIsAuthorized API request can contain up to 100 principals and up to 100 resources. The requests of a BatchIsAuthorized API request can contain up to 30 requests.
|
15
|
+
* Makes a series of decisions about multiple authorization requests for one principal or resource. Each request contains the equivalent content of an IsAuthorized request: principal, action, resource, and context. Either the principal or the resource parameter must be identical across all requests. For example, Verified Permissions won't evaluate a pair of requests where bob views photo1 and alice views photo2. Authorization of bob to view photo1 and photo2, or bob and alice to view photo1, are valid batches. The request is evaluated against all policies in the specified policy store that match the entities that you declare. The result of the decisions is a series of Allow or Deny responses, along with the IDs of the policies that produced each decision. The entities of a BatchIsAuthorized API request can contain up to 100 principals and up to 100 resources. The requests of a BatchIsAuthorized API request can contain up to 30 requests. The BatchIsAuthorized operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals, include the permission verifiedpermissions:IsAuthorized in their IAM policies.
|
16
16
|
*/
|
17
17
|
batchIsAuthorized(params: VerifiedPermissions.Types.BatchIsAuthorizedInput, callback?: (err: AWSError, data: VerifiedPermissions.Types.BatchIsAuthorizedOutput) => void): Request<VerifiedPermissions.Types.BatchIsAuthorizedOutput, AWSError>;
|
18
18
|
/**
|
19
|
-
* Makes a series of decisions about multiple authorization requests for one principal or resource. Each request contains the equivalent content of an IsAuthorized request: principal, action, resource, and context. Either the principal or the resource parameter must be identical across all requests. For example, Verified Permissions won't evaluate a pair of requests where bob views photo1 and alice views photo2. Authorization of bob to view photo1 and photo2, or bob and alice to view photo1, are valid batches. The request is evaluated against all policies in the specified policy store that match the entities that you declare. The result of the decisions is a series of Allow or Deny responses, along with the IDs of the policies that produced each decision. The entities of a BatchIsAuthorized API request can contain up to 100 principals and up to 100 resources. The requests of a BatchIsAuthorized API request can contain up to 30 requests.
|
19
|
+
* Makes a series of decisions about multiple authorization requests for one principal or resource. Each request contains the equivalent content of an IsAuthorized request: principal, action, resource, and context. Either the principal or the resource parameter must be identical across all requests. For example, Verified Permissions won't evaluate a pair of requests where bob views photo1 and alice views photo2. Authorization of bob to view photo1 and photo2, or bob and alice to view photo1, are valid batches. The request is evaluated against all policies in the specified policy store that match the entities that you declare. The result of the decisions is a series of Allow or Deny responses, along with the IDs of the policies that produced each decision. The entities of a BatchIsAuthorized API request can contain up to 100 principals and up to 100 resources. The requests of a BatchIsAuthorized API request can contain up to 30 requests. The BatchIsAuthorized operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals, include the permission verifiedpermissions:IsAuthorized in their IAM policies.
|
20
20
|
*/
|
21
21
|
batchIsAuthorized(callback?: (err: AWSError, data: VerifiedPermissions.Types.BatchIsAuthorizedOutput) => void): Request<VerifiedPermissions.Types.BatchIsAuthorizedOutput, AWSError>;
|
22
22
|
/**
|
@@ -425,6 +425,10 @@ declare namespace VerifiedPermissions {
|
|
425
425
|
* Specifies the validation setting for this policy store. Currently, the only valid and required value is Mode. We recommend that you turn on STRICT mode only after you define a schema. If a schema doesn't exist, then STRICT mode causes any policy to fail validation, and Verified Permissions rejects the policy. You can turn off validation by using the UpdatePolicyStore. Then, when you have a schema defined, use UpdatePolicyStore again to turn validation back on.
|
426
426
|
*/
|
427
427
|
validationSettings: ValidationSettings;
|
428
|
+
/**
|
429
|
+
* Descriptive text that you can provide to help with identification of the current policy store.
|
430
|
+
*/
|
431
|
+
description?: PolicyStoreDescription;
|
428
432
|
}
|
429
433
|
export interface CreatePolicyStoreOutput {
|
430
434
|
/**
|
@@ -691,6 +695,10 @@ declare namespace VerifiedPermissions {
|
|
691
695
|
* The date and time that the policy store was last updated.
|
692
696
|
*/
|
693
697
|
lastUpdatedDate: TimestampFormat;
|
698
|
+
/**
|
699
|
+
* Descriptive text that you can provide to help with identification of the current policy store.
|
700
|
+
*/
|
701
|
+
description?: PolicyStoreDescription;
|
694
702
|
}
|
695
703
|
export interface GetPolicyTemplateInput {
|
696
704
|
/**
|
@@ -751,6 +759,10 @@ declare namespace VerifiedPermissions {
|
|
751
759
|
* The date and time that the schema was most recently updated.
|
752
760
|
*/
|
753
761
|
lastUpdatedDate: TimestampFormat;
|
762
|
+
/**
|
763
|
+
* The namespaces of the entities referenced by this schema.
|
764
|
+
*/
|
765
|
+
namespaces?: NamespaceList;
|
754
766
|
}
|
755
767
|
export type IdempotencyToken = string;
|
756
768
|
export interface IdentitySourceDetails {
|
@@ -1101,6 +1113,7 @@ declare namespace VerifiedPermissions {
|
|
1101
1113
|
}
|
1102
1114
|
export type PolicyList = PolicyItem[];
|
1103
1115
|
export type PolicyStatement = string;
|
1116
|
+
export type PolicyStoreDescription = string;
|
1104
1117
|
export type PolicyStoreId = string;
|
1105
1118
|
export interface PolicyStoreItem {
|
1106
1119
|
/**
|
@@ -1115,6 +1128,14 @@ declare namespace VerifiedPermissions {
|
|
1115
1128
|
* The date and time the policy was created.
|
1116
1129
|
*/
|
1117
1130
|
createdDate: TimestampFormat;
|
1131
|
+
/**
|
1132
|
+
* The date and time the policy store was most recently updated.
|
1133
|
+
*/
|
1134
|
+
lastUpdatedDate?: TimestampFormat;
|
1135
|
+
/**
|
1136
|
+
* Descriptive text that you can provide to help with identification of the current policy store.
|
1137
|
+
*/
|
1138
|
+
description?: PolicyStoreDescription;
|
1118
1139
|
}
|
1119
1140
|
export type PolicyStoreList = PolicyStoreItem[];
|
1120
1141
|
export type PolicyTemplateDescription = string;
|
@@ -1366,6 +1387,10 @@ declare namespace VerifiedPermissions {
|
|
1366
1387
|
* A structure that defines the validation settings that want to enable for the policy store.
|
1367
1388
|
*/
|
1368
1389
|
validationSettings: ValidationSettings;
|
1390
|
+
/**
|
1391
|
+
* Descriptive text that you can provide to help with identification of the current policy store.
|
1392
|
+
*/
|
1393
|
+
description?: PolicyStoreDescription;
|
1369
1394
|
}
|
1370
1395
|
export interface UpdatePolicyStoreOutput {
|
1371
1396
|
/**
|