aws-sdk 2.1417.0 → 2.1419.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/CHANGELOG.md +20 -1
- package/README.md +1 -1
- package/apis/cloudformation-2010-05-15.min.json +20 -4
- package/apis/codecatalyst-2022-09-28.min.json +294 -24
- package/apis/connectcases-2022-10-03.min.json +35 -25
- package/apis/grafana-2020-08-18.min.json +41 -4
- package/apis/grafana-2020-08-18.paginators.json +6 -0
- package/apis/medical-imaging-2023-07-19.examples.json +5 -0
- package/apis/medical-imaging-2023-07-19.min.json +1098 -0
- package/apis/medical-imaging-2023-07-19.paginators.json +28 -0
- package/apis/medical-imaging-2023-07-19.waiters2.json +5 -0
- package/apis/metadata.json +4 -0
- package/apis/ram-2018-01-04.min.json +49 -36
- package/apis/route53resolver-2018-04-01.min.json +201 -62
- package/apis/route53resolver-2018-04-01.paginators.json +6 -0
- package/apis/s3-2006-03-01.examples.json +32 -32
- package/apis/sagemaker-2017-07-24.min.json +205 -158
- package/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/apis/securitylake-2018-05-10.min.json +139 -34
- package/apis/ssm-sap-2018-05-10.min.json +98 -24
- package/apis/transcribe-2017-10-26.min.json +30 -6
- package/apis/wafv2-2019-07-29.min.json +134 -123
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/cloudformation.d.ts +21 -0
- package/clients/codecatalyst.d.ts +264 -7
- package/clients/connectcases.d.ts +15 -4
- package/clients/ec2.d.ts +200 -200
- package/clients/grafana.d.ts +47 -5
- package/clients/lexmodelsv2.d.ts +11 -11
- package/clients/medicalimaging.d.ts +1102 -0
- package/clients/medicalimaging.js +19 -0
- package/clients/ram.d.ts +14 -1
- package/clients/route53resolver.d.ts +220 -7
- package/clients/sagemaker.d.ts +88 -10
- package/clients/sagemakerfeaturestoreruntime.d.ts +13 -13
- package/clients/savingsplans.d.ts +1 -1
- package/clients/securitylake.d.ts +93 -11
- package/clients/ssmsap.d.ts +131 -7
- package/clients/transcribeservice.d.ts +21 -0
- package/clients/wafv2.d.ts +12 -2
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +62 -18
- package/dist/aws-sdk.js +27 -7
- package/dist/aws-sdk.min.js +97 -97
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/all.d.ts
CHANGED
@@ -349,3 +349,4 @@ export import PaymentCryptographyData = require('./paymentcryptographydata');
|
|
349
349
|
export import CodeGuruSecurity = require('./codegurusecurity');
|
350
350
|
export import VerifiedPermissions = require('./verifiedpermissions');
|
351
351
|
export import AppFabric = require('./appfabric');
|
352
|
+
export import MedicalImaging = require('./medicalimaging');
|
package/clients/all.js
CHANGED
@@ -350,5 +350,6 @@ module.exports = {
|
|
350
350
|
PaymentCryptographyData: require('./paymentcryptographydata'),
|
351
351
|
CodeGuruSecurity: require('./codegurusecurity'),
|
352
352
|
VerifiedPermissions: require('./verifiedpermissions'),
|
353
|
-
AppFabric: require('./appfabric')
|
353
|
+
AppFabric: require('./appfabric'),
|
354
|
+
MedicalImaging: require('./medicalimaging')
|
354
355
|
};
|
@@ -2080,6 +2080,10 @@ declare namespace CloudFormation {
|
|
2080
2080
|
* [Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account. By default, SELF is specified. Use SELF for stack sets with self-managed permissions. If you are signed in to the management account, specify SELF. If you are signed in to a delegated administrator account, specify DELEGATED_ADMIN. Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see Register a delegated administrator in the CloudFormation User Guide.
|
2081
2081
|
*/
|
2082
2082
|
CallAs?: CallAs;
|
2083
|
+
/**
|
2084
|
+
* Specifies options for the GetTemplateSummary API action.
|
2085
|
+
*/
|
2086
|
+
TemplateSummaryConfig?: TemplateSummaryConfig;
|
2083
2087
|
}
|
2084
2088
|
export interface GetTemplateSummaryOutput {
|
2085
2089
|
/**
|
@@ -2118,6 +2122,10 @@ declare namespace CloudFormation {
|
|
2118
2122
|
* A list of resource identifier summaries that describe the target resources of an import operation and the properties you can provide during the import to identify the target resources. For example, BucketName is a possible identifier property for an AWS::S3::Bucket resource.
|
2119
2123
|
*/
|
2120
2124
|
ResourceIdentifierSummaries?: ResourceIdentifierSummaries;
|
2125
|
+
/**
|
2126
|
+
* An object containing any warnings returned.
|
2127
|
+
*/
|
2128
|
+
Warnings?: Warnings;
|
2121
2129
|
}
|
2122
2130
|
export type HandlerErrorCode = "NotUpdatable"|"InvalidRequest"|"AccessDenied"|"InvalidCredentials"|"AlreadyExists"|"NotFound"|"ResourceConflict"|"Throttling"|"ServiceLimitExceeded"|"NotStabilized"|"GeneralServiceException"|"ServiceInternalError"|"NetworkFailure"|"InternalFailure"|"InvalidTypeConfiguration"|"HandlerInternalFailure"|"NonCompliant"|"Unknown"|"UnsupportedTarget"|string;
|
2123
2131
|
export type HookFailureMode = "FAIL"|"WARN"|string;
|
@@ -4004,6 +4012,12 @@ declare namespace CloudFormation {
|
|
4004
4012
|
}
|
4005
4013
|
export type TemplateParameters = TemplateParameter[];
|
4006
4014
|
export type TemplateStage = "Original"|"Processed"|string;
|
4015
|
+
export interface TemplateSummaryConfig {
|
4016
|
+
/**
|
4017
|
+
* If set to True, any unrecognized resource types generate warnings and not an error. Any unrecognized resource types are returned in the Warnings output parameter.
|
4018
|
+
*/
|
4019
|
+
TreatUnrecognizedResourceTypesAsWarnings?: TreatUnrecognizedResourceTypesAsWarnings;
|
4020
|
+
}
|
4007
4021
|
export type TemplateURL = string;
|
4008
4022
|
export interface TestTypeInput {
|
4009
4023
|
/**
|
@@ -4040,6 +4054,7 @@ declare namespace CloudFormation {
|
|
4040
4054
|
export type TotalStackInstancesCount = number;
|
4041
4055
|
export type TransformName = string;
|
4042
4056
|
export type TransformsList = TransformName[];
|
4057
|
+
export type TreatUnrecognizedResourceTypesAsWarnings = boolean;
|
4043
4058
|
export type Type = string;
|
4044
4059
|
export type TypeArn = string;
|
4045
4060
|
export type TypeConfiguration = string;
|
@@ -4466,6 +4481,12 @@ declare namespace CloudFormation {
|
|
4466
4481
|
export type Version = string;
|
4467
4482
|
export type VersionBump = "MAJOR"|"MINOR"|string;
|
4468
4483
|
export type Visibility = "PUBLIC"|"PRIVATE"|string;
|
4484
|
+
export interface Warnings {
|
4485
|
+
/**
|
4486
|
+
* A list of all of the unrecognized resource types. This is only returned if the TemplateSummaryConfig parameter has the TreatUnrecognizedResourceTypesAsWarning configuration set to True.
|
4487
|
+
*/
|
4488
|
+
UnrecognizedResourceTypes?: ResourceTypes;
|
4489
|
+
}
|
4469
4490
|
/**
|
4470
4491
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
4471
4492
|
*/
|
@@ -35,6 +35,14 @@ declare class CodeCatalyst extends Service {
|
|
35
35
|
* Creates a project in a specified space.
|
36
36
|
*/
|
37
37
|
createProject(callback?: (err: AWSError, data: CodeCatalyst.Types.CreateProjectResponse) => void): Request<CodeCatalyst.Types.CreateProjectResponse, AWSError>;
|
38
|
+
/**
|
39
|
+
* Creates an empty Git-based source repository in a specified project. The repository is created with an initial empty commit with a default branch named main.
|
40
|
+
*/
|
41
|
+
createSourceRepository(params: CodeCatalyst.Types.CreateSourceRepositoryRequest, callback?: (err: AWSError, data: CodeCatalyst.Types.CreateSourceRepositoryResponse) => void): Request<CodeCatalyst.Types.CreateSourceRepositoryResponse, AWSError>;
|
42
|
+
/**
|
43
|
+
* Creates an empty Git-based source repository in a specified project. The repository is created with an initial empty commit with a default branch named main.
|
44
|
+
*/
|
45
|
+
createSourceRepository(callback?: (err: AWSError, data: CodeCatalyst.Types.CreateSourceRepositoryResponse) => void): Request<CodeCatalyst.Types.CreateSourceRepositoryResponse, AWSError>;
|
38
46
|
/**
|
39
47
|
* Creates a branch in a specified source repository in Amazon CodeCatalyst. This API only creates a branch in a source repository hosted in Amazon CodeCatalyst. You cannot use this API to create a branch in a linked repository.
|
40
48
|
*/
|
@@ -59,6 +67,30 @@ declare class CodeCatalyst extends Service {
|
|
59
67
|
* Deletes a Dev Environment.
|
60
68
|
*/
|
61
69
|
deleteDevEnvironment(callback?: (err: AWSError, data: CodeCatalyst.Types.DeleteDevEnvironmentResponse) => void): Request<CodeCatalyst.Types.DeleteDevEnvironmentResponse, AWSError>;
|
70
|
+
/**
|
71
|
+
* Deletes a project in a space.
|
72
|
+
*/
|
73
|
+
deleteProject(params: CodeCatalyst.Types.DeleteProjectRequest, callback?: (err: AWSError, data: CodeCatalyst.Types.DeleteProjectResponse) => void): Request<CodeCatalyst.Types.DeleteProjectResponse, AWSError>;
|
74
|
+
/**
|
75
|
+
* Deletes a project in a space.
|
76
|
+
*/
|
77
|
+
deleteProject(callback?: (err: AWSError, data: CodeCatalyst.Types.DeleteProjectResponse) => void): Request<CodeCatalyst.Types.DeleteProjectResponse, AWSError>;
|
78
|
+
/**
|
79
|
+
* Deletes a source repository in Amazon CodeCatalyst. You cannot use this API to delete a linked repository. It can only be used to delete a Amazon CodeCatalyst source repository.
|
80
|
+
*/
|
81
|
+
deleteSourceRepository(params: CodeCatalyst.Types.DeleteSourceRepositoryRequest, callback?: (err: AWSError, data: CodeCatalyst.Types.DeleteSourceRepositoryResponse) => void): Request<CodeCatalyst.Types.DeleteSourceRepositoryResponse, AWSError>;
|
82
|
+
/**
|
83
|
+
* Deletes a source repository in Amazon CodeCatalyst. You cannot use this API to delete a linked repository. It can only be used to delete a Amazon CodeCatalyst source repository.
|
84
|
+
*/
|
85
|
+
deleteSourceRepository(callback?: (err: AWSError, data: CodeCatalyst.Types.DeleteSourceRepositoryResponse) => void): Request<CodeCatalyst.Types.DeleteSourceRepositoryResponse, AWSError>;
|
86
|
+
/**
|
87
|
+
* Deletes a space. Deleting a space cannot be undone. Additionally, since space names must be unique across Amazon CodeCatalyst, you cannot reuse names of deleted spaces.
|
88
|
+
*/
|
89
|
+
deleteSpace(params: CodeCatalyst.Types.DeleteSpaceRequest, callback?: (err: AWSError, data: CodeCatalyst.Types.DeleteSpaceResponse) => void): Request<CodeCatalyst.Types.DeleteSpaceResponse, AWSError>;
|
90
|
+
/**
|
91
|
+
* Deletes a space. Deleting a space cannot be undone. Additionally, since space names must be unique across Amazon CodeCatalyst, you cannot reuse names of deleted spaces.
|
92
|
+
*/
|
93
|
+
deleteSpace(callback?: (err: AWSError, data: CodeCatalyst.Types.DeleteSpaceResponse) => void): Request<CodeCatalyst.Types.DeleteSpaceResponse, AWSError>;
|
62
94
|
/**
|
63
95
|
* Returns information about a Dev Environment for a source repository in a project. Dev Environments are specific to the user who creates them.
|
64
96
|
*/
|
@@ -75,6 +107,14 @@ declare class CodeCatalyst extends Service {
|
|
75
107
|
* Returns information about a project.
|
76
108
|
*/
|
77
109
|
getProject(callback?: (err: AWSError, data: CodeCatalyst.Types.GetProjectResponse) => void): Request<CodeCatalyst.Types.GetProjectResponse, AWSError>;
|
110
|
+
/**
|
111
|
+
* Returns information about a source repository.
|
112
|
+
*/
|
113
|
+
getSourceRepository(params: CodeCatalyst.Types.GetSourceRepositoryRequest, callback?: (err: AWSError, data: CodeCatalyst.Types.GetSourceRepositoryResponse) => void): Request<CodeCatalyst.Types.GetSourceRepositoryResponse, AWSError>;
|
114
|
+
/**
|
115
|
+
* Returns information about a source repository.
|
116
|
+
*/
|
117
|
+
getSourceRepository(callback?: (err: AWSError, data: CodeCatalyst.Types.GetSourceRepositoryResponse) => void): Request<CodeCatalyst.Types.GetSourceRepositoryResponse, AWSError>;
|
78
118
|
/**
|
79
119
|
* Returns information about the URLs that can be used with a Git client to clone a source repository.
|
80
120
|
*/
|
@@ -211,6 +251,22 @@ declare class CodeCatalyst extends Service {
|
|
211
251
|
* Changes one or more values for a Dev Environment. Updating certain values of the Dev Environment will cause a restart.
|
212
252
|
*/
|
213
253
|
updateDevEnvironment(callback?: (err: AWSError, data: CodeCatalyst.Types.UpdateDevEnvironmentResponse) => void): Request<CodeCatalyst.Types.UpdateDevEnvironmentResponse, AWSError>;
|
254
|
+
/**
|
255
|
+
* Changes one or more values for a project.
|
256
|
+
*/
|
257
|
+
updateProject(params: CodeCatalyst.Types.UpdateProjectRequest, callback?: (err: AWSError, data: CodeCatalyst.Types.UpdateProjectResponse) => void): Request<CodeCatalyst.Types.UpdateProjectResponse, AWSError>;
|
258
|
+
/**
|
259
|
+
* Changes one or more values for a project.
|
260
|
+
*/
|
261
|
+
updateProject(callback?: (err: AWSError, data: CodeCatalyst.Types.UpdateProjectResponse) => void): Request<CodeCatalyst.Types.UpdateProjectResponse, AWSError>;
|
262
|
+
/**
|
263
|
+
* Changes one or more values for a space.
|
264
|
+
*/
|
265
|
+
updateSpace(params: CodeCatalyst.Types.UpdateSpaceRequest, callback?: (err: AWSError, data: CodeCatalyst.Types.UpdateSpaceResponse) => void): Request<CodeCatalyst.Types.UpdateSpaceResponse, AWSError>;
|
266
|
+
/**
|
267
|
+
* Changes one or more values for a space.
|
268
|
+
*/
|
269
|
+
updateSpace(callback?: (err: AWSError, data: CodeCatalyst.Types.UpdateSpaceResponse) => void): Request<CodeCatalyst.Types.UpdateSpaceResponse, AWSError>;
|
214
270
|
/**
|
215
271
|
* Verifies whether the calling user has a valid Amazon CodeCatalyst login and session. If successful, this returns the ID of the user in Amazon CodeCatalyst.
|
216
272
|
*/
|
@@ -288,7 +344,7 @@ declare namespace CodeCatalyst {
|
|
288
344
|
*/
|
289
345
|
alias?: CreateDevEnvironmentRequestAliasString;
|
290
346
|
/**
|
291
|
-
* Information about the integrated development environment (IDE) configured for a Dev Environment. An IDE is required to create a Dev Environment. For Dev Environment creation, this field contains configuration information and must be provided.
|
347
|
+
* Information about the integrated development environment (IDE) configured for a Dev Environment. An IDE is required to create a Dev Environment. For Dev Environment creation, this field contains configuration information and must be provided.
|
292
348
|
*/
|
293
349
|
ides?: IdeConfigurationList;
|
294
350
|
/**
|
@@ -391,6 +447,42 @@ declare namespace CodeCatalyst {
|
|
391
447
|
*/
|
392
448
|
headCommitId?: String;
|
393
449
|
}
|
450
|
+
export interface CreateSourceRepositoryRequest {
|
451
|
+
/**
|
452
|
+
* The name of the space.
|
453
|
+
*/
|
454
|
+
spaceName: NameString;
|
455
|
+
/**
|
456
|
+
* The name of the project in the space.
|
457
|
+
*/
|
458
|
+
projectName: NameString;
|
459
|
+
/**
|
460
|
+
* The name of the source repository. For more information about name requirements, see Quotas for source repositories.
|
461
|
+
*/
|
462
|
+
name: SourceRepositoryNameString;
|
463
|
+
/**
|
464
|
+
* The description of the source repository.
|
465
|
+
*/
|
466
|
+
description?: SourceRepositoryDescriptionString;
|
467
|
+
}
|
468
|
+
export interface CreateSourceRepositoryResponse {
|
469
|
+
/**
|
470
|
+
* The name of the space.
|
471
|
+
*/
|
472
|
+
spaceName: NameString;
|
473
|
+
/**
|
474
|
+
* The name of the project in the space.
|
475
|
+
*/
|
476
|
+
projectName: NameString;
|
477
|
+
/**
|
478
|
+
* The name of the source repository.
|
479
|
+
*/
|
480
|
+
name: SourceRepositoryNameString;
|
481
|
+
/**
|
482
|
+
* The description of the source repository.
|
483
|
+
*/
|
484
|
+
description?: SourceRepositoryDescriptionString;
|
485
|
+
}
|
394
486
|
export interface DeleteAccessTokenRequest {
|
395
487
|
/**
|
396
488
|
* The ID of the personal access token to delete. You can find the IDs of all PATs associated with your Amazon Web Services Builder ID in a space by calling ListAccessTokens.
|
@@ -427,6 +519,74 @@ declare namespace CodeCatalyst {
|
|
427
519
|
*/
|
428
520
|
id: Uuid;
|
429
521
|
}
|
522
|
+
export interface DeleteProjectRequest {
|
523
|
+
/**
|
524
|
+
* The name of the space.
|
525
|
+
*/
|
526
|
+
spaceName: NameString;
|
527
|
+
/**
|
528
|
+
* The name of the project in the space. To retrieve a list of project names, use ListProjects.
|
529
|
+
*/
|
530
|
+
name: NameString;
|
531
|
+
}
|
532
|
+
export interface DeleteProjectResponse {
|
533
|
+
/**
|
534
|
+
* The name of the space.
|
535
|
+
*/
|
536
|
+
spaceName: NameString;
|
537
|
+
/**
|
538
|
+
* The name of the project in the space.
|
539
|
+
*/
|
540
|
+
name: NameString;
|
541
|
+
/**
|
542
|
+
* The friendly name displayed to users of the project in Amazon CodeCatalyst.
|
543
|
+
*/
|
544
|
+
displayName?: String;
|
545
|
+
}
|
546
|
+
export interface DeleteSourceRepositoryRequest {
|
547
|
+
/**
|
548
|
+
* The name of the space.
|
549
|
+
*/
|
550
|
+
spaceName: NameString;
|
551
|
+
/**
|
552
|
+
* The name of the project in the space.
|
553
|
+
*/
|
554
|
+
projectName: NameString;
|
555
|
+
/**
|
556
|
+
* The name of the source repository.
|
557
|
+
*/
|
558
|
+
name: SourceRepositoryNameString;
|
559
|
+
}
|
560
|
+
export interface DeleteSourceRepositoryResponse {
|
561
|
+
/**
|
562
|
+
* The name of the space.
|
563
|
+
*/
|
564
|
+
spaceName: NameString;
|
565
|
+
/**
|
566
|
+
* The name of the project in the space.
|
567
|
+
*/
|
568
|
+
projectName: NameString;
|
569
|
+
/**
|
570
|
+
* The name of the repository.
|
571
|
+
*/
|
572
|
+
name: SourceRepositoryNameString;
|
573
|
+
}
|
574
|
+
export interface DeleteSpaceRequest {
|
575
|
+
/**
|
576
|
+
* The name of the space. To retrieve a list of space names, use ListSpaces.
|
577
|
+
*/
|
578
|
+
name: NameString;
|
579
|
+
}
|
580
|
+
export interface DeleteSpaceResponse {
|
581
|
+
/**
|
582
|
+
* The name of the space.
|
583
|
+
*/
|
584
|
+
name: NameString;
|
585
|
+
/**
|
586
|
+
* The friendly name of the space displayed to users of the space in Amazon CodeCatalyst.
|
587
|
+
*/
|
588
|
+
displayName?: String;
|
589
|
+
}
|
430
590
|
export interface DevEnvironmentAccessDetails {
|
431
591
|
/**
|
432
592
|
* The URL used to send commands to and from the Dev Environment.
|
@@ -610,7 +770,7 @@ declare namespace CodeCatalyst {
|
|
610
770
|
*/
|
611
771
|
sourceIpAddress?: String;
|
612
772
|
/**
|
613
|
-
*
|
773
|
+
* The user agent whose actions are recorded in the event.
|
614
774
|
*/
|
615
775
|
userAgent?: String;
|
616
776
|
}
|
@@ -639,15 +799,15 @@ declare namespace CodeCatalyst {
|
|
639
799
|
export type ExecuteCommandSessionConfigurationCommandString = string;
|
640
800
|
export interface Filter {
|
641
801
|
/**
|
642
|
-
*
|
802
|
+
* A key that can be used to sort results.
|
643
803
|
*/
|
644
804
|
key: String;
|
645
805
|
/**
|
646
|
-
*
|
806
|
+
* The values of the key.
|
647
807
|
*/
|
648
808
|
values: StringList;
|
649
809
|
/**
|
650
|
-
*
|
810
|
+
* The operator used to compare the fields.
|
651
811
|
*/
|
652
812
|
comparisonOperator?: String;
|
653
813
|
}
|
@@ -771,6 +931,46 @@ declare namespace CodeCatalyst {
|
|
771
931
|
*/
|
772
932
|
https: String;
|
773
933
|
}
|
934
|
+
export interface GetSourceRepositoryRequest {
|
935
|
+
/**
|
936
|
+
* The name of the space.
|
937
|
+
*/
|
938
|
+
spaceName: NameString;
|
939
|
+
/**
|
940
|
+
* The name of the project in the space.
|
941
|
+
*/
|
942
|
+
projectName: NameString;
|
943
|
+
/**
|
944
|
+
* The name of the source repository.
|
945
|
+
*/
|
946
|
+
name: SourceRepositoryNameString;
|
947
|
+
}
|
948
|
+
export interface GetSourceRepositoryResponse {
|
949
|
+
/**
|
950
|
+
* The name of the space.
|
951
|
+
*/
|
952
|
+
spaceName: NameString;
|
953
|
+
/**
|
954
|
+
* The name of the project in the space.
|
955
|
+
*/
|
956
|
+
projectName: NameString;
|
957
|
+
/**
|
958
|
+
* The name of the source repository.
|
959
|
+
*/
|
960
|
+
name: SourceRepositoryNameString;
|
961
|
+
/**
|
962
|
+
* The description of the source repository.
|
963
|
+
*/
|
964
|
+
description?: SourceRepositoryDescriptionString;
|
965
|
+
/**
|
966
|
+
* The time the source repository was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
|
967
|
+
*/
|
968
|
+
lastUpdatedTime: Timestamp;
|
969
|
+
/**
|
970
|
+
* The time the source repository was created, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
|
971
|
+
*/
|
972
|
+
createdTime: Timestamp;
|
973
|
+
}
|
774
974
|
export interface GetSpaceRequest {
|
775
975
|
/**
|
776
976
|
* The name of the space.
|
@@ -1188,7 +1388,7 @@ declare namespace CodeCatalyst {
|
|
1188
1388
|
*/
|
1189
1389
|
key: FilterKey;
|
1190
1390
|
/**
|
1191
|
-
* The
|
1391
|
+
* The values of the key.
|
1192
1392
|
*/
|
1193
1393
|
values: StringList;
|
1194
1394
|
/**
|
@@ -1230,6 +1430,7 @@ declare namespace CodeCatalyst {
|
|
1230
1430
|
export type SourceRepositoryDescriptionString = string;
|
1231
1431
|
export type SourceRepositoryIdString = string;
|
1232
1432
|
export type SourceRepositoryNameString = string;
|
1433
|
+
export type SpaceDescription = string;
|
1233
1434
|
export type SpaceSummaries = SpaceSummary[];
|
1234
1435
|
export interface SpaceSummary {
|
1235
1436
|
/**
|
@@ -1473,13 +1674,69 @@ declare namespace CodeCatalyst {
|
|
1473
1674
|
clientToken?: ClientToken;
|
1474
1675
|
}
|
1475
1676
|
export type UpdateDevEnvironmentResponseAliasString = string;
|
1677
|
+
export interface UpdateProjectRequest {
|
1678
|
+
/**
|
1679
|
+
* The name of the space.
|
1680
|
+
*/
|
1681
|
+
spaceName: NameString;
|
1682
|
+
/**
|
1683
|
+
* The name of the project.
|
1684
|
+
*/
|
1685
|
+
name: NameString;
|
1686
|
+
/**
|
1687
|
+
* The description of the project.
|
1688
|
+
*/
|
1689
|
+
description?: ProjectDescription;
|
1690
|
+
}
|
1691
|
+
export interface UpdateProjectResponse {
|
1692
|
+
/**
|
1693
|
+
* The name of the space.
|
1694
|
+
*/
|
1695
|
+
spaceName?: NameString;
|
1696
|
+
/**
|
1697
|
+
* The name of the project.
|
1698
|
+
*/
|
1699
|
+
name?: NameString;
|
1700
|
+
/**
|
1701
|
+
* The friendly name of the project displayed to users in Amazon CodeCatalyst.
|
1702
|
+
*/
|
1703
|
+
displayName?: String;
|
1704
|
+
/**
|
1705
|
+
* The description of the project.
|
1706
|
+
*/
|
1707
|
+
description?: String;
|
1708
|
+
}
|
1709
|
+
export interface UpdateSpaceRequest {
|
1710
|
+
/**
|
1711
|
+
* The name of the space.
|
1712
|
+
*/
|
1713
|
+
name: NameString;
|
1714
|
+
/**
|
1715
|
+
* The description of the space.
|
1716
|
+
*/
|
1717
|
+
description?: SpaceDescription;
|
1718
|
+
}
|
1719
|
+
export interface UpdateSpaceResponse {
|
1720
|
+
/**
|
1721
|
+
* The name of the space.
|
1722
|
+
*/
|
1723
|
+
name?: NameString;
|
1724
|
+
/**
|
1725
|
+
* The friendly name of the space displayed to users in Amazon CodeCatalyst.
|
1726
|
+
*/
|
1727
|
+
displayName?: String;
|
1728
|
+
/**
|
1729
|
+
* The description of the space.
|
1730
|
+
*/
|
1731
|
+
description?: String;
|
1732
|
+
}
|
1476
1733
|
export interface UserIdentity {
|
1477
1734
|
/**
|
1478
1735
|
* The role assigned to the user in a Amazon CodeCatalyst space or project when the event occurred.
|
1479
1736
|
*/
|
1480
1737
|
userType: UserType;
|
1481
1738
|
/**
|
1482
|
-
*
|
1739
|
+
* The ID of the Amazon CodeCatalyst service principal.
|
1483
1740
|
*/
|
1484
1741
|
principalId: String;
|
1485
1742
|
/**
|
@@ -36,11 +36,11 @@ declare class ConnectCases extends Service {
|
|
36
36
|
*/
|
37
37
|
createCase(callback?: (err: AWSError, data: ConnectCases.Types.CreateCaseResponse) => void): Request<ConnectCases.Types.CreateCaseResponse, AWSError>;
|
38
38
|
/**
|
39
|
-
* Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain. This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect CreateIntegrationAssociation API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see Onboard to Cases.
|
39
|
+
* Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain. This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect CreateIntegrationAssociation API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see Onboard to Cases. </important>
|
40
40
|
*/
|
41
41
|
createDomain(params: ConnectCases.Types.CreateDomainRequest, callback?: (err: AWSError, data: ConnectCases.Types.CreateDomainResponse) => void): Request<ConnectCases.Types.CreateDomainResponse, AWSError>;
|
42
42
|
/**
|
43
|
-
* Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain. This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect CreateIntegrationAssociation API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see Onboard to Cases.
|
43
|
+
* Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain. This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect CreateIntegrationAssociation API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see Onboard to Cases. </important>
|
44
44
|
*/
|
45
45
|
createDomain(callback?: (err: AWSError, data: ConnectCases.Types.CreateDomainResponse) => void): Request<ConnectCases.Types.CreateDomainResponse, AWSError>;
|
46
46
|
/**
|
@@ -76,11 +76,11 @@ declare class ConnectCases extends Service {
|
|
76
76
|
*/
|
77
77
|
createTemplate(callback?: (err: AWSError, data: ConnectCases.Types.CreateTemplateResponse) => void): Request<ConnectCases.Types.CreateTemplateResponse, AWSError>;
|
78
78
|
/**
|
79
|
-
* Deletes a domain.
|
79
|
+
* Deletes a Cases domain. <note> <p>After deleting your domain you must disassociate the deleted domain from your Amazon Connect instance with another API call before being able to use Cases again with this Amazon Connect instance. See <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteIntegrationAssociation.html">DeleteIntegrationAssociation</a>.</p> </note>
|
80
80
|
*/
|
81
81
|
deleteDomain(params: ConnectCases.Types.DeleteDomainRequest, callback?: (err: AWSError, data: ConnectCases.Types.DeleteDomainResponse) => void): Request<ConnectCases.Types.DeleteDomainResponse, AWSError>;
|
82
82
|
/**
|
83
|
-
* Deletes a domain.
|
83
|
+
* Deletes a Cases domain. <note> <p>After deleting your domain you must disassociate the deleted domain from your Amazon Connect instance with another API call before being able to use Cases again with this Amazon Connect instance. See <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteIntegrationAssociation.html">DeleteIntegrationAssociation</a>.</p> </note>
|
84
84
|
*/
|
85
85
|
deleteDomain(callback?: (err: AWSError, data: ConnectCases.Types.DeleteDomainResponse) => void): Request<ConnectCases.Types.DeleteDomainResponse, AWSError>;
|
86
86
|
/**
|
@@ -329,8 +329,13 @@ declare namespace ConnectCases {
|
|
329
329
|
*/
|
330
330
|
field?: FieldFilter;
|
331
331
|
not?: CaseFilter;
|
332
|
+
/**
|
333
|
+
* Provides "or all" filtering.
|
334
|
+
*/
|
335
|
+
orAll?: CaseFilterOrAllList;
|
332
336
|
}
|
333
337
|
export type CaseFilterAndAllList = CaseFilter[];
|
338
|
+
export type CaseFilterOrAllList = CaseFilter[];
|
334
339
|
export type CaseId = string;
|
335
340
|
export interface CaseSummary {
|
336
341
|
/**
|
@@ -585,6 +590,8 @@ declare namespace ConnectCases {
|
|
585
590
|
}
|
586
591
|
export type DomainSummaryList = DomainSummary[];
|
587
592
|
export type Double = number;
|
593
|
+
export interface EmptyFieldValue {
|
594
|
+
}
|
588
595
|
export interface EventBridgeConfiguration {
|
589
596
|
/**
|
590
597
|
* Indicates whether the to broadcast case event data to the customer.
|
@@ -747,6 +754,10 @@ declare namespace ConnectCases {
|
|
747
754
|
* Can be either null, or have a Double number value type. Only one value can be provided.
|
748
755
|
*/
|
749
756
|
doubleValue?: Double;
|
757
|
+
/**
|
758
|
+
* An empty value.
|
759
|
+
*/
|
760
|
+
emptyValue?: EmptyFieldValue;
|
750
761
|
/**
|
751
762
|
* String value type.
|
752
763
|
*/
|