cdk-comprehend-s3olap 2.0.102 → 2.0.103
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 +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +237 -126
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +102 -19
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +584 -572
- package/node_modules/aws-sdk/clients/comprehend.d.ts +148 -34
- package/node_modules/aws-sdk/clients/s3control.d.ts +109 -41
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +31 -10
- 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 +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk.js +240 -129
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +78 -78
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -405,11 +405,11 @@ declare class SageMaker extends Service {
|
|
405
405
|
*/
|
406
406
|
createTrialComponent(callback?: (err: AWSError, data: SageMaker.Types.CreateTrialComponentResponse) => void): Request<SageMaker.Types.CreateTrialComponentResponse, AWSError>;
|
407
407
|
/**
|
408
|
-
* Creates a user profile. A user profile represents a single user within a domain, and is the main way to reference a "person" for the purposes of sharing, reporting, and other user-oriented features. This entity is created when a user onboards to Amazon SageMaker Studio. If an administrator invites a person by email or imports them from
|
408
|
+
* Creates a user profile. A user profile represents a single user within a domain, and is the main way to reference a "person" for the purposes of sharing, reporting, and other user-oriented features. This entity is created when a user onboards to Amazon SageMaker Studio. If an administrator invites a person by email or imports them from IAM Identity Center, a user profile is automatically created. A user profile is the primary holder of settings for an individual user and has a reference to the user's private Amazon Elastic File System (EFS) home directory.
|
409
409
|
*/
|
410
410
|
createUserProfile(params: SageMaker.Types.CreateUserProfileRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateUserProfileResponse) => void): Request<SageMaker.Types.CreateUserProfileResponse, AWSError>;
|
411
411
|
/**
|
412
|
-
* Creates a user profile. A user profile represents a single user within a domain, and is the main way to reference a "person" for the purposes of sharing, reporting, and other user-oriented features. This entity is created when a user onboards to Amazon SageMaker Studio. If an administrator invites a person by email or imports them from
|
412
|
+
* Creates a user profile. A user profile represents a single user within a domain, and is the main way to reference a "person" for the purposes of sharing, reporting, and other user-oriented features. This entity is created when a user onboards to Amazon SageMaker Studio. If an administrator invites a person by email or imports them from IAM Identity Center, a user profile is automatically created. A user profile is the primary holder of settings for an individual user and has a reference to the user's private Amazon Elastic File System (EFS) home directory.
|
413
413
|
*/
|
414
414
|
createUserProfile(callback?: (err: AWSError, data: SageMaker.Types.CreateUserProfileResponse) => void): Request<SageMaker.Types.CreateUserProfileResponse, AWSError>;
|
415
415
|
/**
|
@@ -509,11 +509,11 @@ declare class SageMaker extends Service {
|
|
509
509
|
*/
|
510
510
|
deleteDeviceFleet(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
511
511
|
/**
|
512
|
-
* Used to delete a domain. If you onboarded with IAM mode, you will need to delete your domain to onboard again using
|
512
|
+
* Used to delete a domain. If you onboarded with IAM mode, you will need to delete your domain to onboard again using IAM Identity Center. Use with caution. All of the members of the domain will lose access to their EFS volume, including data, notebooks, and other artifacts.
|
513
513
|
*/
|
514
514
|
deleteDomain(params: SageMaker.Types.DeleteDomainRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
515
515
|
/**
|
516
|
-
* Used to delete a domain. If you onboarded with IAM mode, you will need to delete your domain to onboard again using
|
516
|
+
* Used to delete a domain. If you onboarded with IAM mode, you will need to delete your domain to onboard again using IAM Identity Center. Use with caution. All of the members of the domain will lose access to their EFS volume, including data, notebooks, and other artifacts.
|
517
517
|
*/
|
518
518
|
deleteDomain(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
519
519
|
/**
|
@@ -2763,7 +2763,7 @@ declare namespace SageMaker {
|
|
2763
2763
|
}
|
2764
2764
|
export interface AutoMLCandidateGenerationConfig {
|
2765
2765
|
/**
|
2766
|
-
* A URL to the Amazon S3 data source containing selected features from the input data source to run an Autopilot job
|
2766
|
+
* A URL to the Amazon S3 data source containing selected features from the input data source to run an Autopilot job. You can input FeatureAttributeNames (optional) in JSON format as shown below: { "FeatureAttributeNames":["col1", "col2", ...] }. You can also specify the data type of the feature (optional) in the format shown below: { "FeatureDataTypes":{"col1":"numeric", "col2":"categorical" ... } } These column keys may not include the target column. In ensembling mode, Autopilot will only support the following data types: numeric, categorical, text and datetime. In HPO mode, Autopilot can support numeric, categorical, text, datetime and sequence. If only FeatureDataTypes is provided, the column keys (col1, col2,..) should be a subset of the column names in the input data. If both FeatureDataTypes and FeatureAttributeNames are provided, then the column keys should be a subset of the column names provided in FeatureAttributeNames. The key name FeatureAttributeNames is fixed. The values listed in ["col1", "col2", ...] is case sensitive and should be a list of strings containing unique values that are a subset of the column names in the input data. The list of columns provided must not include the target column.
|
2767
2767
|
*/
|
2768
2768
|
FeatureSpecificationS3Uri?: S3Uri;
|
2769
2769
|
}
|
@@ -3128,6 +3128,12 @@ declare namespace SageMaker {
|
|
3128
3128
|
export type CandidateStepName = string;
|
3129
3129
|
export type CandidateStepType = "AWS::SageMaker::TrainingJob"|"AWS::SageMaker::TransformJob"|"AWS::SageMaker::ProcessingJob"|string;
|
3130
3130
|
export type CandidateSteps = AutoMLCandidateStep[];
|
3131
|
+
export interface CanvasAppSettings {
|
3132
|
+
/**
|
3133
|
+
* Time series forecast settings for the Canvas app.
|
3134
|
+
*/
|
3135
|
+
TimeSeriesForecastingSettings?: TimeSeriesForecastingSettings;
|
3136
|
+
}
|
3131
3137
|
export interface CapacitySize {
|
3132
3138
|
/**
|
3133
3139
|
* Specifies the endpoint capacity type. INSTANCE_COUNT: The endpoint activates based on the number of instances. CAPACITY_PERCENT: The endpoint activates based on the specified percentage of capacity.
|
@@ -5147,11 +5153,11 @@ declare namespace SageMaker {
|
|
5147
5153
|
*/
|
5148
5154
|
UserProfileName: UserProfileName;
|
5149
5155
|
/**
|
5150
|
-
* A specifier for the type of value specified in SingleSignOnUserValue. Currently, the only supported value is "UserName". If the Domain's AuthMode is
|
5156
|
+
* A specifier for the type of value specified in SingleSignOnUserValue. Currently, the only supported value is "UserName". If the Domain's AuthMode is IAM Identity Center, this field is required. If the Domain's AuthMode is not IAM Identity Center, this field cannot be specified.
|
5151
5157
|
*/
|
5152
5158
|
SingleSignOnUserIdentifier?: SingleSignOnUserIdentifier;
|
5153
5159
|
/**
|
5154
|
-
* The username of the associated Amazon Web Services Single Sign-On User for this UserProfile. If the Domain's AuthMode is
|
5160
|
+
* The username of the associated Amazon Web Services Single Sign-On User for this UserProfile. If the Domain's AuthMode is IAM Identity Center, this field is required, and must match a valid username of a user in your directory. If the Domain's AuthMode is not IAM Identity Center, this field cannot be specified.
|
5155
5161
|
*/
|
5156
5162
|
SingleSignOnUserValue?: String256;
|
5157
5163
|
/**
|
@@ -6540,7 +6546,7 @@ declare namespace SageMaker {
|
|
6540
6546
|
*/
|
6541
6547
|
HomeEfsFileSystemId?: ResourceId;
|
6542
6548
|
/**
|
6543
|
-
* The
|
6549
|
+
* The IAM Identity Center managed application instance ID.
|
6544
6550
|
*/
|
6545
6551
|
SingleSignOnManagedApplicationInstanceId?: String256;
|
6546
6552
|
/**
|
@@ -8566,11 +8572,11 @@ declare namespace SageMaker {
|
|
8566
8572
|
*/
|
8567
8573
|
FailureReason?: FailureReason;
|
8568
8574
|
/**
|
8569
|
-
* The
|
8575
|
+
* The IAM Identity Center user identifier.
|
8570
8576
|
*/
|
8571
8577
|
SingleSignOnUserIdentifier?: SingleSignOnUserIdentifier;
|
8572
8578
|
/**
|
8573
|
-
* The
|
8579
|
+
* The IAM Identity Center user value.
|
8574
8580
|
*/
|
8575
8581
|
SingleSignOnUserValue?: String256;
|
8576
8582
|
/**
|
@@ -9635,6 +9641,7 @@ declare namespace SageMaker {
|
|
9635
9641
|
export type FeatureParameterRemovals = FeatureParameterKey[];
|
9636
9642
|
export type FeatureParameterValue = string;
|
9637
9643
|
export type FeatureParameters = FeatureParameter[];
|
9644
|
+
export type FeatureStatus = "ENABLED"|"DISABLED"|string;
|
9638
9645
|
export type FeatureType = "Integral"|"Fractional"|"String"|string;
|
9639
9646
|
export interface FileSource {
|
9640
9647
|
/**
|
@@ -17003,6 +17010,16 @@ declare namespace SageMaker {
|
|
17003
17010
|
export type TenthFractionsOfACent = number;
|
17004
17011
|
export type TerminationWaitInSeconds = number;
|
17005
17012
|
export type ThingName = string;
|
17013
|
+
export interface TimeSeriesForecastingSettings {
|
17014
|
+
/**
|
17015
|
+
* Describes whether time series forecasting is enabled or disabled in the Canvas app.
|
17016
|
+
*/
|
17017
|
+
Status?: FeatureStatus;
|
17018
|
+
/**
|
17019
|
+
* The IAM role that Canvas passes to Amazon Forecast for time series forecasting. By default, Canvas uses the execution role specified in the UserProfile that launches the Canvas app. If an execution role is not specified in the UserProfile, Canvas uses the execution role specified in the Domain that owns the UserProfile. To allow time series forecasting, this IAM role should have the AmazonSageMakerCanvasForecastAccess policy attached and forecast.amazonaws.com added in the trust relationship as a service principal.
|
17020
|
+
*/
|
17021
|
+
AmazonForecastRoleArn?: RoleArn;
|
17022
|
+
}
|
17006
17023
|
export type Timestamp = Date;
|
17007
17024
|
export type TrafficDurationInSeconds = number;
|
17008
17025
|
export interface TrafficPattern {
|
@@ -18611,6 +18628,10 @@ declare namespace SageMaker {
|
|
18611
18628
|
* A collection of settings that configure the RSessionGateway app.
|
18612
18629
|
*/
|
18613
18630
|
RSessionAppSettings?: RSessionAppSettings;
|
18631
|
+
/**
|
18632
|
+
* The Canvas app settings.
|
18633
|
+
*/
|
18634
|
+
CanvasAppSettings?: CanvasAppSettings;
|
18614
18635
|
}
|
18615
18636
|
export type ValidationFraction = number;
|
18616
18637
|
export type VariantName = string;
|