@aws-sdk/client-managedblockchain 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.
@@ -3,7 +3,7 @@ import { ManagedBlockchainServiceException as __BaseException } from "./ManagedB
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
  );
@@ -29,22 +29,22 @@ export declare const AccessorType: {
29
29
  };
30
30
  export type AccessorType = (typeof AccessorType)[keyof typeof AccessorType];
31
31
  export interface Accessor {
32
- Id?: string;
33
- Type?: AccessorType;
34
- BillingToken?: string;
35
- Status?: AccessorStatus;
36
- CreationDate?: Date;
37
- Arn?: string;
38
- Tags?: Record<string, string>;
39
- NetworkType?: AccessorNetworkType;
32
+ Id?: string | undefined;
33
+ Type?: AccessorType | undefined;
34
+ BillingToken?: string | undefined;
35
+ Status?: AccessorStatus | undefined;
36
+ CreationDate?: Date | undefined;
37
+ Arn?: string | undefined;
38
+ Tags?: Record<string, string> | undefined;
39
+ NetworkType?: AccessorNetworkType | undefined;
40
40
  }
41
41
  export interface AccessorSummary {
42
- Id?: string;
43
- Type?: AccessorType;
44
- Status?: AccessorStatus;
45
- CreationDate?: Date;
46
- Arn?: string;
47
- NetworkType?: AccessorNetworkType;
42
+ Id?: string | undefined;
43
+ Type?: AccessorType | undefined;
44
+ Status?: AccessorStatus | undefined;
45
+ CreationDate?: Date | undefined;
46
+ Arn?: string | undefined;
47
+ NetworkType?: AccessorNetworkType | undefined;
48
48
  }
49
49
  export declare const ThresholdComparator: {
50
50
  readonly GREATER_THAN: "GREATER_THAN";
@@ -53,20 +53,20 @@ export declare const ThresholdComparator: {
53
53
  export type ThresholdComparator =
54
54
  (typeof ThresholdComparator)[keyof typeof ThresholdComparator];
55
55
  export interface ApprovalThresholdPolicy {
56
- ThresholdPercentage?: number;
57
- ProposalDurationInHours?: number;
58
- ThresholdComparator?: ThresholdComparator;
56
+ ThresholdPercentage?: number | undefined;
57
+ ProposalDurationInHours?: number | undefined;
58
+ ThresholdComparator?: ThresholdComparator | undefined;
59
59
  }
60
60
  export interface CreateAccessorInput {
61
- ClientRequestToken?: string;
61
+ ClientRequestToken?: string | undefined;
62
62
  AccessorType: AccessorType | undefined;
63
- Tags?: Record<string, string>;
64
- NetworkType?: AccessorNetworkType;
63
+ Tags?: Record<string, string> | undefined;
64
+ NetworkType?: AccessorNetworkType | undefined;
65
65
  }
66
66
  export interface CreateAccessorOutput {
67
- AccessorId?: string;
68
- BillingToken?: string;
69
- NetworkType?: AccessorNetworkType;
67
+ AccessorId?: string | undefined;
68
+ BillingToken?: string | undefined;
69
+ NetworkType?: AccessorNetworkType | undefined;
70
70
  }
71
71
  export declare class InternalServiceErrorException extends __BaseException {
72
72
  readonly name: "InternalServiceErrorException";
@@ -78,7 +78,7 @@ export declare class InternalServiceErrorException extends __BaseException {
78
78
  export declare class InvalidRequestException extends __BaseException {
79
79
  readonly name: "InvalidRequestException";
80
80
  readonly $fault: "client";
81
- Message?: string;
81
+ Message?: string | undefined;
82
82
  constructor(
83
83
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
84
84
  );
@@ -86,7 +86,7 @@ export declare class InvalidRequestException extends __BaseException {
86
86
  export declare class ResourceAlreadyExistsException extends __BaseException {
87
87
  readonly name: "ResourceAlreadyExistsException";
88
88
  readonly $fault: "client";
89
- Message?: string;
89
+ Message?: string | undefined;
90
90
  constructor(
91
91
  opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
92
92
  );
@@ -94,7 +94,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
94
94
  export declare class ResourceLimitExceededException extends __BaseException {
95
95
  readonly name: "ResourceLimitExceededException";
96
96
  readonly $fault: "client";
97
- Message?: string;
97
+ Message?: string | undefined;
98
98
  constructor(
99
99
  opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
100
100
  );
@@ -109,8 +109,8 @@ export declare class ThrottlingException extends __BaseException {
109
109
  export declare class TooManyTagsException extends __BaseException {
110
110
  readonly name: "TooManyTagsException";
111
111
  readonly $fault: "client";
112
- Message?: string;
113
- ResourceName?: string;
112
+ Message?: string | undefined;
113
+ ResourceName?: string | undefined;
114
114
  constructor(
115
115
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
116
116
  );
@@ -120,42 +120,42 @@ export interface MemberFabricConfiguration {
120
120
  AdminPassword: string | undefined;
121
121
  }
122
122
  export interface MemberFrameworkConfiguration {
123
- Fabric?: MemberFabricConfiguration;
123
+ Fabric?: MemberFabricConfiguration | undefined;
124
124
  }
125
125
  export interface LogConfiguration {
126
- Enabled?: boolean;
126
+ Enabled?: boolean | undefined;
127
127
  }
128
128
  export interface LogConfigurations {
129
- Cloudwatch?: LogConfiguration;
129
+ Cloudwatch?: LogConfiguration | undefined;
130
130
  }
131
131
  export interface MemberFabricLogPublishingConfiguration {
132
- CaLogs?: LogConfigurations;
132
+ CaLogs?: LogConfigurations | undefined;
133
133
  }
134
134
  export interface MemberLogPublishingConfiguration {
135
- Fabric?: MemberFabricLogPublishingConfiguration;
135
+ Fabric?: MemberFabricLogPublishingConfiguration | undefined;
136
136
  }
137
137
  export interface MemberConfiguration {
138
138
  Name: string | undefined;
139
- Description?: string;
139
+ Description?: string | undefined;
140
140
  FrameworkConfiguration: MemberFrameworkConfiguration | undefined;
141
- LogPublishingConfiguration?: MemberLogPublishingConfiguration;
142
- Tags?: Record<string, string>;
143
- KmsKeyArn?: string;
141
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration | undefined;
142
+ Tags?: Record<string, string> | undefined;
143
+ KmsKeyArn?: string | undefined;
144
144
  }
145
145
  export interface CreateMemberInput {
146
- ClientRequestToken?: string;
146
+ ClientRequestToken?: string | undefined;
147
147
  InvitationId: string | undefined;
148
148
  NetworkId: string | undefined;
149
149
  MemberConfiguration: MemberConfiguration | undefined;
150
150
  }
151
151
  export interface CreateMemberOutput {
152
- MemberId?: string;
152
+ MemberId?: string | undefined;
153
153
  }
154
154
  export declare class ResourceNotFoundException extends __BaseException {
155
155
  readonly name: "ResourceNotFoundException";
156
156
  readonly $fault: "client";
157
- Message?: string;
158
- ResourceName?: string;
157
+ Message?: string | undefined;
158
+ ResourceName?: string | undefined;
159
159
  constructor(
160
160
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
161
161
  );
@@ -163,7 +163,7 @@ export declare class ResourceNotFoundException extends __BaseException {
163
163
  export declare class ResourceNotReadyException extends __BaseException {
164
164
  readonly name: "ResourceNotReadyException";
165
165
  readonly $fault: "client";
166
- Message?: string;
166
+ Message?: string | undefined;
167
167
  constructor(
168
168
  opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
169
169
  );
@@ -182,32 +182,32 @@ export interface NetworkFabricConfiguration {
182
182
  Edition: Edition | undefined;
183
183
  }
184
184
  export interface NetworkFrameworkConfiguration {
185
- Fabric?: NetworkFabricConfiguration;
185
+ Fabric?: NetworkFabricConfiguration | undefined;
186
186
  }
187
187
  export interface VotingPolicy {
188
- ApprovalThresholdPolicy?: ApprovalThresholdPolicy;
188
+ ApprovalThresholdPolicy?: ApprovalThresholdPolicy | undefined;
189
189
  }
190
190
  export interface CreateNetworkInput {
191
- ClientRequestToken?: string;
191
+ ClientRequestToken?: string | undefined;
192
192
  Name: string | undefined;
193
- Description?: string;
193
+ Description?: string | undefined;
194
194
  Framework: Framework | undefined;
195
195
  FrameworkVersion: string | undefined;
196
- FrameworkConfiguration?: NetworkFrameworkConfiguration;
196
+ FrameworkConfiguration?: NetworkFrameworkConfiguration | undefined;
197
197
  VotingPolicy: VotingPolicy | undefined;
198
198
  MemberConfiguration: MemberConfiguration | undefined;
199
- Tags?: Record<string, string>;
199
+ Tags?: Record<string, string> | undefined;
200
200
  }
201
201
  export interface CreateNetworkOutput {
202
- NetworkId?: string;
203
- MemberId?: string;
202
+ NetworkId?: string | undefined;
203
+ MemberId?: string | undefined;
204
204
  }
205
205
  export interface NodeFabricLogPublishingConfiguration {
206
- ChaincodeLogs?: LogConfigurations;
207
- PeerLogs?: LogConfigurations;
206
+ ChaincodeLogs?: LogConfigurations | undefined;
207
+ PeerLogs?: LogConfigurations | undefined;
208
208
  }
209
209
  export interface NodeLogPublishingConfiguration {
210
- Fabric?: NodeFabricLogPublishingConfiguration;
210
+ Fabric?: NodeFabricLogPublishingConfiguration | undefined;
211
211
  }
212
212
  export declare const StateDBType: {
213
213
  readonly CouchDB: "CouchDB";
@@ -216,19 +216,19 @@ export declare const StateDBType: {
216
216
  export type StateDBType = (typeof StateDBType)[keyof typeof StateDBType];
217
217
  export interface NodeConfiguration {
218
218
  InstanceType: string | undefined;
219
- AvailabilityZone?: string;
220
- LogPublishingConfiguration?: NodeLogPublishingConfiguration;
221
- StateDB?: StateDBType;
219
+ AvailabilityZone?: string | undefined;
220
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration | undefined;
221
+ StateDB?: StateDBType | undefined;
222
222
  }
223
223
  export interface CreateNodeInput {
224
- ClientRequestToken?: string;
224
+ ClientRequestToken?: string | undefined;
225
225
  NetworkId: string | undefined;
226
- MemberId?: string;
226
+ MemberId?: string | undefined;
227
227
  NodeConfiguration: NodeConfiguration | undefined;
228
- Tags?: Record<string, string>;
228
+ Tags?: Record<string, string> | undefined;
229
229
  }
230
230
  export interface CreateNodeOutput {
231
- NodeId?: string;
231
+ NodeId?: string | undefined;
232
232
  }
233
233
  export interface InviteAction {
234
234
  Principal: string | undefined;
@@ -237,19 +237,19 @@ export interface RemoveAction {
237
237
  MemberId: string | undefined;
238
238
  }
239
239
  export interface ProposalActions {
240
- Invitations?: InviteAction[];
241
- Removals?: RemoveAction[];
240
+ Invitations?: InviteAction[] | undefined;
241
+ Removals?: RemoveAction[] | undefined;
242
242
  }
243
243
  export interface CreateProposalInput {
244
- ClientRequestToken?: string;
244
+ ClientRequestToken?: string | undefined;
245
245
  NetworkId: string | undefined;
246
246
  MemberId: string | undefined;
247
247
  Actions: ProposalActions | undefined;
248
- Description?: string;
249
- Tags?: Record<string, string>;
248
+ Description?: string | undefined;
249
+ Tags?: Record<string, string> | undefined;
250
250
  }
251
251
  export interface CreateProposalOutput {
252
- ProposalId?: string;
252
+ ProposalId?: string | undefined;
253
253
  }
254
254
  export interface DeleteAccessorInput {
255
255
  AccessorId: string | undefined;
@@ -262,7 +262,7 @@ export interface DeleteMemberInput {
262
262
  export interface DeleteMemberOutput {}
263
263
  export interface DeleteNodeInput {
264
264
  NetworkId: string | undefined;
265
- MemberId?: string;
265
+ MemberId?: string | undefined;
266
266
  NodeId: string | undefined;
267
267
  }
268
268
  export interface DeleteNodeOutput {}
@@ -270,18 +270,18 @@ export interface GetAccessorInput {
270
270
  AccessorId: string | undefined;
271
271
  }
272
272
  export interface GetAccessorOutput {
273
- Accessor?: Accessor;
273
+ Accessor?: Accessor | undefined;
274
274
  }
275
275
  export interface GetMemberInput {
276
276
  NetworkId: string | undefined;
277
277
  MemberId: string | undefined;
278
278
  }
279
279
  export interface MemberFabricAttributes {
280
- AdminUsername?: string;
281
- CaEndpoint?: string;
280
+ AdminUsername?: string | undefined;
281
+ CaEndpoint?: string | undefined;
282
282
  }
283
283
  export interface MemberFrameworkAttributes {
284
- Fabric?: MemberFabricAttributes;
284
+ Fabric?: MemberFabricAttributes | undefined;
285
285
  }
286
286
  export declare const MemberStatus: {
287
287
  readonly AVAILABLE: "AVAILABLE";
@@ -294,34 +294,34 @@ export declare const MemberStatus: {
294
294
  };
295
295
  export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
296
296
  export interface Member {
297
- NetworkId?: string;
298
- Id?: string;
299
- Name?: string;
300
- Description?: string;
301
- FrameworkAttributes?: MemberFrameworkAttributes;
302
- LogPublishingConfiguration?: MemberLogPublishingConfiguration;
303
- Status?: MemberStatus;
304
- CreationDate?: Date;
305
- Tags?: Record<string, string>;
306
- Arn?: string;
307
- KmsKeyArn?: string;
297
+ NetworkId?: string | undefined;
298
+ Id?: string | undefined;
299
+ Name?: string | undefined;
300
+ Description?: string | undefined;
301
+ FrameworkAttributes?: MemberFrameworkAttributes | undefined;
302
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration | undefined;
303
+ Status?: MemberStatus | undefined;
304
+ CreationDate?: Date | undefined;
305
+ Tags?: Record<string, string> | undefined;
306
+ Arn?: string | undefined;
307
+ KmsKeyArn?: string | undefined;
308
308
  }
309
309
  export interface GetMemberOutput {
310
- Member?: Member;
310
+ Member?: Member | undefined;
311
311
  }
312
312
  export interface GetNetworkInput {
313
313
  NetworkId: string | undefined;
314
314
  }
315
315
  export interface NetworkEthereumAttributes {
316
- ChainId?: string;
316
+ ChainId?: string | undefined;
317
317
  }
318
318
  export interface NetworkFabricAttributes {
319
- OrderingServiceEndpoint?: string;
320
- Edition?: Edition;
319
+ OrderingServiceEndpoint?: string | undefined;
320
+ Edition?: Edition | undefined;
321
321
  }
322
322
  export interface NetworkFrameworkAttributes {
323
- Fabric?: NetworkFabricAttributes;
324
- Ethereum?: NetworkEthereumAttributes;
323
+ Fabric?: NetworkFabricAttributes | undefined;
324
+ Ethereum?: NetworkEthereumAttributes | undefined;
325
325
  }
326
326
  export declare const NetworkStatus: {
327
327
  readonly AVAILABLE: "AVAILABLE";
@@ -332,38 +332,38 @@ export declare const NetworkStatus: {
332
332
  };
333
333
  export type NetworkStatus = (typeof NetworkStatus)[keyof typeof NetworkStatus];
334
334
  export interface Network {
335
- Id?: string;
336
- Name?: string;
337
- Description?: string;
338
- Framework?: Framework;
339
- FrameworkVersion?: string;
340
- FrameworkAttributes?: NetworkFrameworkAttributes;
341
- VpcEndpointServiceName?: string;
342
- VotingPolicy?: VotingPolicy;
343
- Status?: NetworkStatus;
344
- CreationDate?: Date;
345
- Tags?: Record<string, string>;
346
- Arn?: string;
335
+ Id?: string | undefined;
336
+ Name?: string | undefined;
337
+ Description?: string | undefined;
338
+ Framework?: Framework | undefined;
339
+ FrameworkVersion?: string | undefined;
340
+ FrameworkAttributes?: NetworkFrameworkAttributes | undefined;
341
+ VpcEndpointServiceName?: string | undefined;
342
+ VotingPolicy?: VotingPolicy | undefined;
343
+ Status?: NetworkStatus | undefined;
344
+ CreationDate?: Date | undefined;
345
+ Tags?: Record<string, string> | undefined;
346
+ Arn?: string | undefined;
347
347
  }
348
348
  export interface GetNetworkOutput {
349
- Network?: Network;
349
+ Network?: Network | undefined;
350
350
  }
351
351
  export interface GetNodeInput {
352
352
  NetworkId: string | undefined;
353
- MemberId?: string;
353
+ MemberId?: string | undefined;
354
354
  NodeId: string | undefined;
355
355
  }
356
356
  export interface NodeEthereumAttributes {
357
- HttpEndpoint?: string;
358
- WebSocketEndpoint?: string;
357
+ HttpEndpoint?: string | undefined;
358
+ WebSocketEndpoint?: string | undefined;
359
359
  }
360
360
  export interface NodeFabricAttributes {
361
- PeerEndpoint?: string;
362
- PeerEventEndpoint?: string;
361
+ PeerEndpoint?: string | undefined;
362
+ PeerEventEndpoint?: string | undefined;
363
363
  }
364
364
  export interface NodeFrameworkAttributes {
365
- Fabric?: NodeFabricAttributes;
366
- Ethereum?: NodeEthereumAttributes;
365
+ Fabric?: NodeFabricAttributes | undefined;
366
+ Ethereum?: NodeEthereumAttributes | undefined;
367
367
  }
368
368
  export declare const NodeStatus: {
369
369
  readonly AVAILABLE: "AVAILABLE";
@@ -378,22 +378,22 @@ export declare const NodeStatus: {
378
378
  };
379
379
  export type NodeStatus = (typeof NodeStatus)[keyof typeof NodeStatus];
380
380
  export interface Node {
381
- NetworkId?: string;
382
- MemberId?: string;
383
- Id?: string;
384
- InstanceType?: string;
385
- AvailabilityZone?: string;
386
- FrameworkAttributes?: NodeFrameworkAttributes;
387
- LogPublishingConfiguration?: NodeLogPublishingConfiguration;
388
- StateDB?: StateDBType;
389
- Status?: NodeStatus;
390
- CreationDate?: Date;
391
- Tags?: Record<string, string>;
392
- Arn?: string;
393
- KmsKeyArn?: string;
381
+ NetworkId?: string | undefined;
382
+ MemberId?: string | undefined;
383
+ Id?: string | undefined;
384
+ InstanceType?: string | undefined;
385
+ AvailabilityZone?: string | undefined;
386
+ FrameworkAttributes?: NodeFrameworkAttributes | undefined;
387
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration | undefined;
388
+ StateDB?: StateDBType | undefined;
389
+ Status?: NodeStatus | undefined;
390
+ CreationDate?: Date | undefined;
391
+ Tags?: Record<string, string> | undefined;
392
+ Arn?: string | undefined;
393
+ KmsKeyArn?: string | undefined;
394
394
  }
395
395
  export interface GetNodeOutput {
396
- Node?: Node;
396
+ Node?: Node | undefined;
397
397
  }
398
398
  export interface GetProposalInput {
399
399
  NetworkId: string | undefined;
@@ -409,41 +409,41 @@ export declare const ProposalStatus: {
409
409
  export type ProposalStatus =
410
410
  (typeof ProposalStatus)[keyof typeof ProposalStatus];
411
411
  export interface Proposal {
412
- ProposalId?: string;
413
- NetworkId?: string;
414
- Description?: string;
415
- Actions?: ProposalActions;
416
- ProposedByMemberId?: string;
417
- ProposedByMemberName?: string;
418
- Status?: ProposalStatus;
419
- CreationDate?: Date;
420
- ExpirationDate?: Date;
421
- YesVoteCount?: number;
422
- NoVoteCount?: number;
423
- OutstandingVoteCount?: number;
424
- Tags?: Record<string, string>;
425
- Arn?: string;
412
+ ProposalId?: string | undefined;
413
+ NetworkId?: string | undefined;
414
+ Description?: string | undefined;
415
+ Actions?: ProposalActions | undefined;
416
+ ProposedByMemberId?: string | undefined;
417
+ ProposedByMemberName?: string | undefined;
418
+ Status?: ProposalStatus | undefined;
419
+ CreationDate?: Date | undefined;
420
+ ExpirationDate?: Date | undefined;
421
+ YesVoteCount?: number | undefined;
422
+ NoVoteCount?: number | undefined;
423
+ OutstandingVoteCount?: number | undefined;
424
+ Tags?: Record<string, string> | undefined;
425
+ Arn?: string | undefined;
426
426
  }
427
427
  export interface GetProposalOutput {
428
- Proposal?: Proposal;
428
+ Proposal?: Proposal | undefined;
429
429
  }
430
430
  export declare class IllegalActionException extends __BaseException {
431
431
  readonly name: "IllegalActionException";
432
432
  readonly $fault: "client";
433
- Message?: string;
433
+ Message?: string | undefined;
434
434
  constructor(
435
435
  opts: __ExceptionOptionType<IllegalActionException, __BaseException>
436
436
  );
437
437
  }
438
438
  export interface NetworkSummary {
439
- Id?: string;
440
- Name?: string;
441
- Description?: string;
442
- Framework?: Framework;
443
- FrameworkVersion?: string;
444
- Status?: NetworkStatus;
445
- CreationDate?: Date;
446
- Arn?: string;
439
+ Id?: string | undefined;
440
+ Name?: string | undefined;
441
+ Description?: string | undefined;
442
+ Framework?: Framework | undefined;
443
+ FrameworkVersion?: string | undefined;
444
+ Status?: NetworkStatus | undefined;
445
+ CreationDate?: Date | undefined;
446
+ Arn?: string | undefined;
447
447
  }
448
448
  export declare const InvitationStatus: {
449
449
  readonly ACCEPTED: "ACCEPTED";
@@ -455,105 +455,105 @@ export declare const InvitationStatus: {
455
455
  export type InvitationStatus =
456
456
  (typeof InvitationStatus)[keyof typeof InvitationStatus];
457
457
  export interface Invitation {
458
- InvitationId?: string;
459
- CreationDate?: Date;
460
- ExpirationDate?: Date;
461
- Status?: InvitationStatus;
462
- NetworkSummary?: NetworkSummary;
463
- Arn?: string;
458
+ InvitationId?: string | undefined;
459
+ CreationDate?: Date | undefined;
460
+ ExpirationDate?: Date | undefined;
461
+ Status?: InvitationStatus | undefined;
462
+ NetworkSummary?: NetworkSummary | undefined;
463
+ Arn?: string | undefined;
464
464
  }
465
465
  export interface ListAccessorsInput {
466
- MaxResults?: number;
467
- NextToken?: string;
468
- NetworkType?: AccessorNetworkType;
466
+ MaxResults?: number | undefined;
467
+ NextToken?: string | undefined;
468
+ NetworkType?: AccessorNetworkType | undefined;
469
469
  }
470
470
  export interface ListAccessorsOutput {
471
- Accessors?: AccessorSummary[];
472
- NextToken?: string;
471
+ Accessors?: AccessorSummary[] | undefined;
472
+ NextToken?: string | undefined;
473
473
  }
474
474
  export interface ListInvitationsInput {
475
- MaxResults?: number;
476
- NextToken?: string;
475
+ MaxResults?: number | undefined;
476
+ NextToken?: string | undefined;
477
477
  }
478
478
  export interface ListInvitationsOutput {
479
- Invitations?: Invitation[];
480
- NextToken?: string;
479
+ Invitations?: Invitation[] | undefined;
480
+ NextToken?: string | undefined;
481
481
  }
482
482
  export interface ListMembersInput {
483
483
  NetworkId: string | undefined;
484
- Name?: string;
485
- Status?: MemberStatus;
486
- IsOwned?: boolean;
487
- MaxResults?: number;
488
- NextToken?: string;
484
+ Name?: string | undefined;
485
+ Status?: MemberStatus | undefined;
486
+ IsOwned?: boolean | undefined;
487
+ MaxResults?: number | undefined;
488
+ NextToken?: string | undefined;
489
489
  }
490
490
  export interface MemberSummary {
491
- Id?: string;
492
- Name?: string;
493
- Description?: string;
494
- Status?: MemberStatus;
495
- CreationDate?: Date;
496
- IsOwned?: boolean;
497
- Arn?: string;
491
+ Id?: string | undefined;
492
+ Name?: string | undefined;
493
+ Description?: string | undefined;
494
+ Status?: MemberStatus | undefined;
495
+ CreationDate?: Date | undefined;
496
+ IsOwned?: boolean | undefined;
497
+ Arn?: string | undefined;
498
498
  }
499
499
  export interface ListMembersOutput {
500
- Members?: MemberSummary[];
501
- NextToken?: string;
500
+ Members?: MemberSummary[] | undefined;
501
+ NextToken?: string | undefined;
502
502
  }
503
503
  export interface ListNetworksInput {
504
- Name?: string;
505
- Framework?: Framework;
506
- Status?: NetworkStatus;
507
- MaxResults?: number;
508
- NextToken?: string;
504
+ Name?: string | undefined;
505
+ Framework?: Framework | undefined;
506
+ Status?: NetworkStatus | undefined;
507
+ MaxResults?: number | undefined;
508
+ NextToken?: string | undefined;
509
509
  }
510
510
  export interface ListNetworksOutput {
511
- Networks?: NetworkSummary[];
512
- NextToken?: string;
511
+ Networks?: NetworkSummary[] | undefined;
512
+ NextToken?: string | undefined;
513
513
  }
514
514
  export interface ListNodesInput {
515
515
  NetworkId: string | undefined;
516
- MemberId?: string;
517
- Status?: NodeStatus;
518
- MaxResults?: number;
519
- NextToken?: string;
516
+ MemberId?: string | undefined;
517
+ Status?: NodeStatus | undefined;
518
+ MaxResults?: number | undefined;
519
+ NextToken?: string | undefined;
520
520
  }
521
521
  export interface NodeSummary {
522
- Id?: string;
523
- Status?: NodeStatus;
524
- CreationDate?: Date;
525
- AvailabilityZone?: string;
526
- InstanceType?: string;
527
- Arn?: string;
522
+ Id?: string | undefined;
523
+ Status?: NodeStatus | undefined;
524
+ CreationDate?: Date | undefined;
525
+ AvailabilityZone?: string | undefined;
526
+ InstanceType?: string | undefined;
527
+ Arn?: string | undefined;
528
528
  }
529
529
  export interface ListNodesOutput {
530
- Nodes?: NodeSummary[];
531
- NextToken?: string;
530
+ Nodes?: NodeSummary[] | undefined;
531
+ NextToken?: string | undefined;
532
532
  }
533
533
  export interface ListProposalsInput {
534
534
  NetworkId: string | undefined;
535
- MaxResults?: number;
536
- NextToken?: string;
535
+ MaxResults?: number | undefined;
536
+ NextToken?: string | undefined;
537
537
  }
538
538
  export interface ProposalSummary {
539
- ProposalId?: string;
540
- Description?: string;
541
- ProposedByMemberId?: string;
542
- ProposedByMemberName?: string;
543
- Status?: ProposalStatus;
544
- CreationDate?: Date;
545
- ExpirationDate?: Date;
546
- Arn?: string;
539
+ ProposalId?: string | undefined;
540
+ Description?: string | undefined;
541
+ ProposedByMemberId?: string | undefined;
542
+ ProposedByMemberName?: string | undefined;
543
+ Status?: ProposalStatus | undefined;
544
+ CreationDate?: Date | undefined;
545
+ ExpirationDate?: Date | undefined;
546
+ Arn?: string | undefined;
547
547
  }
548
548
  export interface ListProposalsOutput {
549
- Proposals?: ProposalSummary[];
550
- NextToken?: string;
549
+ Proposals?: ProposalSummary[] | undefined;
550
+ NextToken?: string | undefined;
551
551
  }
552
552
  export interface ListProposalVotesInput {
553
553
  NetworkId: string | undefined;
554
554
  ProposalId: string | undefined;
555
- MaxResults?: number;
556
- NextToken?: string;
555
+ MaxResults?: number | undefined;
556
+ NextToken?: string | undefined;
557
557
  }
558
558
  export declare const VoteValue: {
559
559
  readonly NO: "NO";
@@ -561,19 +561,19 @@ export declare const VoteValue: {
561
561
  };
562
562
  export type VoteValue = (typeof VoteValue)[keyof typeof VoteValue];
563
563
  export interface VoteSummary {
564
- Vote?: VoteValue;
565
- MemberName?: string;
566
- MemberId?: string;
564
+ Vote?: VoteValue | undefined;
565
+ MemberName?: string | undefined;
566
+ MemberId?: string | undefined;
567
567
  }
568
568
  export interface ListProposalVotesOutput {
569
- ProposalVotes?: VoteSummary[];
570
- NextToken?: string;
569
+ ProposalVotes?: VoteSummary[] | undefined;
570
+ NextToken?: string | undefined;
571
571
  }
572
572
  export interface ListTagsForResourceRequest {
573
573
  ResourceArn: string | undefined;
574
574
  }
575
575
  export interface ListTagsForResourceResponse {
576
- Tags?: Record<string, string>;
576
+ Tags?: Record<string, string> | undefined;
577
577
  }
578
578
  export interface RejectInvitationInput {
579
579
  InvitationId: string | undefined;
@@ -592,14 +592,14 @@ export interface UntagResourceResponse {}
592
592
  export interface UpdateMemberInput {
593
593
  NetworkId: string | undefined;
594
594
  MemberId: string | undefined;
595
- LogPublishingConfiguration?: MemberLogPublishingConfiguration;
595
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration | undefined;
596
596
  }
597
597
  export interface UpdateMemberOutput {}
598
598
  export interface UpdateNodeInput {
599
599
  NetworkId: string | undefined;
600
- MemberId?: string;
600
+ MemberId?: string | undefined;
601
601
  NodeId: string | undefined;
602
- LogPublishingConfiguration?: NodeLogPublishingConfiguration;
602
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration | undefined;
603
603
  }
604
604
  export interface UpdateNodeOutput {}
605
605
  export interface VoteOnProposalInput {