cdk-lambda-subminute 2.0.483 → 2.0.485
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-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appconfig-2019-10-09.min.json +77 -16
- package/node_modules/aws-sdk/apis/bedrock-2023-04-20.min.json +123 -9
- package/node_modules/aws-sdk/apis/bedrock-2023-04-20.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/chatbot-2017-10-11.min.json +73 -24
- package/node_modules/aws-sdk/apis/chatbot-2017-10-11.paginators.json +14 -7
- package/node_modules/aws-sdk/apis/devicefarm-2015-06-23.examples.json +0 -2
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +6 -5
- package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.min.json +6 -1
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +47 -36
- package/node_modules/aws-sdk/apis/pcs-2023-02-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/pcs-2023-02-10.min.json +903 -0
- package/node_modules/aws-sdk/apis/pcs-2023-02-10.paginators.json +22 -0
- package/node_modules/aws-sdk/apis/pcs-2023-02-10.waiters2.json +5 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/appconfig.d.ts +58 -14
- package/node_modules/aws-sdk/clients/bedrock.d.ts +135 -2
- package/node_modules/aws-sdk/clients/chatbot.d.ts +154 -155
- package/node_modules/aws-sdk/clients/datazone.d.ts +2 -2
- package/node_modules/aws-sdk/clients/devicefarm.d.ts +12 -12
- package/node_modules/aws-sdk/clients/ec2.d.ts +8 -4
- package/node_modules/aws-sdk/clients/internetmonitor.d.ts +2 -2
- package/node_modules/aws-sdk/clients/omics.d.ts +32 -10
- package/node_modules/aws-sdk/clients/pcs.d.ts +1009 -0
- package/node_modules/aws-sdk/clients/pcs.js +19 -0
- package/node_modules/aws-sdk/clients/polly.d.ts +2 -2
- package/node_modules/aws-sdk/clients/workspaces.d.ts +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +56 -12
- package/node_modules/aws-sdk/dist/aws-sdk.js +12 -8
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +14 -14
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"pagination": {
|
3
|
+
"ListClusters": {
|
4
|
+
"input_token": "nextToken",
|
5
|
+
"output_token": "nextToken",
|
6
|
+
"limit_key": "maxResults",
|
7
|
+
"result_key": "clusters"
|
8
|
+
},
|
9
|
+
"ListComputeNodeGroups": {
|
10
|
+
"input_token": "nextToken",
|
11
|
+
"output_token": "nextToken",
|
12
|
+
"limit_key": "maxResults",
|
13
|
+
"result_key": "computeNodeGroups"
|
14
|
+
},
|
15
|
+
"ListQueues": {
|
16
|
+
"input_token": "nextToken",
|
17
|
+
"output_token": "nextToken",
|
18
|
+
"limit_key": "maxResults",
|
19
|
+
"result_key": "queues"
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
@@ -383,5 +383,6 @@ module.exports = {
|
|
383
383
|
PcaConnectorScep: require('./pcaconnectorscep'),
|
384
384
|
AppTest: require('./apptest'),
|
385
385
|
QApps: require('./qapps'),
|
386
|
-
SSMQuickSetup: require('./ssmquicksetup')
|
386
|
+
SSMQuickSetup: require('./ssmquicksetup'),
|
387
|
+
PCS: require('./pcs')
|
387
388
|
};
|
@@ -60,43 +60,43 @@ declare class AppConfig extends Service {
|
|
60
60
|
*/
|
61
61
|
createExtensionAssociation(callback?: (err: AWSError, data: AppConfig.Types.ExtensionAssociation) => void): Request<AppConfig.Types.ExtensionAssociation, AWSError>;
|
62
62
|
/**
|
63
|
-
* Creates a new configuration in the AppConfig hosted configuration store.
|
63
|
+
* Creates a new configuration in the AppConfig hosted configuration store. If you're creating a feature flag, we recommend you familiarize yourself with the JSON schema for feature flag data. For more information, see Type reference for AWS.AppConfig.FeatureFlags in the AppConfig User Guide.
|
64
64
|
*/
|
65
65
|
createHostedConfigurationVersion(params: AppConfig.Types.CreateHostedConfigurationVersionRequest, callback?: (err: AWSError, data: AppConfig.Types.HostedConfigurationVersion) => void): Request<AppConfig.Types.HostedConfigurationVersion, AWSError>;
|
66
66
|
/**
|
67
|
-
* Creates a new configuration in the AppConfig hosted configuration store.
|
67
|
+
* Creates a new configuration in the AppConfig hosted configuration store. If you're creating a feature flag, we recommend you familiarize yourself with the JSON schema for feature flag data. For more information, see Type reference for AWS.AppConfig.FeatureFlags in the AppConfig User Guide.
|
68
68
|
*/
|
69
69
|
createHostedConfigurationVersion(callback?: (err: AWSError, data: AppConfig.Types.HostedConfigurationVersion) => void): Request<AppConfig.Types.HostedConfigurationVersion, AWSError>;
|
70
70
|
/**
|
71
|
-
* Deletes an application.
|
71
|
+
* Deletes an application.
|
72
72
|
*/
|
73
73
|
deleteApplication(params: AppConfig.Types.DeleteApplicationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
74
74
|
/**
|
75
|
-
* Deletes an application.
|
75
|
+
* Deletes an application.
|
76
76
|
*/
|
77
77
|
deleteApplication(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
78
78
|
/**
|
79
|
-
* Deletes a configuration profile.
|
79
|
+
* Deletes a configuration profile. To prevent users from unintentionally deleting actively-used configuration profiles, enable deletion protection.
|
80
80
|
*/
|
81
81
|
deleteConfigurationProfile(params: AppConfig.Types.DeleteConfigurationProfileRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
82
82
|
/**
|
83
|
-
* Deletes a configuration profile.
|
83
|
+
* Deletes a configuration profile. To prevent users from unintentionally deleting actively-used configuration profiles, enable deletion protection.
|
84
84
|
*/
|
85
85
|
deleteConfigurationProfile(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
86
86
|
/**
|
87
|
-
* Deletes a deployment strategy.
|
87
|
+
* Deletes a deployment strategy.
|
88
88
|
*/
|
89
89
|
deleteDeploymentStrategy(params: AppConfig.Types.DeleteDeploymentStrategyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
90
90
|
/**
|
91
|
-
* Deletes a deployment strategy.
|
91
|
+
* Deletes a deployment strategy.
|
92
92
|
*/
|
93
93
|
deleteDeploymentStrategy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
94
94
|
/**
|
95
|
-
* Deletes an environment.
|
95
|
+
* Deletes an environment. To prevent users from unintentionally deleting actively-used environments, enable deletion protection.
|
96
96
|
*/
|
97
97
|
deleteEnvironment(params: AppConfig.Types.DeleteEnvironmentRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
98
98
|
/**
|
99
|
-
* Deletes an environment.
|
99
|
+
* Deletes an environment. To prevent users from unintentionally deleting actively-used environments, enable deletion protection.
|
100
100
|
*/
|
101
101
|
deleteEnvironment(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
102
102
|
/**
|
@@ -123,6 +123,10 @@ declare class AppConfig extends Service {
|
|
123
123
|
* Deletes a version of a configuration from the AppConfig hosted configuration store.
|
124
124
|
*/
|
125
125
|
deleteHostedConfigurationVersion(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
126
|
+
/**
|
127
|
+
* Returns information about the status of the DeletionProtection parameter.
|
128
|
+
*/
|
129
|
+
getAccountSettings(callback?: (err: AWSError, data: AppConfig.Types.AccountSettings) => void): Request<AppConfig.Types.AccountSettings, AWSError>;
|
126
130
|
/**
|
127
131
|
* Retrieves information about an application.
|
128
132
|
*/
|
@@ -299,6 +303,14 @@ declare class AppConfig extends Service {
|
|
299
303
|
* Deletes a tag key and value from an AppConfig resource.
|
300
304
|
*/
|
301
305
|
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
306
|
+
/**
|
307
|
+
* Updates the value of the DeletionProtection parameter.
|
308
|
+
*/
|
309
|
+
updateAccountSettings(params: AppConfig.Types.UpdateAccountSettingsRequest, callback?: (err: AWSError, data: AppConfig.Types.AccountSettings) => void): Request<AppConfig.Types.AccountSettings, AWSError>;
|
310
|
+
/**
|
311
|
+
* Updates the value of the DeletionProtection parameter.
|
312
|
+
*/
|
313
|
+
updateAccountSettings(callback?: (err: AWSError, data: AppConfig.Types.AccountSettings) => void): Request<AppConfig.Types.AccountSettings, AWSError>;
|
302
314
|
/**
|
303
315
|
* Updates an application.
|
304
316
|
*/
|
@@ -357,6 +369,12 @@ declare class AppConfig extends Service {
|
|
357
369
|
validateConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
358
370
|
}
|
359
371
|
declare namespace AppConfig {
|
372
|
+
export interface AccountSettings {
|
373
|
+
/**
|
374
|
+
* A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting a configuration profile or an environment if AppConfig has called either GetLatestConfiguration or for the configuration profile or from the environment during the specified interval. Deletion protection is disabled by default. The default interval for ProtectionPeriodInMinutes is 60.
|
375
|
+
*/
|
376
|
+
DeletionProtection?: DeletionProtectionSettings;
|
377
|
+
}
|
360
378
|
export interface Action {
|
361
379
|
/**
|
362
380
|
* The action name.
|
@@ -720,7 +738,7 @@ declare namespace AppConfig {
|
|
720
738
|
*/
|
721
739
|
Description?: Description;
|
722
740
|
/**
|
723
|
-
* The
|
741
|
+
* The configuration data, as bytes. AppConfig accepts any type of data, including text formats like JSON or TOML, or binary formats like protocol buffers or compressed data.
|
724
742
|
*/
|
725
743
|
Content: _Blob;
|
726
744
|
/**
|
@@ -751,6 +769,10 @@ declare namespace AppConfig {
|
|
751
769
|
* The ID of the configuration profile you want to delete.
|
752
770
|
*/
|
753
771
|
ConfigurationProfileId: Id;
|
772
|
+
/**
|
773
|
+
* A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting a configuration profile if your application has called either GetLatestConfiguration or for the configuration profile during the specified interval. This parameter supports the following values: BYPASS: Instructs AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. APPLY: Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. APPLY also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. ACCOUNT_DEFAULT: The default setting, which instructs AppConfig to implement the deletion protection value specified in the UpdateAccountSettings API.
|
774
|
+
*/
|
775
|
+
DeletionProtectionCheck?: DeletionProtectionCheck;
|
754
776
|
}
|
755
777
|
export interface DeleteDeploymentStrategyRequest {
|
756
778
|
/**
|
@@ -759,14 +781,18 @@ declare namespace AppConfig {
|
|
759
781
|
DeploymentStrategyId: DeploymentStrategyId;
|
760
782
|
}
|
761
783
|
export interface DeleteEnvironmentRequest {
|
784
|
+
/**
|
785
|
+
* The ID of the environment that you want to delete.
|
786
|
+
*/
|
787
|
+
EnvironmentId: Id;
|
762
788
|
/**
|
763
789
|
* The application ID that includes the environment that you want to delete.
|
764
790
|
*/
|
765
791
|
ApplicationId: Id;
|
766
792
|
/**
|
767
|
-
*
|
793
|
+
* A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting an environment if your application called either GetLatestConfiguration or in the environment during the specified interval. This parameter supports the following values: BYPASS: Instructs AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. APPLY: Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. APPLY also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. ACCOUNT_DEFAULT: The default setting, which instructs AppConfig to implement the deletion protection value specified in the UpdateAccountSettings API.
|
768
794
|
*/
|
769
|
-
|
795
|
+
DeletionProtectionCheck?: DeletionProtectionCheck;
|
770
796
|
}
|
771
797
|
export interface DeleteExtensionAssociationRequest {
|
772
798
|
/**
|
@@ -798,6 +824,18 @@ declare namespace AppConfig {
|
|
798
824
|
*/
|
799
825
|
VersionNumber: Integer;
|
800
826
|
}
|
827
|
+
export type DeletionProtectionCheck = "ACCOUNT_DEFAULT"|"APPLY"|"BYPASS"|string;
|
828
|
+
export type DeletionProtectionDuration = number;
|
829
|
+
export interface DeletionProtectionSettings {
|
830
|
+
/**
|
831
|
+
* A parameter that indicates if deletion protection is enabled or not.
|
832
|
+
*/
|
833
|
+
Enabled?: Boolean;
|
834
|
+
/**
|
835
|
+
* The time interval during which AppConfig monitors for calls to GetLatestConfiguration or for a configuration profile or from an environment. AppConfig returns an error if a user calls or for the designated configuration profile or environment. To bypass the error and delete a configuration profile or an environment, specify BYPASS for the DeletionProtectionCheck parameter for either or .
|
836
|
+
*/
|
837
|
+
ProtectionPeriodInMinutes?: DeletionProtectionDuration;
|
838
|
+
}
|
801
839
|
export interface Deployment {
|
802
840
|
/**
|
803
841
|
* The ID of the application that was deployed.
|
@@ -1615,6 +1653,12 @@ declare namespace AppConfig {
|
|
1615
1653
|
*/
|
1616
1654
|
TagKeys: TagKeyList;
|
1617
1655
|
}
|
1656
|
+
export interface UpdateAccountSettingsRequest {
|
1657
|
+
/**
|
1658
|
+
* A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting a configuration profile or an environment if AppConfig has called either GetLatestConfiguration or for the configuration profile or from the environment during the specified interval. Deletion protection is disabled by default. The default interval for ProtectionPeriodInMinutes is 60.
|
1659
|
+
*/
|
1660
|
+
DeletionProtection?: DeletionProtectionSettings;
|
1661
|
+
}
|
1618
1662
|
export interface UpdateApplicationRequest {
|
1619
1663
|
/**
|
1620
1664
|
* The application ID.
|
@@ -1641,7 +1685,7 @@ declare namespace AppConfig {
|
|
1641
1685
|
/**
|
1642
1686
|
* The name of the configuration profile.
|
1643
1687
|
*/
|
1644
|
-
Name?:
|
1688
|
+
Name?: LongName;
|
1645
1689
|
/**
|
1646
1690
|
* A description of the configuration profile.
|
1647
1691
|
*/
|
@@ -68,11 +68,11 @@ declare class Bedrock extends Service {
|
|
68
68
|
*/
|
69
69
|
createModelImportJob(callback?: (err: AWSError, data: Bedrock.Types.CreateModelImportJobResponse) => void): Request<Bedrock.Types.CreateModelImportJobResponse, AWSError>;
|
70
70
|
/**
|
71
|
-
* Creates a job to invoke a model on multiple prompts
|
71
|
+
* Creates a batch inference job to invoke a model on multiple prompts. Format your data according to Format your inference data and upload it to an Amazon S3 bucket. For more information, see Process multiple prompts with batch inference. The response returns a jobArn that you can use to stop or get details about the job.
|
72
72
|
*/
|
73
73
|
createModelInvocationJob(params: Bedrock.Types.CreateModelInvocationJobRequest, callback?: (err: AWSError, data: Bedrock.Types.CreateModelInvocationJobResponse) => void): Request<Bedrock.Types.CreateModelInvocationJobResponse, AWSError>;
|
74
74
|
/**
|
75
|
-
* Creates a job to invoke a model on multiple prompts
|
75
|
+
* Creates a batch inference job to invoke a model on multiple prompts. Format your data according to Format your inference data and upload it to an Amazon S3 bucket. For more information, see Process multiple prompts with batch inference. The response returns a jobArn that you can use to stop or get details about the job.
|
76
76
|
*/
|
77
77
|
createModelInvocationJob(callback?: (err: AWSError, data: Bedrock.Types.CreateModelInvocationJobResponse) => void): Request<Bedrock.Types.CreateModelInvocationJobResponse, AWSError>;
|
78
78
|
/**
|
@@ -163,6 +163,14 @@ declare class Bedrock extends Service {
|
|
163
163
|
* Gets properties associated with a customized model you imported.
|
164
164
|
*/
|
165
165
|
getImportedModel(callback?: (err: AWSError, data: Bedrock.Types.GetImportedModelResponse) => void): Request<Bedrock.Types.GetImportedModelResponse, AWSError>;
|
166
|
+
/**
|
167
|
+
* Gets information about an inference profile. For more information, see the Amazon Bedrock User Guide.
|
168
|
+
*/
|
169
|
+
getInferenceProfile(params: Bedrock.Types.GetInferenceProfileRequest, callback?: (err: AWSError, data: Bedrock.Types.GetInferenceProfileResponse) => void): Request<Bedrock.Types.GetInferenceProfileResponse, AWSError>;
|
170
|
+
/**
|
171
|
+
* Gets information about an inference profile. For more information, see the Amazon Bedrock User Guide.
|
172
|
+
*/
|
173
|
+
getInferenceProfile(callback?: (err: AWSError, data: Bedrock.Types.GetInferenceProfileResponse) => void): Request<Bedrock.Types.GetInferenceProfileResponse, AWSError>;
|
166
174
|
/**
|
167
175
|
* Retrieves information about a model copy job. For more information, see Copy models to be used in other regions in the Amazon Bedrock User Guide.
|
168
176
|
*/
|
@@ -251,6 +259,14 @@ declare class Bedrock extends Service {
|
|
251
259
|
* Returns a list of models you've imported. You can filter the results to return based on one or more criteria. For more information, see Import a customized model in the Amazon Bedrock User Guide.
|
252
260
|
*/
|
253
261
|
listImportedModels(callback?: (err: AWSError, data: Bedrock.Types.ListImportedModelsResponse) => void): Request<Bedrock.Types.ListImportedModelsResponse, AWSError>;
|
262
|
+
/**
|
263
|
+
* Returns a list of inference profiles that you can use.
|
264
|
+
*/
|
265
|
+
listInferenceProfiles(params: Bedrock.Types.ListInferenceProfilesRequest, callback?: (err: AWSError, data: Bedrock.Types.ListInferenceProfilesResponse) => void): Request<Bedrock.Types.ListInferenceProfilesResponse, AWSError>;
|
266
|
+
/**
|
267
|
+
* Returns a list of inference profiles that you can use.
|
268
|
+
*/
|
269
|
+
listInferenceProfiles(callback?: (err: AWSError, data: Bedrock.Types.ListInferenceProfilesResponse) => void): Request<Bedrock.Types.ListInferenceProfilesResponse, AWSError>;
|
254
270
|
/**
|
255
271
|
* Returns a list of model copy jobs that you have submitted. You can filter the jobs to return based on one or more criteria. For more information, see Copy models to be used in other regions in the Amazon Bedrock User Guide.
|
256
272
|
*/
|
@@ -1326,6 +1342,50 @@ declare namespace Bedrock {
|
|
1326
1342
|
*/
|
1327
1343
|
modelKmsKeyArn?: KmsKeyArn;
|
1328
1344
|
}
|
1345
|
+
export interface GetInferenceProfileRequest {
|
1346
|
+
/**
|
1347
|
+
* The unique identifier of the inference profile.
|
1348
|
+
*/
|
1349
|
+
inferenceProfileIdentifier: InferenceProfileIdentifier;
|
1350
|
+
}
|
1351
|
+
export interface GetInferenceProfileResponse {
|
1352
|
+
/**
|
1353
|
+
* The name of the inference profile.
|
1354
|
+
*/
|
1355
|
+
inferenceProfileName: InferenceProfileName;
|
1356
|
+
/**
|
1357
|
+
* A list of information about each model in the inference profile.
|
1358
|
+
*/
|
1359
|
+
models: InferenceProfileModels;
|
1360
|
+
/**
|
1361
|
+
* The description of the inference profile.
|
1362
|
+
*/
|
1363
|
+
description?: InferenceProfileDescription;
|
1364
|
+
/**
|
1365
|
+
* The time at which the inference profile was created.
|
1366
|
+
*/
|
1367
|
+
createdAt?: Timestamp;
|
1368
|
+
/**
|
1369
|
+
* The time at which the inference profile was last updated.
|
1370
|
+
*/
|
1371
|
+
updatedAt?: Timestamp;
|
1372
|
+
/**
|
1373
|
+
* The Amazon Resource Name (ARN) of the inference profile.
|
1374
|
+
*/
|
1375
|
+
inferenceProfileArn: InferenceProfileArn;
|
1376
|
+
/**
|
1377
|
+
* The unique identifier of the inference profile.
|
1378
|
+
*/
|
1379
|
+
inferenceProfileId: InferenceProfileId;
|
1380
|
+
/**
|
1381
|
+
* The status of the inference profile. ACTIVE means that the inference profile is available to use.
|
1382
|
+
*/
|
1383
|
+
status: InferenceProfileStatus;
|
1384
|
+
/**
|
1385
|
+
* The type of the inference profile. SYSTEM_DEFINED means that the inference profile is defined by Amazon Bedrock.
|
1386
|
+
*/
|
1387
|
+
type: InferenceProfileType;
|
1388
|
+
}
|
1329
1389
|
export interface GetModelCopyJobRequest {
|
1330
1390
|
/**
|
1331
1391
|
* The Amazon Resource Name (ARN) of the model copy job.
|
@@ -2045,6 +2105,59 @@ declare namespace Bedrock {
|
|
2045
2105
|
creationTime: Timestamp;
|
2046
2106
|
}
|
2047
2107
|
export type ImportedModelSummaryList = ImportedModelSummary[];
|
2108
|
+
export type InferenceProfileArn = string;
|
2109
|
+
export type InferenceProfileDescription = string;
|
2110
|
+
export type InferenceProfileId = string;
|
2111
|
+
export type InferenceProfileIdentifier = string;
|
2112
|
+
export interface InferenceProfileModel {
|
2113
|
+
/**
|
2114
|
+
* The Amazon Resource Name (ARN) of the model.
|
2115
|
+
*/
|
2116
|
+
modelArn?: FoundationModelArn;
|
2117
|
+
}
|
2118
|
+
export type InferenceProfileModels = InferenceProfileModel[];
|
2119
|
+
export type InferenceProfileName = string;
|
2120
|
+
export type InferenceProfileStatus = "ACTIVE"|string;
|
2121
|
+
export type InferenceProfileSummaries = InferenceProfileSummary[];
|
2122
|
+
export interface InferenceProfileSummary {
|
2123
|
+
/**
|
2124
|
+
* The name of the inference profile.
|
2125
|
+
*/
|
2126
|
+
inferenceProfileName: InferenceProfileName;
|
2127
|
+
/**
|
2128
|
+
* A list of information about each model in the inference profile.
|
2129
|
+
*/
|
2130
|
+
models: InferenceProfileModels;
|
2131
|
+
/**
|
2132
|
+
* The description of the inference profile.
|
2133
|
+
*/
|
2134
|
+
description?: InferenceProfileDescription;
|
2135
|
+
/**
|
2136
|
+
* The time at which the inference profile was created.
|
2137
|
+
*/
|
2138
|
+
createdAt?: Timestamp;
|
2139
|
+
/**
|
2140
|
+
* The time at which the inference profile was last updated.
|
2141
|
+
*/
|
2142
|
+
updatedAt?: Timestamp;
|
2143
|
+
/**
|
2144
|
+
* The Amazon Resource Name (ARN) of the inference profile.
|
2145
|
+
*/
|
2146
|
+
inferenceProfileArn: InferenceProfileArn;
|
2147
|
+
/**
|
2148
|
+
* The unique identifier of the inference profile.
|
2149
|
+
*/
|
2150
|
+
inferenceProfileId: InferenceProfileId;
|
2151
|
+
/**
|
2152
|
+
* The status of the inference profile. ACTIVE means that the inference profile is available to use.
|
2153
|
+
*/
|
2154
|
+
status: InferenceProfileStatus;
|
2155
|
+
/**
|
2156
|
+
* The type of the inference profile. SYSTEM_DEFINED means that the inference profile is defined by Amazon Bedrock.
|
2157
|
+
*/
|
2158
|
+
type: InferenceProfileType;
|
2159
|
+
}
|
2160
|
+
export type InferenceProfileType = "SYSTEM_DEFINED"|string;
|
2048
2161
|
export type InferenceType = "ON_DEMAND"|"PROVISIONED"|string;
|
2049
2162
|
export type InferenceTypeList = InferenceType[];
|
2050
2163
|
export type JobName = string;
|
@@ -2235,6 +2348,26 @@ declare namespace Bedrock {
|
|
2235
2348
|
*/
|
2236
2349
|
modelSummaries?: ImportedModelSummaryList;
|
2237
2350
|
}
|
2351
|
+
export interface ListInferenceProfilesRequest {
|
2352
|
+
/**
|
2353
|
+
* The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.
|
2354
|
+
*/
|
2355
|
+
maxResults?: MaxResults;
|
2356
|
+
/**
|
2357
|
+
* If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.
|
2358
|
+
*/
|
2359
|
+
nextToken?: PaginationToken;
|
2360
|
+
}
|
2361
|
+
export interface ListInferenceProfilesResponse {
|
2362
|
+
/**
|
2363
|
+
* A list of information about each inference profile that you can use.
|
2364
|
+
*/
|
2365
|
+
inferenceProfileSummaries?: InferenceProfileSummaries;
|
2366
|
+
/**
|
2367
|
+
* If the total number of results is greater than the maxResults value provided in the request, use this token when making another request in the nextToken field to return the next batch of results.
|
2368
|
+
*/
|
2369
|
+
nextToken?: PaginationToken;
|
2370
|
+
}
|
2238
2371
|
export interface ListModelCopyJobsRequest {
|
2239
2372
|
/**
|
2240
2373
|
* Filters for model copy jobs created after the specified time.
|