@aws-sdk/client-codestar-connections 3.686.0 → 3.691.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.
@@ -7,7 +7,7 @@ import { CodeStarConnectionsServiceException as __BaseException } from "./CodeSt
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- Message?: string;
10
+ Message?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -77,7 +77,7 @@ export interface CreateConnectionInput {
77
77
  * configured.</p>
78
78
  * @public
79
79
  */
80
- ProviderType?: ProviderType;
80
+ ProviderType?: ProviderType | undefined;
81
81
  /**
82
82
  * <p>The name of the connection to be created.</p>
83
83
  * @public
@@ -87,12 +87,12 @@ export interface CreateConnectionInput {
87
87
  * <p>The key-value pair to use when tagging the resource.</p>
88
88
  * @public
89
89
  */
90
- Tags?: Tag[];
90
+ Tags?: Tag[] | undefined;
91
91
  /**
92
92
  * <p>The Amazon Resource Name (ARN) of the host associated with the connection to be created.</p>
93
93
  * @public
94
94
  */
95
- HostArn?: string;
95
+ HostArn?: string | undefined;
96
96
  }
97
97
  /**
98
98
  * @public
@@ -111,7 +111,7 @@ export interface CreateConnectionOutput {
111
111
  * <p>Specifies the tags applied to the resource.</p>
112
112
  * @public
113
113
  */
114
- Tags?: Tag[];
114
+ Tags?: Tag[] | undefined;
115
115
  }
116
116
  /**
117
117
  * <p>Exceeded the maximum limit for connections.</p>
@@ -120,7 +120,7 @@ export interface CreateConnectionOutput {
120
120
  export declare class LimitExceededException extends __BaseException {
121
121
  readonly name: "LimitExceededException";
122
122
  readonly $fault: "client";
123
- Message?: string;
123
+ Message?: string | undefined;
124
124
  /**
125
125
  * @internal
126
126
  */
@@ -133,7 +133,7 @@ export declare class LimitExceededException extends __BaseException {
133
133
  export declare class ResourceNotFoundException extends __BaseException {
134
134
  readonly name: "ResourceNotFoundException";
135
135
  readonly $fault: "client";
136
- Message?: string;
136
+ Message?: string | undefined;
137
137
  /**
138
138
  * @internal
139
139
  */
@@ -146,7 +146,7 @@ export declare class ResourceNotFoundException extends __BaseException {
146
146
  export declare class ResourceUnavailableException extends __BaseException {
147
147
  readonly name: "ResourceUnavailableException";
148
148
  readonly $fault: "client";
149
- Message?: string;
149
+ Message?: string | undefined;
150
150
  /**
151
151
  * @internal
152
152
  */
@@ -179,7 +179,7 @@ export interface VpcConfiguration {
179
179
  * <p>The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.</p>
180
180
  * @public
181
181
  */
182
- TlsCertificate?: string;
182
+ TlsCertificate?: string | undefined;
183
183
  }
184
184
  /**
185
185
  * @public
@@ -208,12 +208,12 @@ export interface CreateHostInput {
208
208
  * infrastructure to be represented by the host must already be connected to the VPC.</p>
209
209
  * @public
210
210
  */
211
- VpcConfiguration?: VpcConfiguration;
211
+ VpcConfiguration?: VpcConfiguration | undefined;
212
212
  /**
213
213
  * <p>Tags for the host to be created.</p>
214
214
  * @public
215
215
  */
216
- Tags?: Tag[];
216
+ Tags?: Tag[] | undefined;
217
217
  }
218
218
  /**
219
219
  * @public
@@ -223,12 +223,12 @@ export interface CreateHostOutput {
223
223
  * <p>The Amazon Resource Name (ARN) of the host to be created.</p>
224
224
  * @public
225
225
  */
226
- HostArn?: string;
226
+ HostArn?: string | undefined;
227
227
  /**
228
228
  * <p>Tags for the created host.</p>
229
229
  * @public
230
230
  */
231
- Tags?: Tag[];
231
+ Tags?: Tag[] | undefined;
232
232
  }
233
233
  /**
234
234
  * <p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time. </p>
@@ -237,7 +237,7 @@ export interface CreateHostOutput {
237
237
  export declare class ConcurrentModificationException extends __BaseException {
238
238
  readonly name: "ConcurrentModificationException";
239
239
  readonly $fault: "client";
240
- Message?: string;
240
+ Message?: string | undefined;
241
241
  /**
242
242
  * @internal
243
243
  */
@@ -267,12 +267,12 @@ export interface CreateRepositoryLinkInput {
267
267
  * <p>The Amazon Resource Name (ARN) encryption key for the repository to be associated with the repository link.</p>
268
268
  * @public
269
269
  */
270
- EncryptionKeyArn?: string;
270
+ EncryptionKeyArn?: string | undefined;
271
271
  /**
272
272
  * <p>The tags for the repository to be associated with the repository link.</p>
273
273
  * @public
274
274
  */
275
- Tags?: Tag[];
275
+ Tags?: Tag[] | undefined;
276
276
  }
277
277
  /**
278
278
  * <p>Information about the repository link resource, such as the repository link ARN, the associated connection ARN, encryption key ARN, and owner ID.</p>
@@ -288,7 +288,7 @@ export interface RepositoryLinkInfo {
288
288
  * <p>The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link.</p>
289
289
  * @public
290
290
  */
291
- EncryptionKeyArn?: string;
291
+ EncryptionKeyArn?: string | undefined;
292
292
  /**
293
293
  * <p>The owner ID for the repository associated with the repository link, such as the owner
294
294
  * ID in GitHub.</p>
@@ -333,7 +333,7 @@ export interface CreateRepositoryLinkOutput {
333
333
  export declare class InternalServerException extends __BaseException {
334
334
  readonly name: "InternalServerException";
335
335
  readonly $fault: "server";
336
- Message?: string;
336
+ Message?: string | undefined;
337
337
  /**
338
338
  * @internal
339
339
  */
@@ -346,7 +346,7 @@ export declare class InternalServerException extends __BaseException {
346
346
  export declare class InvalidInputException extends __BaseException {
347
347
  readonly name: "InvalidInputException";
348
348
  readonly $fault: "client";
349
- Message?: string;
349
+ Message?: string | undefined;
350
350
  /**
351
351
  * @internal
352
352
  */
@@ -359,7 +359,7 @@ export declare class InvalidInputException extends __BaseException {
359
359
  export declare class ResourceAlreadyExistsException extends __BaseException {
360
360
  readonly name: "ResourceAlreadyExistsException";
361
361
  readonly $fault: "client";
362
- Message?: string;
362
+ Message?: string | undefined;
363
363
  /**
364
364
  * @internal
365
365
  */
@@ -372,7 +372,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
372
372
  export declare class ThrottlingException extends __BaseException {
373
373
  readonly name: "ThrottlingException";
374
374
  readonly $fault: "client";
375
- Message?: string;
375
+ Message?: string | undefined;
376
376
  /**
377
377
  * @internal
378
378
  */
@@ -454,12 +454,12 @@ export interface CreateSyncConfigurationInput {
454
454
  * <p>Whether to enable or disable publishing of deployment status to source providers.</p>
455
455
  * @public
456
456
  */
457
- PublishDeploymentStatus?: PublishDeploymentStatus;
457
+ PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
458
458
  /**
459
459
  * <p>When to trigger Git sync to begin the stack update.</p>
460
460
  * @public
461
461
  */
462
- TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
462
+ TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
463
463
  }
464
464
  /**
465
465
  * <p>Information, such as repository, branch, provider, and resource names for a specific sync configuration.</p>
@@ -475,7 +475,7 @@ export interface SyncConfiguration {
475
475
  * <p>The file path to the configuration file associated with a specific sync configuration. The path should point to an actual file in the sync configurations linked repository.</p>
476
476
  * @public
477
477
  */
478
- ConfigFile?: string;
478
+ ConfigFile?: string | undefined;
479
479
  /**
480
480
  * <p>The owner ID for the repository associated with a specific sync configuration, such as
481
481
  * the owner ID in GitHub.</p>
@@ -517,12 +517,12 @@ export interface SyncConfiguration {
517
517
  * <p>Whether to enable or disable publishing of deployment status to source providers.</p>
518
518
  * @public
519
519
  */
520
- PublishDeploymentStatus?: PublishDeploymentStatus;
520
+ PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
521
521
  /**
522
522
  * <p>When to trigger Git sync to begin the stack update.</p>
523
523
  * @public
524
524
  */
525
- TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
525
+ TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
526
526
  }
527
527
  /**
528
528
  * @public
@@ -590,7 +590,7 @@ export interface DeleteRepositoryLinkOutput {
590
590
  export declare class SyncConfigurationStillExistsException extends __BaseException {
591
591
  readonly name: "SyncConfigurationStillExistsException";
592
592
  readonly $fault: "client";
593
- Message?: string;
593
+ Message?: string | undefined;
594
594
  /**
595
595
  * @internal
596
596
  */
@@ -603,7 +603,7 @@ export declare class SyncConfigurationStillExistsException extends __BaseExcepti
603
603
  export declare class UnsupportedProviderTypeException extends __BaseException {
604
604
  readonly name: "UnsupportedProviderTypeException";
605
605
  readonly $fault: "client";
606
- Message?: string;
606
+ Message?: string | undefined;
607
607
  /**
608
608
  * @internal
609
609
  */
@@ -664,7 +664,7 @@ export interface Connection {
664
664
  * <p>The name of the connection. Connection names must be unique in an Amazon Web Services account.</p>
665
665
  * @public
666
666
  */
667
- ConnectionName?: string;
667
+ ConnectionName?: string | undefined;
668
668
  /**
669
669
  * <p>The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection
670
670
  * reference when the connection is shared between Amazon Web Services.</p>
@@ -673,29 +673,29 @@ export interface Connection {
673
673
  * </note>
674
674
  * @public
675
675
  */
676
- ConnectionArn?: string;
676
+ ConnectionArn?: string | undefined;
677
677
  /**
678
678
  * <p>The name of the external provider where your third-party code repository is
679
679
  * configured.</p>
680
680
  * @public
681
681
  */
682
- ProviderType?: ProviderType;
682
+ ProviderType?: ProviderType | undefined;
683
683
  /**
684
684
  * <p>The identifier of the external provider where your third-party code repository is configured.
685
685
  * For Bitbucket, this is the account ID of the owner of the Bitbucket repository.</p>
686
686
  * @public
687
687
  */
688
- OwnerAccountId?: string;
688
+ OwnerAccountId?: string | undefined;
689
689
  /**
690
690
  * <p>The current status of the connection. </p>
691
691
  * @public
692
692
  */
693
- ConnectionStatus?: ConnectionStatus;
693
+ ConnectionStatus?: ConnectionStatus | undefined;
694
694
  /**
695
695
  * <p>The Amazon Resource Name (ARN) of the host associated with the connection.</p>
696
696
  * @public
697
697
  */
698
- HostArn?: string;
698
+ HostArn?: string | undefined;
699
699
  }
700
700
  /**
701
701
  * @public
@@ -705,7 +705,7 @@ export interface GetConnectionOutput {
705
705
  * <p>The connection details, such as status, owner, and provider type.</p>
706
706
  * @public
707
707
  */
708
- Connection?: Connection;
708
+ Connection?: Connection | undefined;
709
709
  }
710
710
  /**
711
711
  * @public
@@ -725,27 +725,27 @@ export interface GetHostOutput {
725
725
  * <p>The name of the requested host.</p>
726
726
  * @public
727
727
  */
728
- Name?: string;
728
+ Name?: string | undefined;
729
729
  /**
730
730
  * <p>The status of the requested host.</p>
731
731
  * @public
732
732
  */
733
- Status?: string;
733
+ Status?: string | undefined;
734
734
  /**
735
735
  * <p>The provider type of the requested host, such as GitHub Enterprise Server.</p>
736
736
  * @public
737
737
  */
738
- ProviderType?: ProviderType;
738
+ ProviderType?: ProviderType | undefined;
739
739
  /**
740
740
  * <p>The endpoint of the infrastructure represented by the requested host.</p>
741
741
  * @public
742
742
  */
743
- ProviderEndpoint?: string;
743
+ ProviderEndpoint?: string | undefined;
744
744
  /**
745
745
  * <p>The VPC configuration of the requested host.</p>
746
746
  * @public
747
747
  */
748
- VpcConfiguration?: VpcConfiguration;
748
+ VpcConfiguration?: VpcConfiguration | undefined;
749
749
  }
750
750
  /**
751
751
  * @public
@@ -801,7 +801,7 @@ export interface RepositorySyncEvent {
801
801
  * <p>The ID for a repository sync event.</p>
802
802
  * @public
803
803
  */
804
- ExternalId?: string;
804
+ ExternalId?: string | undefined;
805
805
  /**
806
806
  * <p>The time that a repository sync event occurred.</p>
807
807
  * @public
@@ -943,7 +943,7 @@ export interface ResourceSyncEvent {
943
943
  * <p>The ID for a resource sync event.</p>
944
944
  * @public
945
945
  */
946
- ExternalId?: string;
946
+ ExternalId?: string | undefined;
947
947
  /**
948
948
  * <p>The time that a resource sync event occurred.</p>
949
949
  * @public
@@ -1030,12 +1030,12 @@ export interface GetResourceSyncStatusOutput {
1030
1030
  * repository.</p>
1031
1031
  * @public
1032
1032
  */
1033
- DesiredState?: Revision;
1033
+ DesiredState?: Revision | undefined;
1034
1034
  /**
1035
1035
  * <p>The latest successful sync for the sync status with the Git repository.</p>
1036
1036
  * @public
1037
1037
  */
1038
- LatestSuccessfulSync?: ResourceSyncAttempt;
1038
+ LatestSuccessfulSync?: ResourceSyncAttempt | undefined;
1039
1039
  /**
1040
1040
  * <p>The latest sync for the sync status with the Git repository, whether successful or not.</p>
1041
1041
  * @public
@@ -1107,17 +1107,17 @@ export interface SyncBlocker {
1107
1107
  * <p>The contexts for a specific sync blocker.</p>
1108
1108
  * @public
1109
1109
  */
1110
- Contexts?: SyncBlockerContext[];
1110
+ Contexts?: SyncBlockerContext[] | undefined;
1111
1111
  /**
1112
1112
  * <p>The resolved reason for a specific sync blocker.</p>
1113
1113
  * @public
1114
1114
  */
1115
- ResolvedReason?: string;
1115
+ ResolvedReason?: string | undefined;
1116
1116
  /**
1117
1117
  * <p>The time that a specific sync blocker was resolved.</p>
1118
1118
  * @public
1119
1119
  */
1120
- ResolvedAt?: Date;
1120
+ ResolvedAt?: Date | undefined;
1121
1121
  }
1122
1122
  /**
1123
1123
  * <p>A summary for sync blockers.</p>
@@ -1133,12 +1133,12 @@ export interface SyncBlockerSummary {
1133
1133
  * <p>The parent resource name for a sync blocker summary.</p>
1134
1134
  * @public
1135
1135
  */
1136
- ParentResourceName?: string;
1136
+ ParentResourceName?: string | undefined;
1137
1137
  /**
1138
1138
  * <p>The latest events for a sync blocker summary.</p>
1139
1139
  * @public
1140
1140
  */
1141
- LatestBlockers?: SyncBlocker[];
1141
+ LatestBlockers?: SyncBlocker[] | undefined;
1142
1142
  }
1143
1143
  /**
1144
1144
  * @public
@@ -1185,24 +1185,24 @@ export interface ListConnectionsInput {
1185
1185
  * Bitbucket.</p>
1186
1186
  * @public
1187
1187
  */
1188
- ProviderTypeFilter?: ProviderType;
1188
+ ProviderTypeFilter?: ProviderType | undefined;
1189
1189
  /**
1190
1190
  * <p>Filters the list of connections to those associated with a specified host.</p>
1191
1191
  * @public
1192
1192
  */
1193
- HostArnFilter?: string;
1193
+ HostArnFilter?: string | undefined;
1194
1194
  /**
1195
1195
  * <p>The maximum number of results to return in a single call. To retrieve the remaining
1196
1196
  * results, make another call with the returned <code>nextToken</code> value.</p>
1197
1197
  * @public
1198
1198
  */
1199
- MaxResults?: number;
1199
+ MaxResults?: number | undefined;
1200
1200
  /**
1201
1201
  * <p>The token that was returned from the previous <code>ListConnections</code> call, which
1202
1202
  * can be used to return the next set of connections in the list.</p>
1203
1203
  * @public
1204
1204
  */
1205
- NextToken?: string;
1205
+ NextToken?: string | undefined;
1206
1206
  }
1207
1207
  /**
1208
1208
  * @public
@@ -1213,14 +1213,14 @@ export interface ListConnectionsOutput {
1213
1213
  * provider type.</p>
1214
1214
  * @public
1215
1215
  */
1216
- Connections?: Connection[];
1216
+ Connections?: Connection[] | undefined;
1217
1217
  /**
1218
1218
  * <p>A token that can be used in the next <code>ListConnections</code> call. To view all
1219
1219
  * items in the list, continue to call this operation with each subsequent token until no more
1220
1220
  * <code>nextToken</code> values are returned.</p>
1221
1221
  * @public
1222
1222
  */
1223
- NextToken?: string;
1223
+ NextToken?: string | undefined;
1224
1224
  }
1225
1225
  /**
1226
1226
  * @public
@@ -1231,13 +1231,13 @@ export interface ListHostsInput {
1231
1231
  * results, make another call with the returned <code>nextToken</code> value.</p>
1232
1232
  * @public
1233
1233
  */
1234
- MaxResults?: number;
1234
+ MaxResults?: number | undefined;
1235
1235
  /**
1236
1236
  * <p>The token that was returned from the previous <code>ListHosts</code> call, which can be
1237
1237
  * used to return the next set of hosts in the list.</p>
1238
1238
  * @public
1239
1239
  */
1240
- NextToken?: string;
1240
+ NextToken?: string | undefined;
1241
1241
  }
1242
1242
  /**
1243
1243
  * <p>A resource that represents the infrastructure where a third-party provider is installed.
@@ -1254,39 +1254,39 @@ export interface Host {
1254
1254
  * <p>The name of the host.</p>
1255
1255
  * @public
1256
1256
  */
1257
- Name?: string;
1257
+ Name?: string | undefined;
1258
1258
  /**
1259
1259
  * <p>The Amazon Resource Name (ARN) of the host.</p>
1260
1260
  * @public
1261
1261
  */
1262
- HostArn?: string;
1262
+ HostArn?: string | undefined;
1263
1263
  /**
1264
1264
  * <p>The name of the installed provider to be associated with your connection. The host
1265
1265
  * resource represents the infrastructure where your provider type is installed. The valid
1266
1266
  * provider type is GitHub Enterprise Server.</p>
1267
1267
  * @public
1268
1268
  */
1269
- ProviderType?: ProviderType;
1269
+ ProviderType?: ProviderType | undefined;
1270
1270
  /**
1271
1271
  * <p>The endpoint of the infrastructure where your provider type is installed.</p>
1272
1272
  * @public
1273
1273
  */
1274
- ProviderEndpoint?: string;
1274
+ ProviderEndpoint?: string | undefined;
1275
1275
  /**
1276
1276
  * <p>The VPC configuration provisioned for the host.</p>
1277
1277
  * @public
1278
1278
  */
1279
- VpcConfiguration?: VpcConfiguration;
1279
+ VpcConfiguration?: VpcConfiguration | undefined;
1280
1280
  /**
1281
1281
  * <p>The status of the host, such as PENDING, AVAILABLE, VPC_CONFIG_DELETING, VPC_CONFIG_INITIALIZING, and VPC_CONFIG_FAILED_INITIALIZATION.</p>
1282
1282
  * @public
1283
1283
  */
1284
- Status?: string;
1284
+ Status?: string | undefined;
1285
1285
  /**
1286
1286
  * <p>The status description for the host.</p>
1287
1287
  * @public
1288
1288
  */
1289
- StatusMessage?: string;
1289
+ StatusMessage?: string | undefined;
1290
1290
  }
1291
1291
  /**
1292
1292
  * @public
@@ -1297,14 +1297,14 @@ export interface ListHostsOutput {
1297
1297
  * type.</p>
1298
1298
  * @public
1299
1299
  */
1300
- Hosts?: Host[];
1300
+ Hosts?: Host[] | undefined;
1301
1301
  /**
1302
1302
  * <p>A token that can be used in the next <code>ListHosts</code> call. To view all items in the
1303
1303
  * list, continue to call this operation with each subsequent token until no more
1304
1304
  * <code>nextToken</code> values are returned.</p>
1305
1305
  * @public
1306
1306
  */
1307
- NextToken?: string;
1307
+ NextToken?: string | undefined;
1308
1308
  }
1309
1309
  /**
1310
1310
  * @public
@@ -1315,13 +1315,13 @@ export interface ListRepositoryLinksInput {
1315
1315
  * A non-zero, non-negative integer used to limit the number of returned results.</p>
1316
1316
  * @public
1317
1317
  */
1318
- MaxResults?: number;
1318
+ MaxResults?: number | undefined;
1319
1319
  /**
1320
1320
  * <p>
1321
1321
  * An enumeration token that, when provided in a request, returns the next batch of the results.</p>
1322
1322
  * @public
1323
1323
  */
1324
- NextToken?: string;
1324
+ NextToken?: string | undefined;
1325
1325
  }
1326
1326
  /**
1327
1327
  * @public
@@ -1336,7 +1336,7 @@ export interface ListRepositoryLinksOutput {
1336
1336
  * <p>An enumeration token that allows the operation to batch the results of the operation. </p>
1337
1337
  * @public
1338
1338
  */
1339
- NextToken?: string;
1339
+ NextToken?: string | undefined;
1340
1340
  }
1341
1341
  /**
1342
1342
  * @public
@@ -1396,7 +1396,7 @@ export interface ListRepositorySyncDefinitionsOutput {
1396
1396
  * results.</p>
1397
1397
  * @public
1398
1398
  */
1399
- NextToken?: string;
1399
+ NextToken?: string | undefined;
1400
1400
  }
1401
1401
  /**
1402
1402
  * @public
@@ -1406,12 +1406,12 @@ export interface ListSyncConfigurationsInput {
1406
1406
  * <p>A non-zero, non-negative integer used to limit the number of returned results.</p>
1407
1407
  * @public
1408
1408
  */
1409
- MaxResults?: number;
1409
+ MaxResults?: number | undefined;
1410
1410
  /**
1411
1411
  * <p>An enumeration token that allows the operation to batch the results of the operation.</p>
1412
1412
  * @public
1413
1413
  */
1414
- NextToken?: string;
1414
+ NextToken?: string | undefined;
1415
1415
  /**
1416
1416
  * <p>The ID of the repository link for the requested list of sync configurations.</p>
1417
1417
  * @public
@@ -1436,7 +1436,7 @@ export interface ListSyncConfigurationsOutput {
1436
1436
  * <p>An enumeration token that allows the operation to batch the next results of the operation.</p>
1437
1437
  * @public
1438
1438
  */
1439
- NextToken?: string;
1439
+ NextToken?: string | undefined;
1440
1440
  }
1441
1441
  /**
1442
1442
  * @public
@@ -1456,7 +1456,7 @@ export interface ListTagsForResourceOutput {
1456
1456
  * <p>A list of tag key and value pairs associated with the specified resource.</p>
1457
1457
  * @public
1458
1458
  */
1459
- Tags?: Tag[];
1459
+ Tags?: Tag[] | undefined;
1460
1460
  }
1461
1461
  /**
1462
1462
  * @public
@@ -1505,7 +1505,7 @@ export interface UntagResourceOutput {
1505
1505
  export declare class ConflictException extends __BaseException {
1506
1506
  readonly name: "ConflictException";
1507
1507
  readonly $fault: "client";
1508
- Message?: string;
1508
+ Message?: string | undefined;
1509
1509
  /**
1510
1510
  * @internal
1511
1511
  */
@@ -1518,7 +1518,7 @@ export declare class ConflictException extends __BaseException {
1518
1518
  export declare class UnsupportedOperationException extends __BaseException {
1519
1519
  readonly name: "UnsupportedOperationException";
1520
1520
  readonly $fault: "client";
1521
- Message?: string;
1521
+ Message?: string | undefined;
1522
1522
  /**
1523
1523
  * @internal
1524
1524
  */
@@ -1537,13 +1537,13 @@ export interface UpdateHostInput {
1537
1537
  * <p>The URL or endpoint of the host to be updated.</p>
1538
1538
  * @public
1539
1539
  */
1540
- ProviderEndpoint?: string;
1540
+ ProviderEndpoint?: string | undefined;
1541
1541
  /**
1542
1542
  * <p>The VPC configuration of the host to be updated. A VPC must be configured and the
1543
1543
  * infrastructure to be represented by the host must already be connected to the VPC.</p>
1544
1544
  * @public
1545
1545
  */
1546
- VpcConfiguration?: VpcConfiguration;
1546
+ VpcConfiguration?: VpcConfiguration | undefined;
1547
1547
  }
1548
1548
  /**
1549
1549
  * @public
@@ -1557,7 +1557,7 @@ export interface UpdateHostOutput {
1557
1557
  export declare class ConditionalCheckFailedException extends __BaseException {
1558
1558
  readonly name: "ConditionalCheckFailedException";
1559
1559
  readonly $fault: "client";
1560
- Message?: string;
1560
+ Message?: string | undefined;
1561
1561
  /**
1562
1562
  * @internal
1563
1563
  */
@@ -1570,7 +1570,7 @@ export declare class ConditionalCheckFailedException extends __BaseException {
1570
1570
  export declare class UpdateOutOfSyncException extends __BaseException {
1571
1571
  readonly name: "UpdateOutOfSyncException";
1572
1572
  readonly $fault: "client";
1573
- Message?: string;
1573
+ Message?: string | undefined;
1574
1574
  /**
1575
1575
  * @internal
1576
1576
  */
@@ -1584,12 +1584,12 @@ export interface UpdateRepositoryLinkInput {
1584
1584
  * <p>The Amazon Resource Name (ARN) of the connection for the repository link to be updated. The updated connection ARN must have the same providerType (such as GitHub) as the original connection ARN for the repo link.</p>
1585
1585
  * @public
1586
1586
  */
1587
- ConnectionArn?: string;
1587
+ ConnectionArn?: string | undefined;
1588
1588
  /**
1589
1589
  * <p>The Amazon Resource Name (ARN) of the encryption key for the repository link to be updated.</p>
1590
1590
  * @public
1591
1591
  */
1592
- EncryptionKeyArn?: string;
1592
+ EncryptionKeyArn?: string | undefined;
1593
1593
  /**
1594
1594
  * <p>The ID of the repository link to be updated.</p>
1595
1595
  * @public
@@ -1613,7 +1613,7 @@ export interface UpdateRepositoryLinkOutput {
1613
1613
  export declare class RetryLatestCommitFailedException extends __BaseException {
1614
1614
  readonly name: "RetryLatestCommitFailedException";
1615
1615
  readonly $fault: "server";
1616
- Message?: string;
1616
+ Message?: string | undefined;
1617
1617
  /**
1618
1618
  * @internal
1619
1619
  */
@@ -1626,7 +1626,7 @@ export declare class RetryLatestCommitFailedException extends __BaseException {
1626
1626
  export declare class SyncBlockerDoesNotExistException extends __BaseException {
1627
1627
  readonly name: "SyncBlockerDoesNotExistException";
1628
1628
  readonly $fault: "client";
1629
- Message?: string;
1629
+ Message?: string | undefined;
1630
1630
  /**
1631
1631
  * @internal
1632
1632
  */
@@ -1670,7 +1670,7 @@ export interface UpdateSyncBlockerOutput {
1670
1670
  * <p>The parent resource name for the sync blocker.</p>
1671
1671
  * @public
1672
1672
  */
1673
- ParentResourceName?: string;
1673
+ ParentResourceName?: string | undefined;
1674
1674
  /**
1675
1675
  * <p>Information about the sync blocker to be updated.</p>
1676
1676
  * @public
@@ -1685,17 +1685,17 @@ export interface UpdateSyncConfigurationInput {
1685
1685
  * <p>The branch for the sync configuration to be updated.</p>
1686
1686
  * @public
1687
1687
  */
1688
- Branch?: string;
1688
+ Branch?: string | undefined;
1689
1689
  /**
1690
1690
  * <p>The configuration file for the sync configuration to be updated.</p>
1691
1691
  * @public
1692
1692
  */
1693
- ConfigFile?: string;
1693
+ ConfigFile?: string | undefined;
1694
1694
  /**
1695
1695
  * <p>The ID of the repository link for the sync configuration to be updated.</p>
1696
1696
  * @public
1697
1697
  */
1698
- RepositoryLinkId?: string;
1698
+ RepositoryLinkId?: string | undefined;
1699
1699
  /**
1700
1700
  * <p>The name of the Amazon Web Services resource for the sync configuration to be
1701
1701
  * updated.</p>
@@ -1706,7 +1706,7 @@ export interface UpdateSyncConfigurationInput {
1706
1706
  * <p>The ARN of the IAM role for the sync configuration to be updated.</p>
1707
1707
  * @public
1708
1708
  */
1709
- RoleArn?: string;
1709
+ RoleArn?: string | undefined;
1710
1710
  /**
1711
1711
  * <p>The sync type for the sync configuration to be updated.</p>
1712
1712
  * @public
@@ -1716,12 +1716,12 @@ export interface UpdateSyncConfigurationInput {
1716
1716
  * <p>Whether to enable or disable publishing of deployment status to source providers.</p>
1717
1717
  * @public
1718
1718
  */
1719
- PublishDeploymentStatus?: PublishDeploymentStatus;
1719
+ PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
1720
1720
  /**
1721
1721
  * <p>When to trigger Git sync to begin the stack update.</p>
1722
1722
  * @public
1723
1723
  */
1724
- TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
1724
+ TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
1725
1725
  }
1726
1726
  /**
1727
1727
  * @public
@@ -3,7 +3,7 @@ import { CodeStarConnectionsServiceException as __BaseException } from "./CodeSt
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- Message?: string;
6
+ Message?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
@@ -30,19 +30,19 @@ export interface Tag {
30
30
  Value: string | undefined;
31
31
  }
32
32
  export interface CreateConnectionInput {
33
- ProviderType?: ProviderType;
33
+ ProviderType?: ProviderType | undefined;
34
34
  ConnectionName: string | undefined;
35
- Tags?: Tag[];
36
- HostArn?: string;
35
+ Tags?: Tag[] | undefined;
36
+ HostArn?: string | undefined;
37
37
  }
38
38
  export interface CreateConnectionOutput {
39
39
  ConnectionArn: string | undefined;
40
- Tags?: Tag[];
40
+ Tags?: Tag[] | undefined;
41
41
  }
42
42
  export declare class LimitExceededException extends __BaseException {
43
43
  readonly name: "LimitExceededException";
44
44
  readonly $fault: "client";
45
- Message?: string;
45
+ Message?: string | undefined;
46
46
  constructor(
47
47
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
48
48
  );
@@ -50,7 +50,7 @@ export declare class LimitExceededException extends __BaseException {
50
50
  export declare class ResourceNotFoundException extends __BaseException {
51
51
  readonly name: "ResourceNotFoundException";
52
52
  readonly $fault: "client";
53
- Message?: string;
53
+ Message?: string | undefined;
54
54
  constructor(
55
55
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
56
56
  );
@@ -58,7 +58,7 @@ export declare class ResourceNotFoundException extends __BaseException {
58
58
  export declare class ResourceUnavailableException extends __BaseException {
59
59
  readonly name: "ResourceUnavailableException";
60
60
  readonly $fault: "client";
61
- Message?: string;
61
+ Message?: string | undefined;
62
62
  constructor(
63
63
  opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
64
64
  );
@@ -67,23 +67,23 @@ export interface VpcConfiguration {
67
67
  VpcId: string | undefined;
68
68
  SubnetIds: string[] | undefined;
69
69
  SecurityGroupIds: string[] | undefined;
70
- TlsCertificate?: string;
70
+ TlsCertificate?: string | undefined;
71
71
  }
72
72
  export interface CreateHostInput {
73
73
  Name: string | undefined;
74
74
  ProviderType: ProviderType | undefined;
75
75
  ProviderEndpoint: string | undefined;
76
- VpcConfiguration?: VpcConfiguration;
77
- Tags?: Tag[];
76
+ VpcConfiguration?: VpcConfiguration | undefined;
77
+ Tags?: Tag[] | undefined;
78
78
  }
79
79
  export interface CreateHostOutput {
80
- HostArn?: string;
81
- Tags?: Tag[];
80
+ HostArn?: string | undefined;
81
+ Tags?: Tag[] | undefined;
82
82
  }
83
83
  export declare class ConcurrentModificationException extends __BaseException {
84
84
  readonly name: "ConcurrentModificationException";
85
85
  readonly $fault: "client";
86
- Message?: string;
86
+ Message?: string | undefined;
87
87
  constructor(
88
88
  opts: __ExceptionOptionType<
89
89
  ConcurrentModificationException,
@@ -95,12 +95,12 @@ export interface CreateRepositoryLinkInput {
95
95
  ConnectionArn: string | undefined;
96
96
  OwnerId: string | undefined;
97
97
  RepositoryName: string | undefined;
98
- EncryptionKeyArn?: string;
99
- Tags?: Tag[];
98
+ EncryptionKeyArn?: string | undefined;
99
+ Tags?: Tag[] | undefined;
100
100
  }
101
101
  export interface RepositoryLinkInfo {
102
102
  ConnectionArn: string | undefined;
103
- EncryptionKeyArn?: string;
103
+ EncryptionKeyArn?: string | undefined;
104
104
  OwnerId: string | undefined;
105
105
  ProviderType: ProviderType | undefined;
106
106
  RepositoryLinkArn: string | undefined;
@@ -113,7 +113,7 @@ export interface CreateRepositoryLinkOutput {
113
113
  export declare class InternalServerException extends __BaseException {
114
114
  readonly name: "InternalServerException";
115
115
  readonly $fault: "server";
116
- Message?: string;
116
+ Message?: string | undefined;
117
117
  constructor(
118
118
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
119
119
  );
@@ -121,7 +121,7 @@ export declare class InternalServerException extends __BaseException {
121
121
  export declare class InvalidInputException extends __BaseException {
122
122
  readonly name: "InvalidInputException";
123
123
  readonly $fault: "client";
124
- Message?: string;
124
+ Message?: string | undefined;
125
125
  constructor(
126
126
  opts: __ExceptionOptionType<InvalidInputException, __BaseException>
127
127
  );
@@ -129,7 +129,7 @@ export declare class InvalidInputException extends __BaseException {
129
129
  export declare class ResourceAlreadyExistsException extends __BaseException {
130
130
  readonly name: "ResourceAlreadyExistsException";
131
131
  readonly $fault: "client";
132
- Message?: string;
132
+ Message?: string | undefined;
133
133
  constructor(
134
134
  opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
135
135
  );
@@ -137,7 +137,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
137
137
  export declare class ThrottlingException extends __BaseException {
138
138
  readonly name: "ThrottlingException";
139
139
  readonly $fault: "client";
140
- Message?: string;
140
+ Message?: string | undefined;
141
141
  constructor(
142
142
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
143
143
  );
@@ -166,12 +166,12 @@ export interface CreateSyncConfigurationInput {
166
166
  ResourceName: string | undefined;
167
167
  RoleArn: string | undefined;
168
168
  SyncType: SyncConfigurationType | undefined;
169
- PublishDeploymentStatus?: PublishDeploymentStatus;
170
- TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
169
+ PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
170
+ TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
171
171
  }
172
172
  export interface SyncConfiguration {
173
173
  Branch: string | undefined;
174
- ConfigFile?: string;
174
+ ConfigFile?: string | undefined;
175
175
  OwnerId: string | undefined;
176
176
  ProviderType: ProviderType | undefined;
177
177
  RepositoryLinkId: string | undefined;
@@ -179,8 +179,8 @@ export interface SyncConfiguration {
179
179
  ResourceName: string | undefined;
180
180
  RoleArn: string | undefined;
181
181
  SyncType: SyncConfigurationType | undefined;
182
- PublishDeploymentStatus?: PublishDeploymentStatus;
183
- TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
182
+ PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
183
+ TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
184
184
  }
185
185
  export interface CreateSyncConfigurationOutput {
186
186
  SyncConfiguration: SyncConfiguration | undefined;
@@ -200,7 +200,7 @@ export interface DeleteRepositoryLinkOutput {}
200
200
  export declare class SyncConfigurationStillExistsException extends __BaseException {
201
201
  readonly name: "SyncConfigurationStillExistsException";
202
202
  readonly $fault: "client";
203
- Message?: string;
203
+ Message?: string | undefined;
204
204
  constructor(
205
205
  opts: __ExceptionOptionType<
206
206
  SyncConfigurationStillExistsException,
@@ -211,7 +211,7 @@ export declare class SyncConfigurationStillExistsException extends __BaseExcepti
211
211
  export declare class UnsupportedProviderTypeException extends __BaseException {
212
212
  readonly name: "UnsupportedProviderTypeException";
213
213
  readonly $fault: "client";
214
- Message?: string;
214
+ Message?: string | undefined;
215
215
  constructor(
216
216
  opts: __ExceptionOptionType<
217
217
  UnsupportedProviderTypeException,
@@ -235,25 +235,25 @@ export declare const ConnectionStatus: {
235
235
  export type ConnectionStatus =
236
236
  (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
237
237
  export interface Connection {
238
- ConnectionName?: string;
239
- ConnectionArn?: string;
240
- ProviderType?: ProviderType;
241
- OwnerAccountId?: string;
242
- ConnectionStatus?: ConnectionStatus;
243
- HostArn?: string;
238
+ ConnectionName?: string | undefined;
239
+ ConnectionArn?: string | undefined;
240
+ ProviderType?: ProviderType | undefined;
241
+ OwnerAccountId?: string | undefined;
242
+ ConnectionStatus?: ConnectionStatus | undefined;
243
+ HostArn?: string | undefined;
244
244
  }
245
245
  export interface GetConnectionOutput {
246
- Connection?: Connection;
246
+ Connection?: Connection | undefined;
247
247
  }
248
248
  export interface GetHostInput {
249
249
  HostArn: string | undefined;
250
250
  }
251
251
  export interface GetHostOutput {
252
- Name?: string;
253
- Status?: string;
254
- ProviderType?: ProviderType;
255
- ProviderEndpoint?: string;
256
- VpcConfiguration?: VpcConfiguration;
252
+ Name?: string | undefined;
253
+ Status?: string | undefined;
254
+ ProviderType?: ProviderType | undefined;
255
+ ProviderEndpoint?: string | undefined;
256
+ VpcConfiguration?: VpcConfiguration | undefined;
257
257
  }
258
258
  export interface GetRepositoryLinkInput {
259
259
  RepositoryLinkId: string | undefined;
@@ -268,7 +268,7 @@ export interface GetRepositorySyncStatusInput {
268
268
  }
269
269
  export interface RepositorySyncEvent {
270
270
  Event: string | undefined;
271
- ExternalId?: string;
271
+ ExternalId?: string | undefined;
272
272
  Time: Date | undefined;
273
273
  Type: string | undefined;
274
274
  }
@@ -303,7 +303,7 @@ export interface Revision {
303
303
  }
304
304
  export interface ResourceSyncEvent {
305
305
  Event: string | undefined;
306
- ExternalId?: string;
306
+ ExternalId?: string | undefined;
307
307
  Time: Date | undefined;
308
308
  Type: string | undefined;
309
309
  }
@@ -324,8 +324,8 @@ export interface ResourceSyncAttempt {
324
324
  Target: string | undefined;
325
325
  }
326
326
  export interface GetResourceSyncStatusOutput {
327
- DesiredState?: Revision;
328
- LatestSuccessfulSync?: ResourceSyncAttempt;
327
+ DesiredState?: Revision | undefined;
328
+ LatestSuccessfulSync?: ResourceSyncAttempt | undefined;
329
329
  LatestSync: ResourceSyncAttempt | undefined;
330
330
  }
331
331
  export interface GetSyncBlockerSummaryInput {
@@ -342,14 +342,14 @@ export interface SyncBlocker {
342
342
  Status: BlockerStatus | undefined;
343
343
  CreatedReason: string | undefined;
344
344
  CreatedAt: Date | undefined;
345
- Contexts?: SyncBlockerContext[];
346
- ResolvedReason?: string;
347
- ResolvedAt?: Date;
345
+ Contexts?: SyncBlockerContext[] | undefined;
346
+ ResolvedReason?: string | undefined;
347
+ ResolvedAt?: Date | undefined;
348
348
  }
349
349
  export interface SyncBlockerSummary {
350
350
  ResourceName: string | undefined;
351
- ParentResourceName?: string;
352
- LatestBlockers?: SyncBlocker[];
351
+ ParentResourceName?: string | undefined;
352
+ LatestBlockers?: SyncBlocker[] | undefined;
353
353
  }
354
354
  export interface GetSyncBlockerSummaryOutput {
355
355
  SyncBlockerSummary: SyncBlockerSummary | undefined;
@@ -362,39 +362,39 @@ export interface GetSyncConfigurationOutput {
362
362
  SyncConfiguration: SyncConfiguration | undefined;
363
363
  }
364
364
  export interface ListConnectionsInput {
365
- ProviderTypeFilter?: ProviderType;
366
- HostArnFilter?: string;
367
- MaxResults?: number;
368
- NextToken?: string;
365
+ ProviderTypeFilter?: ProviderType | undefined;
366
+ HostArnFilter?: string | undefined;
367
+ MaxResults?: number | undefined;
368
+ NextToken?: string | undefined;
369
369
  }
370
370
  export interface ListConnectionsOutput {
371
- Connections?: Connection[];
372
- NextToken?: string;
371
+ Connections?: Connection[] | undefined;
372
+ NextToken?: string | undefined;
373
373
  }
374
374
  export interface ListHostsInput {
375
- MaxResults?: number;
376
- NextToken?: string;
375
+ MaxResults?: number | undefined;
376
+ NextToken?: string | undefined;
377
377
  }
378
378
  export interface Host {
379
- Name?: string;
380
- HostArn?: string;
381
- ProviderType?: ProviderType;
382
- ProviderEndpoint?: string;
383
- VpcConfiguration?: VpcConfiguration;
384
- Status?: string;
385
- StatusMessage?: string;
379
+ Name?: string | undefined;
380
+ HostArn?: string | undefined;
381
+ ProviderType?: ProviderType | undefined;
382
+ ProviderEndpoint?: string | undefined;
383
+ VpcConfiguration?: VpcConfiguration | undefined;
384
+ Status?: string | undefined;
385
+ StatusMessage?: string | undefined;
386
386
  }
387
387
  export interface ListHostsOutput {
388
- Hosts?: Host[];
389
- NextToken?: string;
388
+ Hosts?: Host[] | undefined;
389
+ NextToken?: string | undefined;
390
390
  }
391
391
  export interface ListRepositoryLinksInput {
392
- MaxResults?: number;
393
- NextToken?: string;
392
+ MaxResults?: number | undefined;
393
+ NextToken?: string | undefined;
394
394
  }
395
395
  export interface ListRepositoryLinksOutput {
396
396
  RepositoryLinks: RepositoryLinkInfo[] | undefined;
397
- NextToken?: string;
397
+ NextToken?: string | undefined;
398
398
  }
399
399
  export interface ListRepositorySyncDefinitionsInput {
400
400
  RepositoryLinkId: string | undefined;
@@ -408,23 +408,23 @@ export interface RepositorySyncDefinition {
408
408
  }
409
409
  export interface ListRepositorySyncDefinitionsOutput {
410
410
  RepositorySyncDefinitions: RepositorySyncDefinition[] | undefined;
411
- NextToken?: string;
411
+ NextToken?: string | undefined;
412
412
  }
413
413
  export interface ListSyncConfigurationsInput {
414
- MaxResults?: number;
415
- NextToken?: string;
414
+ MaxResults?: number | undefined;
415
+ NextToken?: string | undefined;
416
416
  RepositoryLinkId: string | undefined;
417
417
  SyncType: SyncConfigurationType | undefined;
418
418
  }
419
419
  export interface ListSyncConfigurationsOutput {
420
420
  SyncConfigurations: SyncConfiguration[] | undefined;
421
- NextToken?: string;
421
+ NextToken?: string | undefined;
422
422
  }
423
423
  export interface ListTagsForResourceInput {
424
424
  ResourceArn: string | undefined;
425
425
  }
426
426
  export interface ListTagsForResourceOutput {
427
- Tags?: Tag[];
427
+ Tags?: Tag[] | undefined;
428
428
  }
429
429
  export interface TagResourceInput {
430
430
  ResourceArn: string | undefined;
@@ -439,27 +439,27 @@ export interface UntagResourceOutput {}
439
439
  export declare class ConflictException extends __BaseException {
440
440
  readonly name: "ConflictException";
441
441
  readonly $fault: "client";
442
- Message?: string;
442
+ Message?: string | undefined;
443
443
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
444
444
  }
445
445
  export declare class UnsupportedOperationException extends __BaseException {
446
446
  readonly name: "UnsupportedOperationException";
447
447
  readonly $fault: "client";
448
- Message?: string;
448
+ Message?: string | undefined;
449
449
  constructor(
450
450
  opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
451
451
  );
452
452
  }
453
453
  export interface UpdateHostInput {
454
454
  HostArn: string | undefined;
455
- ProviderEndpoint?: string;
456
- VpcConfiguration?: VpcConfiguration;
455
+ ProviderEndpoint?: string | undefined;
456
+ VpcConfiguration?: VpcConfiguration | undefined;
457
457
  }
458
458
  export interface UpdateHostOutput {}
459
459
  export declare class ConditionalCheckFailedException extends __BaseException {
460
460
  readonly name: "ConditionalCheckFailedException";
461
461
  readonly $fault: "client";
462
- Message?: string;
462
+ Message?: string | undefined;
463
463
  constructor(
464
464
  opts: __ExceptionOptionType<
465
465
  ConditionalCheckFailedException,
@@ -470,14 +470,14 @@ export declare class ConditionalCheckFailedException extends __BaseException {
470
470
  export declare class UpdateOutOfSyncException extends __BaseException {
471
471
  readonly name: "UpdateOutOfSyncException";
472
472
  readonly $fault: "client";
473
- Message?: string;
473
+ Message?: string | undefined;
474
474
  constructor(
475
475
  opts: __ExceptionOptionType<UpdateOutOfSyncException, __BaseException>
476
476
  );
477
477
  }
478
478
  export interface UpdateRepositoryLinkInput {
479
- ConnectionArn?: string;
480
- EncryptionKeyArn?: string;
479
+ ConnectionArn?: string | undefined;
480
+ EncryptionKeyArn?: string | undefined;
481
481
  RepositoryLinkId: string | undefined;
482
482
  }
483
483
  export interface UpdateRepositoryLinkOutput {
@@ -486,7 +486,7 @@ export interface UpdateRepositoryLinkOutput {
486
486
  export declare class RetryLatestCommitFailedException extends __BaseException {
487
487
  readonly name: "RetryLatestCommitFailedException";
488
488
  readonly $fault: "server";
489
- Message?: string;
489
+ Message?: string | undefined;
490
490
  constructor(
491
491
  opts: __ExceptionOptionType<
492
492
  RetryLatestCommitFailedException,
@@ -497,7 +497,7 @@ export declare class RetryLatestCommitFailedException extends __BaseException {
497
497
  export declare class SyncBlockerDoesNotExistException extends __BaseException {
498
498
  readonly name: "SyncBlockerDoesNotExistException";
499
499
  readonly $fault: "client";
500
- Message?: string;
500
+ Message?: string | undefined;
501
501
  constructor(
502
502
  opts: __ExceptionOptionType<
503
503
  SyncBlockerDoesNotExistException,
@@ -513,18 +513,18 @@ export interface UpdateSyncBlockerInput {
513
513
  }
514
514
  export interface UpdateSyncBlockerOutput {
515
515
  ResourceName: string | undefined;
516
- ParentResourceName?: string;
516
+ ParentResourceName?: string | undefined;
517
517
  SyncBlocker: SyncBlocker | undefined;
518
518
  }
519
519
  export interface UpdateSyncConfigurationInput {
520
- Branch?: string;
521
- ConfigFile?: string;
522
- RepositoryLinkId?: string;
520
+ Branch?: string | undefined;
521
+ ConfigFile?: string | undefined;
522
+ RepositoryLinkId?: string | undefined;
523
523
  ResourceName: string | undefined;
524
- RoleArn?: string;
524
+ RoleArn?: string | undefined;
525
525
  SyncType: SyncConfigurationType | undefined;
526
- PublishDeploymentStatus?: PublishDeploymentStatus;
527
- TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
526
+ PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
527
+ TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
528
528
  }
529
529
  export interface UpdateSyncConfigurationOutput {
530
530
  SyncConfiguration: SyncConfiguration | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codestar-connections",
3
3
  "description": "AWS SDK for JavaScript Codestar Connections Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-codestar-connections",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",