@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.
@@ -7,7 +7,7 @@ import { ManagedBlockchainServiceException as __BaseException } from "./ManagedB
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
  */
@@ -61,7 +61,7 @@ export interface Accessor {
61
61
  * <p>The unique identifier of the accessor.</p>
62
62
  * @public
63
63
  */
64
- Id?: string;
64
+ Id?: string | undefined;
65
65
  /**
66
66
  * <p>The type of the accessor.</p>
67
67
  * <note>
@@ -69,42 +69,42 @@ export interface Accessor {
69
69
  * </note>
70
70
  * @public
71
71
  */
72
- Type?: AccessorType;
72
+ Type?: AccessorType | undefined;
73
73
  /**
74
74
  * <p>The billing token is a property of the Accessor. Use this token to
75
75
  * when making calls to the blockchain network. The billing token is used
76
76
  * to track your accessor token for billing requests.</p>
77
77
  * @public
78
78
  */
79
- BillingToken?: string;
79
+ BillingToken?: string | undefined;
80
80
  /**
81
81
  * <p>The current status of the accessor.</p>
82
82
  * @public
83
83
  */
84
- Status?: AccessorStatus;
84
+ Status?: AccessorStatus | undefined;
85
85
  /**
86
86
  * <p>The creation date and time of the accessor.</p>
87
87
  * @public
88
88
  */
89
- CreationDate?: Date;
89
+ CreationDate?: Date | undefined;
90
90
  /**
91
91
  * <p>The Amazon Resource Name (ARN) of the accessor. For more information about
92
92
  * ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
93
93
  * Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
94
94
  * @public
95
95
  */
96
- Arn?: string;
96
+ Arn?: string | undefined;
97
97
  /**
98
98
  * <p>The tags assigned to the Accessor.</p>
99
99
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
100
100
  * @public
101
101
  */
102
- Tags?: Record<string, string>;
102
+ Tags?: Record<string, string> | undefined;
103
103
  /**
104
104
  * <p>The blockchain network that the Accessor token is created for.</p>
105
105
  * @public
106
106
  */
107
- NetworkType?: AccessorNetworkType;
107
+ NetworkType?: AccessorNetworkType | undefined;
108
108
  }
109
109
  /**
110
110
  * <p>A summary of accessor properties.</p>
@@ -115,7 +115,7 @@ export interface AccessorSummary {
115
115
  * <p>The unique identifier of the accessor.</p>
116
116
  * @public
117
117
  */
118
- Id?: string;
118
+ Id?: string | undefined;
119
119
  /**
120
120
  * <p>The type of the accessor.</p>
121
121
  * <note>
@@ -123,29 +123,29 @@ export interface AccessorSummary {
123
123
  * </note>
124
124
  * @public
125
125
  */
126
- Type?: AccessorType;
126
+ Type?: AccessorType | undefined;
127
127
  /**
128
128
  * <p>The current status of the accessor.</p>
129
129
  * @public
130
130
  */
131
- Status?: AccessorStatus;
131
+ Status?: AccessorStatus | undefined;
132
132
  /**
133
133
  * <p>The creation date and time of the accessor.</p>
134
134
  * @public
135
135
  */
136
- CreationDate?: Date;
136
+ CreationDate?: Date | undefined;
137
137
  /**
138
138
  * <p>The Amazon Resource Name (ARN) of the accessor. For more information about
139
139
  * ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
140
140
  * Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
141
141
  * @public
142
142
  */
143
- Arn?: string;
143
+ Arn?: string | undefined;
144
144
  /**
145
145
  * <p>The blockchain network that the Accessor token is created for.</p>
146
146
  * @public
147
147
  */
148
- NetworkType?: AccessorNetworkType;
148
+ NetworkType?: AccessorNetworkType | undefined;
149
149
  }
150
150
  /**
151
151
  * @public
@@ -169,19 +169,19 @@ export interface ApprovalThresholdPolicy {
169
169
  * <p>The percentage of votes among all members that must be <code>YES</code> for a proposal to be approved. For example, a <code>ThresholdPercentage</code> value of <code>50</code> indicates 50%. The <code>ThresholdComparator</code> determines the precise comparison. If a <code>ThresholdPercentage</code> value of <code>50</code> is specified on a network with 10 members, along with a <code>ThresholdComparator</code> value of <code>GREATER_THAN</code>, this indicates that 6 <code>YES</code> votes are required for the proposal to be approved.</p>
170
170
  * @public
171
171
  */
172
- ThresholdPercentage?: number;
172
+ ThresholdPercentage?: number | undefined;
173
173
  /**
174
174
  * <p>The duration from the time that a proposal is created until it expires. If members cast neither the required number of <code>YES</code> votes to approve the proposal nor the number of <code>NO</code> votes required to reject it before the duration expires, the proposal is <code>EXPIRED</code> and <code>ProposalActions</code> aren't carried out.</p>
175
175
  * @public
176
176
  */
177
- ProposalDurationInHours?: number;
177
+ ProposalDurationInHours?: number | undefined;
178
178
  /**
179
179
  * <p>Determines whether the vote percentage must be greater than the
180
180
  * <code>ThresholdPercentage</code> or must be greater than or equal to the
181
181
  * <code>ThresholdPercentage</code> to be approved.</p>
182
182
  * @public
183
183
  */
184
- ThresholdComparator?: ThresholdComparator;
184
+ ThresholdComparator?: ThresholdComparator | undefined;
185
185
  }
186
186
  /**
187
187
  * @public
@@ -195,7 +195,7 @@ export interface CreateAccessorInput {
195
195
  * Amazon Web Services CLI.</p>
196
196
  * @public
197
197
  */
198
- ClientRequestToken?: string;
198
+ ClientRequestToken?: string | undefined;
199
199
  /**
200
200
  * <p>The type of accessor.</p>
201
201
  * <note>
@@ -212,7 +212,7 @@ export interface CreateAccessorInput {
212
212
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
213
213
  * @public
214
214
  */
215
- Tags?: Record<string, string>;
215
+ Tags?: Record<string, string> | undefined;
216
216
  /**
217
217
  * <p>The blockchain network that the <code>Accessor</code> token is created for.</p>
218
218
  * <note>
@@ -249,7 +249,7 @@ export interface CreateAccessorInput {
249
249
  * </note>
250
250
  * @public
251
251
  */
252
- NetworkType?: AccessorNetworkType;
252
+ NetworkType?: AccessorNetworkType | undefined;
253
253
  }
254
254
  /**
255
255
  * @public
@@ -259,19 +259,19 @@ export interface CreateAccessorOutput {
259
259
  * <p>The unique identifier of the accessor.</p>
260
260
  * @public
261
261
  */
262
- AccessorId?: string;
262
+ AccessorId?: string | undefined;
263
263
  /**
264
264
  * <p>The billing token is a property of the Accessor. Use this token to
265
265
  * when making calls to the blockchain network. The billing token is used
266
266
  * to track your accessor token for billing requests.</p>
267
267
  * @public
268
268
  */
269
- BillingToken?: string;
269
+ BillingToken?: string | undefined;
270
270
  /**
271
271
  * <p>The blockchain network that the accessor token is created for.</p>
272
272
  * @public
273
273
  */
274
- NetworkType?: AccessorNetworkType;
274
+ NetworkType?: AccessorNetworkType | undefined;
275
275
  }
276
276
  /**
277
277
  * <p>The request processing has failed because of an unknown error, exception or failure.</p>
@@ -292,7 +292,7 @@ export declare class InternalServiceErrorException extends __BaseException {
292
292
  export declare class InvalidRequestException extends __BaseException {
293
293
  readonly name: "InvalidRequestException";
294
294
  readonly $fault: "client";
295
- Message?: string;
295
+ Message?: string | undefined;
296
296
  /**
297
297
  * @internal
298
298
  */
@@ -305,7 +305,7 @@ export declare class InvalidRequestException extends __BaseException {
305
305
  export declare class ResourceAlreadyExistsException extends __BaseException {
306
306
  readonly name: "ResourceAlreadyExistsException";
307
307
  readonly $fault: "client";
308
- Message?: string;
308
+ Message?: string | undefined;
309
309
  /**
310
310
  * @internal
311
311
  */
@@ -319,7 +319,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
319
319
  export declare class ResourceLimitExceededException extends __BaseException {
320
320
  readonly name: "ResourceLimitExceededException";
321
321
  readonly $fault: "client";
322
- Message?: string;
322
+ Message?: string | undefined;
323
323
  /**
324
324
  * @internal
325
325
  */
@@ -347,12 +347,12 @@ export declare class ThrottlingException extends __BaseException {
347
347
  export declare class TooManyTagsException extends __BaseException {
348
348
  readonly name: "TooManyTagsException";
349
349
  readonly $fault: "client";
350
- Message?: string;
350
+ Message?: string | undefined;
351
351
  /**
352
352
  * <p></p>
353
353
  * @public
354
354
  */
355
- ResourceName?: string;
355
+ ResourceName?: string | undefined;
356
356
  /**
357
357
  * @internal
358
358
  */
@@ -383,7 +383,7 @@ export interface MemberFrameworkConfiguration {
383
383
  * <p>Attributes of Hyperledger Fabric for a member on a Managed Blockchain network that uses Hyperledger Fabric.</p>
384
384
  * @public
385
385
  */
386
- Fabric?: MemberFabricConfiguration;
386
+ Fabric?: MemberFabricConfiguration | undefined;
387
387
  }
388
388
  /**
389
389
  * <p>A configuration for logging events.</p>
@@ -394,7 +394,7 @@ export interface LogConfiguration {
394
394
  * <p>Indicates whether logging is enabled.</p>
395
395
  * @public
396
396
  */
397
- Enabled?: boolean;
397
+ Enabled?: boolean | undefined;
398
398
  }
399
399
  /**
400
400
  * <p>A collection of log configurations.</p>
@@ -405,7 +405,7 @@ export interface LogConfigurations {
405
405
  * <p>Parameters for publishing logs to Amazon CloudWatch Logs.</p>
406
406
  * @public
407
407
  */
408
- Cloudwatch?: LogConfiguration;
408
+ Cloudwatch?: LogConfiguration | undefined;
409
409
  }
410
410
  /**
411
411
  * <p>Configuration properties for logging events associated with a member of a Managed Blockchain network using the Hyperledger Fabric framework.</p>
@@ -416,7 +416,7 @@ export interface MemberFabricLogPublishingConfiguration {
416
416
  * <p>Configuration properties for logging events associated with a member's Certificate Authority (CA). CA logs help you determine when a member in your account joins the network, or when new peers register with a member CA.</p>
417
417
  * @public
418
418
  */
419
- CaLogs?: LogConfigurations;
419
+ CaLogs?: LogConfigurations | undefined;
420
420
  }
421
421
  /**
422
422
  * <p>Configuration properties for logging events associated with a member of a Managed Blockchain network.</p>
@@ -427,7 +427,7 @@ export interface MemberLogPublishingConfiguration {
427
427
  * <p>Configuration properties for logging events associated with a member of a Managed Blockchain network using the Hyperledger Fabric framework.</p>
428
428
  * @public
429
429
  */
430
- Fabric?: MemberFabricLogPublishingConfiguration;
430
+ Fabric?: MemberFabricLogPublishingConfiguration | undefined;
431
431
  }
432
432
  /**
433
433
  * <p>Configuration properties of the member.</p>
@@ -444,7 +444,7 @@ export interface MemberConfiguration {
444
444
  * <p>An optional description of the member.</p>
445
445
  * @public
446
446
  */
447
- Description?: string;
447
+ Description?: string | undefined;
448
448
  /**
449
449
  * <p>Configuration properties of the blockchain framework relevant to the member.</p>
450
450
  * @public
@@ -454,14 +454,14 @@ export interface MemberConfiguration {
454
454
  * <p>Configuration properties for logging events associated with a member of a Managed Blockchain network.</p>
455
455
  * @public
456
456
  */
457
- LogPublishingConfiguration?: MemberLogPublishingConfiguration;
457
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration | undefined;
458
458
  /**
459
459
  * <p>Tags assigned to the member. Tags consist of a key and optional value. </p>
460
460
  * <p>When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.</p>
461
461
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
462
462
  * @public
463
463
  */
464
- Tags?: Record<string, string>;
464
+ Tags?: Record<string, string> | undefined;
465
465
  /**
466
466
  * <p>The Amazon Resource Name (ARN) of the customer managed key in Key Management Service (KMS) to use for encryption at rest in the member. This parameter is inherited by any nodes that this member creates. For more information, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/managed-blockchain-encryption-at-rest.html">Encryption at Rest</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
467
467
  * <p>Use one of the following options to specify this parameter:</p>
@@ -480,7 +480,7 @@ export interface MemberConfiguration {
480
480
  * </ul>
481
481
  * @public
482
482
  */
483
- KmsKeyArn?: string;
483
+ KmsKeyArn?: string | undefined;
484
484
  }
485
485
  /**
486
486
  * @public
@@ -490,7 +490,7 @@ export interface CreateMemberInput {
490
490
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an Amazon Web Services SDK or the CLI.</p>
491
491
  * @public
492
492
  */
493
- ClientRequestToken?: string;
493
+ ClientRequestToken?: string | undefined;
494
494
  /**
495
495
  * <p>The unique identifier of the invitation that is sent to the member to join the network.</p>
496
496
  * @public
@@ -515,7 +515,7 @@ export interface CreateMemberOutput {
515
515
  * <p>The unique identifier of the member.</p>
516
516
  * @public
517
517
  */
518
- MemberId?: string;
518
+ MemberId?: string | undefined;
519
519
  }
520
520
  /**
521
521
  * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
@@ -524,12 +524,12 @@ export interface CreateMemberOutput {
524
524
  export declare class ResourceNotFoundException extends __BaseException {
525
525
  readonly name: "ResourceNotFoundException";
526
526
  readonly $fault: "client";
527
- Message?: string;
527
+ Message?: string | undefined;
528
528
  /**
529
529
  * <p>A requested resource doesn't exist. It may have been deleted or referenced inaccurately.</p>
530
530
  * @public
531
531
  */
532
- ResourceName?: string;
532
+ ResourceName?: string | undefined;
533
533
  /**
534
534
  * @internal
535
535
  */
@@ -542,7 +542,7 @@ export declare class ResourceNotFoundException extends __BaseException {
542
542
  export declare class ResourceNotReadyException extends __BaseException {
543
543
  readonly name: "ResourceNotReadyException";
544
544
  readonly $fault: "client";
545
- Message?: string;
545
+ Message?: string | undefined;
546
546
  /**
547
547
  * @internal
548
548
  */
@@ -596,7 +596,7 @@ export interface NetworkFrameworkConfiguration {
596
596
  * </p>
597
597
  * @public
598
598
  */
599
- Fabric?: NetworkFabricConfiguration;
599
+ Fabric?: NetworkFabricConfiguration | undefined;
600
600
  }
601
601
  /**
602
602
  * <p>
@@ -610,7 +610,7 @@ export interface VotingPolicy {
610
610
  * <p>Defines the rules for the network for voting on proposals, such as the percentage of <code>YES</code> votes required for the proposal to be approved and the duration of the proposal. The policy applies to all proposals and is specified when the network is created.</p>
611
611
  * @public
612
612
  */
613
- ApprovalThresholdPolicy?: ApprovalThresholdPolicy;
613
+ ApprovalThresholdPolicy?: ApprovalThresholdPolicy | undefined;
614
614
  }
615
615
  /**
616
616
  * @public
@@ -624,7 +624,7 @@ export interface CreateNetworkInput {
624
624
  * </p>
625
625
  * @public
626
626
  */
627
- ClientRequestToken?: string;
627
+ ClientRequestToken?: string | undefined;
628
628
  /**
629
629
  * <p>The name of the network.</p>
630
630
  * @public
@@ -634,7 +634,7 @@ export interface CreateNetworkInput {
634
634
  * <p>An optional description for the network.</p>
635
635
  * @public
636
636
  */
637
- Description?: string;
637
+ Description?: string | undefined;
638
638
  /**
639
639
  * <p>The blockchain framework that the network uses.</p>
640
640
  * @public
@@ -651,7 +651,7 @@ export interface CreateNetworkInput {
651
651
  * </p>
652
652
  * @public
653
653
  */
654
- FrameworkConfiguration?: NetworkFrameworkConfiguration;
654
+ FrameworkConfiguration?: NetworkFrameworkConfiguration | undefined;
655
655
  /**
656
656
  * <p>
657
657
  * The voting rules used by the network to determine if a proposal is approved.
@@ -672,7 +672,7 @@ export interface CreateNetworkInput {
672
672
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
673
673
  * @public
674
674
  */
675
- Tags?: Record<string, string>;
675
+ Tags?: Record<string, string> | undefined;
676
676
  }
677
677
  /**
678
678
  * @public
@@ -682,12 +682,12 @@ export interface CreateNetworkOutput {
682
682
  * <p>The unique identifier for the network.</p>
683
683
  * @public
684
684
  */
685
- NetworkId?: string;
685
+ NetworkId?: string | undefined;
686
686
  /**
687
687
  * <p>The unique identifier for the first member within the network.</p>
688
688
  * @public
689
689
  */
690
- MemberId?: string;
690
+ MemberId?: string | undefined;
691
691
  }
692
692
  /**
693
693
  * <p>Configuration properties for logging events associated with a peer node owned by a member in a Managed Blockchain network.</p>
@@ -698,12 +698,12 @@ export interface NodeFabricLogPublishingConfiguration {
698
698
  * <p>Configuration properties for logging events associated with chaincode execution on a peer node. Chaincode logs contain the results of instantiating, invoking, and querying the chaincode. A peer can run multiple instances of chaincode. When enabled, a log stream is created for all chaincodes, with an individual log stream for each chaincode.</p>
699
699
  * @public
700
700
  */
701
- ChaincodeLogs?: LogConfigurations;
701
+ ChaincodeLogs?: LogConfigurations | undefined;
702
702
  /**
703
703
  * <p>Configuration properties for a peer node log. Peer node logs contain messages generated when your client submits transaction proposals to peer nodes, requests to join channels, enrolls an admin peer, and lists the chaincode instances on a peer node. </p>
704
704
  * @public
705
705
  */
706
- PeerLogs?: LogConfigurations;
706
+ PeerLogs?: LogConfigurations | undefined;
707
707
  }
708
708
  /**
709
709
  * <p>Configuration properties for logging events associated with a peer node on a Hyperledger Fabric network on Managed Blockchain.</p>
@@ -714,7 +714,7 @@ export interface NodeLogPublishingConfiguration {
714
714
  * <p>Configuration properties for logging events associated with a node that is owned by a member of a Managed Blockchain network using the Hyperledger Fabric framework.</p>
715
715
  * @public
716
716
  */
717
- Fabric?: NodeFabricLogPublishingConfiguration;
717
+ Fabric?: NodeFabricLogPublishingConfiguration | undefined;
718
718
  }
719
719
  /**
720
720
  * @public
@@ -742,19 +742,19 @@ export interface NodeConfiguration {
742
742
  * <p>The Availability Zone in which the node exists. Required for Ethereum nodes. </p>
743
743
  * @public
744
744
  */
745
- AvailabilityZone?: string;
745
+ AvailabilityZone?: string | undefined;
746
746
  /**
747
747
  * <p>Configuration properties for logging events associated with a peer node on a Hyperledger Fabric network on Managed Blockchain.
748
748
  * </p>
749
749
  * @public
750
750
  */
751
- LogPublishingConfiguration?: NodeLogPublishingConfiguration;
751
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration | undefined;
752
752
  /**
753
753
  * <p>The state database that the node uses. Values are <code>LevelDB</code> or <code>CouchDB</code>. When using an Amazon Managed Blockchain network with Hyperledger Fabric version 1.4 or later, the default is <code>CouchDB</code>.</p>
754
754
  * <p>Applies only to Hyperledger Fabric.</p>
755
755
  * @public
756
756
  */
757
- StateDB?: StateDBType;
757
+ StateDB?: StateDBType | undefined;
758
758
  }
759
759
  /**
760
760
  * @public
@@ -764,7 +764,7 @@ export interface CreateNodeInput {
764
764
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an Amazon Web Services SDK or the CLI.</p>
765
765
  * @public
766
766
  */
767
- ClientRequestToken?: string;
767
+ ClientRequestToken?: string | undefined;
768
768
  /**
769
769
  * <p>The unique identifier of the network for the node.</p>
770
770
  * <p>Ethereum public networks have the following <code>NetworkId</code>s:</p>
@@ -783,7 +783,7 @@ export interface CreateNodeInput {
783
783
  * <p>Applies only to Hyperledger Fabric.</p>
784
784
  * @public
785
785
  */
786
- MemberId?: string;
786
+ MemberId?: string | undefined;
787
787
  /**
788
788
  * <p>The properties of a node configuration.</p>
789
789
  * @public
@@ -797,7 +797,7 @@ export interface CreateNodeInput {
797
797
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
798
798
  * @public
799
799
  */
800
- Tags?: Record<string, string>;
800
+ Tags?: Record<string, string> | undefined;
801
801
  }
802
802
  /**
803
803
  * @public
@@ -807,7 +807,7 @@ export interface CreateNodeOutput {
807
807
  * <p>The unique identifier of the node.</p>
808
808
  * @public
809
809
  */
810
- NodeId?: string;
810
+ NodeId?: string | undefined;
811
811
  }
812
812
  /**
813
813
  * <p>An action to invite a specific Amazon Web Services account to create a member and join the network. The <code>InviteAction</code> is carried out when a <code>Proposal</code> is <code>APPROVED</code>.</p>
@@ -847,14 +847,14 @@ export interface ProposalActions {
847
847
  * </p>
848
848
  * @public
849
849
  */
850
- Invitations?: InviteAction[];
850
+ Invitations?: InviteAction[] | undefined;
851
851
  /**
852
852
  * <p>
853
853
  * The actions to perform for an <code>APPROVED</code> proposal to remove a member from the network, which deletes the member and all associated member resources from the network.
854
854
  * </p>
855
855
  * @public
856
856
  */
857
- Removals?: RemoveAction[];
857
+ Removals?: RemoveAction[] | undefined;
858
858
  }
859
859
  /**
860
860
  * @public
@@ -864,7 +864,7 @@ export interface CreateProposalInput {
864
864
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an Amazon Web Services SDK or the CLI.</p>
865
865
  * @public
866
866
  */
867
- ClientRequestToken?: string;
867
+ ClientRequestToken?: string | undefined;
868
868
  /**
869
869
  * <p>
870
870
  * The unique identifier of the network for which the proposal is made.</p>
@@ -887,7 +887,7 @@ export interface CreateProposalInput {
887
887
  * <p>A description for the proposal that is visible to voting members, for example, "Proposal to add Example Corp. as member."</p>
888
888
  * @public
889
889
  */
890
- Description?: string;
890
+ Description?: string | undefined;
891
891
  /**
892
892
  * <p>Tags to assign to the proposal.</p>
893
893
  * <p> Each tag consists of a key and an optional value. You can specify
@@ -896,7 +896,7 @@ export interface CreateProposalInput {
896
896
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
897
897
  * @public
898
898
  */
899
- Tags?: Record<string, string>;
899
+ Tags?: Record<string, string> | undefined;
900
900
  }
901
901
  /**
902
902
  * @public
@@ -906,7 +906,7 @@ export interface CreateProposalOutput {
906
906
  * <p>The unique identifier of the proposal.</p>
907
907
  * @public
908
908
  */
909
- ProposalId?: string;
909
+ ProposalId?: string | undefined;
910
910
  }
911
911
  /**
912
912
  * @public
@@ -965,7 +965,7 @@ export interface DeleteNodeInput {
965
965
  * <p>Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.</p>
966
966
  * @public
967
967
  */
968
- MemberId?: string;
968
+ MemberId?: string | undefined;
969
969
  /**
970
970
  * <p>The unique identifier of the node.</p>
971
971
  * @public
@@ -995,7 +995,7 @@ export interface GetAccessorOutput {
995
995
  * <p>The properties of the accessor.</p>
996
996
  * @public
997
997
  */
998
- Accessor?: Accessor;
998
+ Accessor?: Accessor | undefined;
999
999
  }
1000
1000
  /**
1001
1001
  * @public
@@ -1021,12 +1021,12 @@ export interface MemberFabricAttributes {
1021
1021
  * <p>The user name for the initial administrator user for the member.</p>
1022
1022
  * @public
1023
1023
  */
1024
- AdminUsername?: string;
1024
+ AdminUsername?: string | undefined;
1025
1025
  /**
1026
1026
  * <p>The endpoint used to access the member's certificate authority.</p>
1027
1027
  * @public
1028
1028
  */
1029
- CaEndpoint?: string;
1029
+ CaEndpoint?: string | undefined;
1030
1030
  }
1031
1031
  /**
1032
1032
  * <p>Attributes relevant to a member for the blockchain framework that the Managed Blockchain network uses.</p>
@@ -1037,7 +1037,7 @@ export interface MemberFrameworkAttributes {
1037
1037
  * <p>Attributes of Hyperledger Fabric relevant to a member on a Managed Blockchain network that uses Hyperledger Fabric.</p>
1038
1038
  * @public
1039
1039
  */
1040
- Fabric?: MemberFabricAttributes;
1040
+ Fabric?: MemberFabricAttributes | undefined;
1041
1041
  }
1042
1042
  /**
1043
1043
  * @public
@@ -1066,32 +1066,32 @@ export interface Member {
1066
1066
  * <p>The unique identifier of the network to which the member belongs.</p>
1067
1067
  * @public
1068
1068
  */
1069
- NetworkId?: string;
1069
+ NetworkId?: string | undefined;
1070
1070
  /**
1071
1071
  * <p>The unique identifier of the member.</p>
1072
1072
  * @public
1073
1073
  */
1074
- Id?: string;
1074
+ Id?: string | undefined;
1075
1075
  /**
1076
1076
  * <p>The name of the member.</p>
1077
1077
  * @public
1078
1078
  */
1079
- Name?: string;
1079
+ Name?: string | undefined;
1080
1080
  /**
1081
1081
  * <p>An optional description for the member.</p>
1082
1082
  * @public
1083
1083
  */
1084
- Description?: string;
1084
+ Description?: string | undefined;
1085
1085
  /**
1086
1086
  * <p>Attributes relevant to a member for the blockchain framework that the Managed Blockchain network uses.</p>
1087
1087
  * @public
1088
1088
  */
1089
- FrameworkAttributes?: MemberFrameworkAttributes;
1089
+ FrameworkAttributes?: MemberFrameworkAttributes | undefined;
1090
1090
  /**
1091
1091
  * <p>Configuration properties for logging events associated with a member.</p>
1092
1092
  * @public
1093
1093
  */
1094
- LogPublishingConfiguration?: MemberLogPublishingConfiguration;
1094
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration | undefined;
1095
1095
  /**
1096
1096
  * <p>The status of a member.</p>
1097
1097
  * <ul>
@@ -1129,29 +1129,29 @@ export interface Member {
1129
1129
  * </ul>
1130
1130
  * @public
1131
1131
  */
1132
- Status?: MemberStatus;
1132
+ Status?: MemberStatus | undefined;
1133
1133
  /**
1134
1134
  * <p>The date and time that the member was created.</p>
1135
1135
  * @public
1136
1136
  */
1137
- CreationDate?: Date;
1137
+ CreationDate?: Date | undefined;
1138
1138
  /**
1139
1139
  * <p>Tags assigned to the member. Tags consist of a key and optional value.</p>
1140
1140
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
1141
1141
  * @public
1142
1142
  */
1143
- Tags?: Record<string, string>;
1143
+ Tags?: Record<string, string> | undefined;
1144
1144
  /**
1145
1145
  * <p>The Amazon Resource Name (ARN) of the member. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
1146
1146
  * @public
1147
1147
  */
1148
- Arn?: string;
1148
+ Arn?: string | undefined;
1149
1149
  /**
1150
1150
  * <p>The Amazon Resource Name (ARN) of the customer managed key in Key Management Service (KMS) that the member uses for encryption at rest. If the value of this parameter is <code>"AWS Owned KMS Key"</code>, the member uses an Amazon Web Services owned KMS key for encryption. This parameter is inherited by the nodes that this member owns.</p>
1151
1151
  * <p>For more information, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/managed-blockchain-encryption-at-rest.html">Encryption at Rest</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
1152
1152
  * @public
1153
1153
  */
1154
- KmsKeyArn?: string;
1154
+ KmsKeyArn?: string | undefined;
1155
1155
  }
1156
1156
  /**
1157
1157
  * @public
@@ -1161,7 +1161,7 @@ export interface GetMemberOutput {
1161
1161
  * <p>The properties of a member.</p>
1162
1162
  * @public
1163
1163
  */
1164
- Member?: Member;
1164
+ Member?: Member | undefined;
1165
1165
  }
1166
1166
  /**
1167
1167
  * @public
@@ -1188,7 +1188,7 @@ export interface NetworkEthereumAttributes {
1188
1188
  * </ul>
1189
1189
  * @public
1190
1190
  */
1191
- ChainId?: string;
1191
+ ChainId?: string | undefined;
1192
1192
  }
1193
1193
  /**
1194
1194
  * <p>Attributes of Hyperledger Fabric for a network.</p>
@@ -1199,12 +1199,12 @@ export interface NetworkFabricAttributes {
1199
1199
  * <p>The endpoint of the ordering service for the network.</p>
1200
1200
  * @public
1201
1201
  */
1202
- OrderingServiceEndpoint?: string;
1202
+ OrderingServiceEndpoint?: string | undefined;
1203
1203
  /**
1204
1204
  * <p>The edition of Amazon Managed Blockchain that Hyperledger Fabric uses. For more information, see <a href="http://aws.amazon.com/managed-blockchain/pricing/">Amazon Managed Blockchain Pricing</a>.</p>
1205
1205
  * @public
1206
1206
  */
1207
- Edition?: Edition;
1207
+ Edition?: Edition | undefined;
1208
1208
  }
1209
1209
  /**
1210
1210
  * <p>Attributes relevant to the network for the blockchain framework that the network uses.</p>
@@ -1215,12 +1215,12 @@ export interface NetworkFrameworkAttributes {
1215
1215
  * <p>Attributes of Hyperledger Fabric for a Managed Blockchain network that uses Hyperledger Fabric.</p>
1216
1216
  * @public
1217
1217
  */
1218
- Fabric?: NetworkFabricAttributes;
1218
+ Fabric?: NetworkFabricAttributes | undefined;
1219
1219
  /**
1220
1220
  * <p>Attributes of an Ethereum network for Managed Blockchain resources participating in an Ethereum network. </p>
1221
1221
  * @public
1222
1222
  */
1223
- Ethereum?: NetworkEthereumAttributes;
1223
+ Ethereum?: NetworkEthereumAttributes | undefined;
1224
1224
  }
1225
1225
  /**
1226
1226
  * @public
@@ -1246,63 +1246,63 @@ export interface Network {
1246
1246
  * <p>The unique identifier of the network.</p>
1247
1247
  * @public
1248
1248
  */
1249
- Id?: string;
1249
+ Id?: string | undefined;
1250
1250
  /**
1251
1251
  * <p>The name of the network.</p>
1252
1252
  * @public
1253
1253
  */
1254
- Name?: string;
1254
+ Name?: string | undefined;
1255
1255
  /**
1256
1256
  * <p>Attributes of the blockchain framework for the network.</p>
1257
1257
  * @public
1258
1258
  */
1259
- Description?: string;
1259
+ Description?: string | undefined;
1260
1260
  /**
1261
1261
  * <p>The blockchain framework that the network uses.</p>
1262
1262
  * @public
1263
1263
  */
1264
- Framework?: Framework;
1264
+ Framework?: Framework | undefined;
1265
1265
  /**
1266
1266
  * <p>The version of the blockchain framework that the network uses.</p>
1267
1267
  * @public
1268
1268
  */
1269
- FrameworkVersion?: string;
1269
+ FrameworkVersion?: string | undefined;
1270
1270
  /**
1271
1271
  * <p>Attributes of the blockchain framework that the network uses.</p>
1272
1272
  * @public
1273
1273
  */
1274
- FrameworkAttributes?: NetworkFrameworkAttributes;
1274
+ FrameworkAttributes?: NetworkFrameworkAttributes | undefined;
1275
1275
  /**
1276
1276
  * <p>The VPC endpoint service name of the VPC endpoint service of the network. Members use the VPC endpoint service name to create a VPC endpoint to access network resources.</p>
1277
1277
  * @public
1278
1278
  */
1279
- VpcEndpointServiceName?: string;
1279
+ VpcEndpointServiceName?: string | undefined;
1280
1280
  /**
1281
1281
  * <p>The voting rules that the network uses to decide if a proposal is accepted.</p>
1282
1282
  * @public
1283
1283
  */
1284
- VotingPolicy?: VotingPolicy;
1284
+ VotingPolicy?: VotingPolicy | undefined;
1285
1285
  /**
1286
1286
  * <p>The current status of the network.</p>
1287
1287
  * @public
1288
1288
  */
1289
- Status?: NetworkStatus;
1289
+ Status?: NetworkStatus | undefined;
1290
1290
  /**
1291
1291
  * <p>The date and time that the network was created.</p>
1292
1292
  * @public
1293
1293
  */
1294
- CreationDate?: Date;
1294
+ CreationDate?: Date | undefined;
1295
1295
  /**
1296
1296
  * <p>Tags assigned to the network. Each tag consists of a key and optional value.</p>
1297
1297
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
1298
1298
  * @public
1299
1299
  */
1300
- Tags?: Record<string, string>;
1300
+ Tags?: Record<string, string> | undefined;
1301
1301
  /**
1302
1302
  * <p>The Amazon Resource Name (ARN) of the network. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
1303
1303
  * @public
1304
1304
  */
1305
- Arn?: string;
1305
+ Arn?: string | undefined;
1306
1306
  }
1307
1307
  /**
1308
1308
  * @public
@@ -1312,7 +1312,7 @@ export interface GetNetworkOutput {
1312
1312
  * <p>An object containing network configuration parameters.</p>
1313
1313
  * @public
1314
1314
  */
1315
- Network?: Network;
1315
+ Network?: Network | undefined;
1316
1316
  }
1317
1317
  /**
1318
1318
  * @public
@@ -1328,7 +1328,7 @@ export interface GetNodeInput {
1328
1328
  * <p>Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.</p>
1329
1329
  * @public
1330
1330
  */
1331
- MemberId?: string;
1331
+ MemberId?: string | undefined;
1332
1332
  /**
1333
1333
  * <p>The unique identifier of the node.</p>
1334
1334
  * @public
@@ -1344,12 +1344,12 @@ export interface NodeEthereumAttributes {
1344
1344
  * <p>The endpoint on which the Ethereum node listens to run Ethereum API methods over HTTP connections from a client. Use this endpoint in client code for smart contracts when using an HTTP connection. Connections to this endpoint are authenticated using <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>.</p>
1345
1345
  * @public
1346
1346
  */
1347
- HttpEndpoint?: string;
1347
+ HttpEndpoint?: string | undefined;
1348
1348
  /**
1349
1349
  * <p>The endpoint on which the Ethereum node listens to run Ethereum JSON-RPC methods over WebSocket connections from a client. Use this endpoint in client code for smart contracts when using a WebSocket connection. Connections to this endpoint are authenticated using <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>.</p>
1350
1350
  * @public
1351
1351
  */
1352
- WebSocketEndpoint?: string;
1352
+ WebSocketEndpoint?: string | undefined;
1353
1353
  }
1354
1354
  /**
1355
1355
  * <p>Attributes of Hyperledger Fabric for a peer node on a Hyperledger Fabric network on Managed Blockchain.</p>
@@ -1360,12 +1360,12 @@ export interface NodeFabricAttributes {
1360
1360
  * <p>The endpoint that identifies the peer node for all services except peer channel-based event services.</p>
1361
1361
  * @public
1362
1362
  */
1363
- PeerEndpoint?: string;
1363
+ PeerEndpoint?: string | undefined;
1364
1364
  /**
1365
1365
  * <p>The endpoint that identifies the peer node for peer channel-based event services.</p>
1366
1366
  * @public
1367
1367
  */
1368
- PeerEventEndpoint?: string;
1368
+ PeerEventEndpoint?: string | undefined;
1369
1369
  }
1370
1370
  /**
1371
1371
  * <p>Attributes relevant to a node on a Managed Blockchain network for the blockchain framework that the network uses.</p>
@@ -1376,12 +1376,12 @@ export interface NodeFrameworkAttributes {
1376
1376
  * <p>Attributes of Hyperledger Fabric for a peer node on a Managed Blockchain network that uses Hyperledger Fabric.</p>
1377
1377
  * @public
1378
1378
  */
1379
- Fabric?: NodeFabricAttributes;
1379
+ Fabric?: NodeFabricAttributes | undefined;
1380
1380
  /**
1381
1381
  * <p>Attributes of Ethereum for a node on a Managed Blockchain network that uses Ethereum. </p>
1382
1382
  * @public
1383
1383
  */
1384
- Ethereum?: NodeEthereumAttributes;
1384
+ Ethereum?: NodeEthereumAttributes | undefined;
1385
1385
  }
1386
1386
  /**
1387
1387
  * @public
@@ -1411,44 +1411,44 @@ export interface Node {
1411
1411
  * <p>The unique identifier of the network that the node is on.</p>
1412
1412
  * @public
1413
1413
  */
1414
- NetworkId?: string;
1414
+ NetworkId?: string | undefined;
1415
1415
  /**
1416
1416
  * <p>The unique identifier of the member to which the node belongs.</p>
1417
1417
  * <p>Applies only to Hyperledger Fabric.</p>
1418
1418
  * @public
1419
1419
  */
1420
- MemberId?: string;
1420
+ MemberId?: string | undefined;
1421
1421
  /**
1422
1422
  * <p>The unique identifier of the node.</p>
1423
1423
  * @public
1424
1424
  */
1425
- Id?: string;
1425
+ Id?: string | undefined;
1426
1426
  /**
1427
1427
  * <p>The instance type of the node.</p>
1428
1428
  * @public
1429
1429
  */
1430
- InstanceType?: string;
1430
+ InstanceType?: string | undefined;
1431
1431
  /**
1432
1432
  * <p>The Availability Zone in which the node exists. Required for Ethereum nodes. </p>
1433
1433
  * @public
1434
1434
  */
1435
- AvailabilityZone?: string;
1435
+ AvailabilityZone?: string | undefined;
1436
1436
  /**
1437
1437
  * <p>Attributes of the blockchain framework being used.</p>
1438
1438
  * @public
1439
1439
  */
1440
- FrameworkAttributes?: NodeFrameworkAttributes;
1440
+ FrameworkAttributes?: NodeFrameworkAttributes | undefined;
1441
1441
  /**
1442
1442
  * <p>Configuration properties for logging events associated with a peer node on a Hyperledger Fabric network on Managed Blockchain.</p>
1443
1443
  * @public
1444
1444
  */
1445
- LogPublishingConfiguration?: NodeLogPublishingConfiguration;
1445
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration | undefined;
1446
1446
  /**
1447
1447
  * <p>The state database that the node uses. Values are <code>LevelDB</code> or <code>CouchDB</code>.</p>
1448
1448
  * <p>Applies only to Hyperledger Fabric.</p>
1449
1449
  * @public
1450
1450
  */
1451
- StateDB?: StateDBType;
1451
+ StateDB?: StateDBType | undefined;
1452
1452
  /**
1453
1453
  * <p>The status of the node.</p>
1454
1454
  * <ul>
@@ -1492,30 +1492,30 @@ export interface Node {
1492
1492
  * </ul>
1493
1493
  * @public
1494
1494
  */
1495
- Status?: NodeStatus;
1495
+ Status?: NodeStatus | undefined;
1496
1496
  /**
1497
1497
  * <p>The date and time that the node was created.</p>
1498
1498
  * @public
1499
1499
  */
1500
- CreationDate?: Date;
1500
+ CreationDate?: Date | undefined;
1501
1501
  /**
1502
1502
  * <p>Tags assigned to the node. Each tag consists of a key and optional value.</p>
1503
1503
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
1504
1504
  * @public
1505
1505
  */
1506
- Tags?: Record<string, string>;
1506
+ Tags?: Record<string, string> | undefined;
1507
1507
  /**
1508
1508
  * <p>The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
1509
1509
  * @public
1510
1510
  */
1511
- Arn?: string;
1511
+ Arn?: string | undefined;
1512
1512
  /**
1513
1513
  * <p>The Amazon Resource Name (ARN) of the customer managed key in Key Management Service (KMS) that the node uses for encryption at rest. If the value of this parameter is <code>"AWS Owned KMS Key"</code>, the node uses an Amazon Web Services owned KMS key for encryption. The node inherits this parameter from the member that it belongs to.</p>
1514
1514
  * <p>For more information, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/managed-blockchain-encryption-at-rest.html">Encryption at Rest</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
1515
1515
  * <p>Applies only to Hyperledger Fabric.</p>
1516
1516
  * @public
1517
1517
  */
1518
- KmsKeyArn?: string;
1518
+ KmsKeyArn?: string | undefined;
1519
1519
  }
1520
1520
  /**
1521
1521
  * @public
@@ -1525,7 +1525,7 @@ export interface GetNodeOutput {
1525
1525
  * <p>Properties of the node configuration.</p>
1526
1526
  * @public
1527
1527
  */
1528
- Node?: Node;
1528
+ Node?: Node | undefined;
1529
1529
  }
1530
1530
  /**
1531
1531
  * @public
@@ -1567,32 +1567,32 @@ export interface Proposal {
1567
1567
  * <p>The unique identifier of the proposal.</p>
1568
1568
  * @public
1569
1569
  */
1570
- ProposalId?: string;
1570
+ ProposalId?: string | undefined;
1571
1571
  /**
1572
1572
  * <p>The unique identifier of the network for which the proposal is made.</p>
1573
1573
  * @public
1574
1574
  */
1575
- NetworkId?: string;
1575
+ NetworkId?: string | undefined;
1576
1576
  /**
1577
1577
  * <p>The description of the proposal.</p>
1578
1578
  * @public
1579
1579
  */
1580
- Description?: string;
1580
+ Description?: string | undefined;
1581
1581
  /**
1582
1582
  * <p>The actions to perform on the network if the proposal is <code>APPROVED</code>.</p>
1583
1583
  * @public
1584
1584
  */
1585
- Actions?: ProposalActions;
1585
+ Actions?: ProposalActions | undefined;
1586
1586
  /**
1587
1587
  * <p>The unique identifier of the member that created the proposal.</p>
1588
1588
  * @public
1589
1589
  */
1590
- ProposedByMemberId?: string;
1590
+ ProposedByMemberId?: string | undefined;
1591
1591
  /**
1592
1592
  * <p>The name of the member that created the proposal.</p>
1593
1593
  * @public
1594
1594
  */
1595
- ProposedByMemberName?: string;
1595
+ ProposedByMemberName?: string | undefined;
1596
1596
  /**
1597
1597
  * <p>The status of the proposal. Values are as follows:</p>
1598
1598
  * <ul>
@@ -1619,53 +1619,53 @@ export interface Proposal {
1619
1619
  * </ul>
1620
1620
  * @public
1621
1621
  */
1622
- Status?: ProposalStatus;
1622
+ Status?: ProposalStatus | undefined;
1623
1623
  /**
1624
1624
  * <p>
1625
1625
  * The date and time that the proposal was created.
1626
1626
  * </p>
1627
1627
  * @public
1628
1628
  */
1629
- CreationDate?: Date;
1629
+ CreationDate?: Date | undefined;
1630
1630
  /**
1631
1631
  * <p>
1632
1632
  * The date and time that the proposal expires. This is the <code>CreationDate</code> plus the <code>ProposalDurationInHours</code> that is specified in the <code>ProposalThresholdPolicy</code>. After this date and time, if members haven't cast enough votes to determine the outcome according to the voting policy, the proposal is <code>EXPIRED</code> and <code>Actions</code> aren't carried out.
1633
1633
  * </p>
1634
1634
  * @public
1635
1635
  */
1636
- ExpirationDate?: Date;
1636
+ ExpirationDate?: Date | undefined;
1637
1637
  /**
1638
1638
  * <p>
1639
1639
  * The current total of <code>YES</code> votes cast on the proposal by members.
1640
1640
  * </p>
1641
1641
  * @public
1642
1642
  */
1643
- YesVoteCount?: number;
1643
+ YesVoteCount?: number | undefined;
1644
1644
  /**
1645
1645
  * <p>
1646
1646
  * The current total of <code>NO</code> votes cast on the proposal by members.
1647
1647
  * </p>
1648
1648
  * @public
1649
1649
  */
1650
- NoVoteCount?: number;
1650
+ NoVoteCount?: number | undefined;
1651
1651
  /**
1652
1652
  * <p>
1653
1653
  * The number of votes remaining to be cast on the proposal by members. In other words, the number of members minus the sum of <code>YES</code> votes and <code>NO</code> votes.
1654
1654
  * </p>
1655
1655
  * @public
1656
1656
  */
1657
- OutstandingVoteCount?: number;
1657
+ OutstandingVoteCount?: number | undefined;
1658
1658
  /**
1659
1659
  * <p>Tags assigned to the proposal. Each tag consists of a key and optional value.</p>
1660
1660
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
1661
1661
  * @public
1662
1662
  */
1663
- Tags?: Record<string, string>;
1663
+ Tags?: Record<string, string> | undefined;
1664
1664
  /**
1665
1665
  * <p>The Amazon Resource Name (ARN) of the proposal. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
1666
1666
  * @public
1667
1667
  */
1668
- Arn?: string;
1668
+ Arn?: string | undefined;
1669
1669
  }
1670
1670
  /**
1671
1671
  * @public
@@ -1675,7 +1675,7 @@ export interface GetProposalOutput {
1675
1675
  * <p>Information about a proposal.</p>
1676
1676
  * @public
1677
1677
  */
1678
- Proposal?: Proposal;
1678
+ Proposal?: Proposal | undefined;
1679
1679
  }
1680
1680
  /**
1681
1681
  * <p></p>
@@ -1684,7 +1684,7 @@ export interface GetProposalOutput {
1684
1684
  export declare class IllegalActionException extends __BaseException {
1685
1685
  readonly name: "IllegalActionException";
1686
1686
  readonly $fault: "client";
1687
- Message?: string;
1687
+ Message?: string | undefined;
1688
1688
  /**
1689
1689
  * @internal
1690
1690
  */
@@ -1699,42 +1699,42 @@ export interface NetworkSummary {
1699
1699
  * <p>The unique identifier of the network.</p>
1700
1700
  * @public
1701
1701
  */
1702
- Id?: string;
1702
+ Id?: string | undefined;
1703
1703
  /**
1704
1704
  * <p>The name of the network.</p>
1705
1705
  * @public
1706
1706
  */
1707
- Name?: string;
1707
+ Name?: string | undefined;
1708
1708
  /**
1709
1709
  * <p>An optional description of the network.</p>
1710
1710
  * @public
1711
1711
  */
1712
- Description?: string;
1712
+ Description?: string | undefined;
1713
1713
  /**
1714
1714
  * <p>The blockchain framework that the network uses.</p>
1715
1715
  * @public
1716
1716
  */
1717
- Framework?: Framework;
1717
+ Framework?: Framework | undefined;
1718
1718
  /**
1719
1719
  * <p>The version of the blockchain framework that the network uses.</p>
1720
1720
  * @public
1721
1721
  */
1722
- FrameworkVersion?: string;
1722
+ FrameworkVersion?: string | undefined;
1723
1723
  /**
1724
1724
  * <p>The current status of the network.</p>
1725
1725
  * @public
1726
1726
  */
1727
- Status?: NetworkStatus;
1727
+ Status?: NetworkStatus | undefined;
1728
1728
  /**
1729
1729
  * <p>The date and time that the network was created.</p>
1730
1730
  * @public
1731
1731
  */
1732
- CreationDate?: Date;
1732
+ CreationDate?: Date | undefined;
1733
1733
  /**
1734
1734
  * <p>The Amazon Resource Name (ARN) of the network. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
1735
1735
  * @public
1736
1736
  */
1737
- Arn?: string;
1737
+ Arn?: string | undefined;
1738
1738
  }
1739
1739
  /**
1740
1740
  * @public
@@ -1761,17 +1761,17 @@ export interface Invitation {
1761
1761
  * <p>The unique identifier for the invitation.</p>
1762
1762
  * @public
1763
1763
  */
1764
- InvitationId?: string;
1764
+ InvitationId?: string | undefined;
1765
1765
  /**
1766
1766
  * <p>The date and time that the invitation was created.</p>
1767
1767
  * @public
1768
1768
  */
1769
- CreationDate?: Date;
1769
+ CreationDate?: Date | undefined;
1770
1770
  /**
1771
1771
  * <p>The date and time that the invitation expires. This is the <code>CreationDate</code> plus the <code>ProposalDurationInHours</code> that is specified in the <code>ProposalThresholdPolicy</code>. After this date and time, the invitee can no longer create a member and join the network using this <code>InvitationId</code>.</p>
1772
1772
  * @public
1773
1773
  */
1774
- ExpirationDate?: Date;
1774
+ ExpirationDate?: Date | undefined;
1775
1775
  /**
1776
1776
  * <p>The status of the invitation:</p>
1777
1777
  * <ul>
@@ -1798,17 +1798,17 @@ export interface Invitation {
1798
1798
  * </ul>
1799
1799
  * @public
1800
1800
  */
1801
- Status?: InvitationStatus;
1801
+ Status?: InvitationStatus | undefined;
1802
1802
  /**
1803
1803
  * <p>A summary of network configuration properties.</p>
1804
1804
  * @public
1805
1805
  */
1806
- NetworkSummary?: NetworkSummary;
1806
+ NetworkSummary?: NetworkSummary | undefined;
1807
1807
  /**
1808
1808
  * <p>The Amazon Resource Name (ARN) of the invitation. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
1809
1809
  * @public
1810
1810
  */
1811
- Arn?: string;
1811
+ Arn?: string | undefined;
1812
1812
  }
1813
1813
  /**
1814
1814
  * @public
@@ -1818,12 +1818,12 @@ export interface ListAccessorsInput {
1818
1818
  * <p> The maximum number of accessors to list.</p>
1819
1819
  * @public
1820
1820
  */
1821
- MaxResults?: number;
1821
+ MaxResults?: number | undefined;
1822
1822
  /**
1823
1823
  * <p> The pagination token that indicates the next set of results to retrieve. </p>
1824
1824
  * @public
1825
1825
  */
1826
- NextToken?: string;
1826
+ NextToken?: string | undefined;
1827
1827
  /**
1828
1828
  * <p>The blockchain network that the <code>Accessor</code> token is created for.</p>
1829
1829
  * <note>
@@ -1833,7 +1833,7 @@ export interface ListAccessorsInput {
1833
1833
  * </note>
1834
1834
  * @public
1835
1835
  */
1836
- NetworkType?: AccessorNetworkType;
1836
+ NetworkType?: AccessorNetworkType | undefined;
1837
1837
  }
1838
1838
  /**
1839
1839
  * @public
@@ -1844,12 +1844,12 @@ export interface ListAccessorsOutput {
1844
1844
  * each accessor.</p>
1845
1845
  * @public
1846
1846
  */
1847
- Accessors?: AccessorSummary[];
1847
+ Accessors?: AccessorSummary[] | undefined;
1848
1848
  /**
1849
1849
  * <p> The pagination token that indicates the next set of results to retrieve. </p>
1850
1850
  * @public
1851
1851
  */
1852
- NextToken?: string;
1852
+ NextToken?: string | undefined;
1853
1853
  }
1854
1854
  /**
1855
1855
  * @public
@@ -1859,12 +1859,12 @@ export interface ListInvitationsInput {
1859
1859
  * <p>The maximum number of invitations to return.</p>
1860
1860
  * @public
1861
1861
  */
1862
- MaxResults?: number;
1862
+ MaxResults?: number | undefined;
1863
1863
  /**
1864
1864
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1865
1865
  * @public
1866
1866
  */
1867
- NextToken?: string;
1867
+ NextToken?: string | undefined;
1868
1868
  }
1869
1869
  /**
1870
1870
  * @public
@@ -1874,12 +1874,12 @@ export interface ListInvitationsOutput {
1874
1874
  * <p>The invitations for the network.</p>
1875
1875
  * @public
1876
1876
  */
1877
- Invitations?: Invitation[];
1877
+ Invitations?: Invitation[] | undefined;
1878
1878
  /**
1879
1879
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1880
1880
  * @public
1881
1881
  */
1882
- NextToken?: string;
1882
+ NextToken?: string | undefined;
1883
1883
  }
1884
1884
  /**
1885
1885
  * @public
@@ -1894,29 +1894,29 @@ export interface ListMembersInput {
1894
1894
  * <p>The optional name of the member to list.</p>
1895
1895
  * @public
1896
1896
  */
1897
- Name?: string;
1897
+ Name?: string | undefined;
1898
1898
  /**
1899
1899
  * <p>An optional status specifier. If provided, only members currently in this status are listed.</p>
1900
1900
  * @public
1901
1901
  */
1902
- Status?: MemberStatus;
1902
+ Status?: MemberStatus | undefined;
1903
1903
  /**
1904
1904
  * <p>An optional Boolean value. If provided, the request is limited either to
1905
1905
  * members that the current Amazon Web Services account owns (<code>true</code>) or that other Amazon Web Services accountsn
1906
1906
  * own (<code>false</code>). If omitted, all members are listed.</p>
1907
1907
  * @public
1908
1908
  */
1909
- IsOwned?: boolean;
1909
+ IsOwned?: boolean | undefined;
1910
1910
  /**
1911
1911
  * <p>The maximum number of members to return in the request.</p>
1912
1912
  * @public
1913
1913
  */
1914
- MaxResults?: number;
1914
+ MaxResults?: number | undefined;
1915
1915
  /**
1916
1916
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1917
1917
  * @public
1918
1918
  */
1919
- NextToken?: string;
1919
+ NextToken?: string | undefined;
1920
1920
  }
1921
1921
  /**
1922
1922
  * <p>A summary of configuration properties for a member.</p>
@@ -1928,17 +1928,17 @@ export interface MemberSummary {
1928
1928
  * <p>The unique identifier of the member.</p>
1929
1929
  * @public
1930
1930
  */
1931
- Id?: string;
1931
+ Id?: string | undefined;
1932
1932
  /**
1933
1933
  * <p>The name of the member.</p>
1934
1934
  * @public
1935
1935
  */
1936
- Name?: string;
1936
+ Name?: string | undefined;
1937
1937
  /**
1938
1938
  * <p>An optional description of the member.</p>
1939
1939
  * @public
1940
1940
  */
1941
- Description?: string;
1941
+ Description?: string | undefined;
1942
1942
  /**
1943
1943
  * <p>The status of the member.</p>
1944
1944
  * <ul>
@@ -1976,22 +1976,22 @@ export interface MemberSummary {
1976
1976
  * </ul>
1977
1977
  * @public
1978
1978
  */
1979
- Status?: MemberStatus;
1979
+ Status?: MemberStatus | undefined;
1980
1980
  /**
1981
1981
  * <p>The date and time that the member was created.</p>
1982
1982
  * @public
1983
1983
  */
1984
- CreationDate?: Date;
1984
+ CreationDate?: Date | undefined;
1985
1985
  /**
1986
1986
  * <p>An indicator of whether the member is owned by your Amazon Web Services account or a different Amazon Web Services account.</p>
1987
1987
  * @public
1988
1988
  */
1989
- IsOwned?: boolean;
1989
+ IsOwned?: boolean | undefined;
1990
1990
  /**
1991
1991
  * <p>The Amazon Resource Name (ARN) of the member. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
1992
1992
  * @public
1993
1993
  */
1994
- Arn?: string;
1994
+ Arn?: string | undefined;
1995
1995
  }
1996
1996
  /**
1997
1997
  * @public
@@ -2001,12 +2001,12 @@ export interface ListMembersOutput {
2001
2001
  * <p>An array of <code>MemberSummary</code> objects. Each object contains details about a network member.</p>
2002
2002
  * @public
2003
2003
  */
2004
- Members?: MemberSummary[];
2004
+ Members?: MemberSummary[] | undefined;
2005
2005
  /**
2006
2006
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
2007
2007
  * @public
2008
2008
  */
2009
- NextToken?: string;
2009
+ NextToken?: string | undefined;
2010
2010
  }
2011
2011
  /**
2012
2012
  * @public
@@ -2016,28 +2016,28 @@ export interface ListNetworksInput {
2016
2016
  * <p>The name of the network.</p>
2017
2017
  * @public
2018
2018
  */
2019
- Name?: string;
2019
+ Name?: string | undefined;
2020
2020
  /**
2021
2021
  * <p>An optional framework specifier. If provided, only networks of this framework type are listed.</p>
2022
2022
  * @public
2023
2023
  */
2024
- Framework?: Framework;
2024
+ Framework?: Framework | undefined;
2025
2025
  /**
2026
2026
  * <p>An optional status specifier. If provided, only networks currently in this status are listed.</p>
2027
2027
  * <p>Applies only to Hyperledger Fabric.</p>
2028
2028
  * @public
2029
2029
  */
2030
- Status?: NetworkStatus;
2030
+ Status?: NetworkStatus | undefined;
2031
2031
  /**
2032
2032
  * <p>The maximum number of networks to list.</p>
2033
2033
  * @public
2034
2034
  */
2035
- MaxResults?: number;
2035
+ MaxResults?: number | undefined;
2036
2036
  /**
2037
2037
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
2038
2038
  * @public
2039
2039
  */
2040
- NextToken?: string;
2040
+ NextToken?: string | undefined;
2041
2041
  }
2042
2042
  /**
2043
2043
  * @public
@@ -2047,12 +2047,12 @@ export interface ListNetworksOutput {
2047
2047
  * <p>An array of <code>NetworkSummary</code> objects that contain configuration properties for each network.</p>
2048
2048
  * @public
2049
2049
  */
2050
- Networks?: NetworkSummary[];
2050
+ Networks?: NetworkSummary[] | undefined;
2051
2051
  /**
2052
2052
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
2053
2053
  * @public
2054
2054
  */
2055
- NextToken?: string;
2055
+ NextToken?: string | undefined;
2056
2056
  }
2057
2057
  /**
2058
2058
  * @public
@@ -2068,22 +2068,22 @@ export interface ListNodesInput {
2068
2068
  * <p>Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.</p>
2069
2069
  * @public
2070
2070
  */
2071
- MemberId?: string;
2071
+ MemberId?: string | undefined;
2072
2072
  /**
2073
2073
  * <p>An optional status specifier. If provided, only nodes currently in this status are listed.</p>
2074
2074
  * @public
2075
2075
  */
2076
- Status?: NodeStatus;
2076
+ Status?: NodeStatus | undefined;
2077
2077
  /**
2078
2078
  * <p>The maximum number of nodes to list.</p>
2079
2079
  * @public
2080
2080
  */
2081
- MaxResults?: number;
2081
+ MaxResults?: number | undefined;
2082
2082
  /**
2083
2083
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
2084
2084
  * @public
2085
2085
  */
2086
- NextToken?: string;
2086
+ NextToken?: string | undefined;
2087
2087
  }
2088
2088
  /**
2089
2089
  * <p>A summary of configuration properties for a node.</p>
@@ -2094,32 +2094,32 @@ export interface NodeSummary {
2094
2094
  * <p>The unique identifier of the node.</p>
2095
2095
  * @public
2096
2096
  */
2097
- Id?: string;
2097
+ Id?: string | undefined;
2098
2098
  /**
2099
2099
  * <p>The status of the node.</p>
2100
2100
  * @public
2101
2101
  */
2102
- Status?: NodeStatus;
2102
+ Status?: NodeStatus | undefined;
2103
2103
  /**
2104
2104
  * <p>The date and time that the node was created.</p>
2105
2105
  * @public
2106
2106
  */
2107
- CreationDate?: Date;
2107
+ CreationDate?: Date | undefined;
2108
2108
  /**
2109
2109
  * <p>The Availability Zone in which the node exists.</p>
2110
2110
  * @public
2111
2111
  */
2112
- AvailabilityZone?: string;
2112
+ AvailabilityZone?: string | undefined;
2113
2113
  /**
2114
2114
  * <p>The EC2 instance type for the node.</p>
2115
2115
  * @public
2116
2116
  */
2117
- InstanceType?: string;
2117
+ InstanceType?: string | undefined;
2118
2118
  /**
2119
2119
  * <p>The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
2120
2120
  * @public
2121
2121
  */
2122
- Arn?: string;
2122
+ Arn?: string | undefined;
2123
2123
  }
2124
2124
  /**
2125
2125
  * @public
@@ -2129,12 +2129,12 @@ export interface ListNodesOutput {
2129
2129
  * <p>An array of <code>NodeSummary</code> objects that contain configuration properties for each node.</p>
2130
2130
  * @public
2131
2131
  */
2132
- Nodes?: NodeSummary[];
2132
+ Nodes?: NodeSummary[] | undefined;
2133
2133
  /**
2134
2134
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
2135
2135
  * @public
2136
2136
  */
2137
- NextToken?: string;
2137
+ NextToken?: string | undefined;
2138
2138
  }
2139
2139
  /**
2140
2140
  * @public
@@ -2153,14 +2153,14 @@ export interface ListProposalsInput {
2153
2153
  * </p>
2154
2154
  * @public
2155
2155
  */
2156
- MaxResults?: number;
2156
+ MaxResults?: number | undefined;
2157
2157
  /**
2158
2158
  * <p>
2159
2159
  * The pagination token that indicates the next set of results to retrieve.
2160
2160
  * </p>
2161
2161
  * @public
2162
2162
  */
2163
- NextToken?: string;
2163
+ NextToken?: string | undefined;
2164
2164
  }
2165
2165
  /**
2166
2166
  * <p>Properties of a proposal.</p>
@@ -2174,28 +2174,28 @@ export interface ProposalSummary {
2174
2174
  * </p>
2175
2175
  * @public
2176
2176
  */
2177
- ProposalId?: string;
2177
+ ProposalId?: string | undefined;
2178
2178
  /**
2179
2179
  * <p>
2180
2180
  * The description of the proposal.
2181
2181
  * </p>
2182
2182
  * @public
2183
2183
  */
2184
- Description?: string;
2184
+ Description?: string | undefined;
2185
2185
  /**
2186
2186
  * <p>
2187
2187
  * The unique identifier of the member that created the proposal.
2188
2188
  * </p>
2189
2189
  * @public
2190
2190
  */
2191
- ProposedByMemberId?: string;
2191
+ ProposedByMemberId?: string | undefined;
2192
2192
  /**
2193
2193
  * <p>
2194
2194
  * The name of the member that created the proposal.
2195
2195
  * </p>
2196
2196
  * @public
2197
2197
  */
2198
- ProposedByMemberName?: string;
2198
+ ProposedByMemberName?: string | undefined;
2199
2199
  /**
2200
2200
  * <p>The status of the proposal. Values are as follows:</p>
2201
2201
  * <ul>
@@ -2222,26 +2222,26 @@ export interface ProposalSummary {
2222
2222
  * </ul>
2223
2223
  * @public
2224
2224
  */
2225
- Status?: ProposalStatus;
2225
+ Status?: ProposalStatus | undefined;
2226
2226
  /**
2227
2227
  * <p>
2228
2228
  * The date and time that the proposal was created.
2229
2229
  * </p>
2230
2230
  * @public
2231
2231
  */
2232
- CreationDate?: Date;
2232
+ CreationDate?: Date | undefined;
2233
2233
  /**
2234
2234
  * <p>
2235
2235
  * The date and time that the proposal expires. This is the <code>CreationDate</code> plus the <code>ProposalDurationInHours</code> that is specified in the <code>ProposalThresholdPolicy</code>. After this date and time, if members haven't cast enough votes to determine the outcome according to the voting policy, the proposal is <code>EXPIRED</code> and <code>Actions</code> aren't carried out.
2236
2236
  * </p>
2237
2237
  * @public
2238
2238
  */
2239
- ExpirationDate?: Date;
2239
+ ExpirationDate?: Date | undefined;
2240
2240
  /**
2241
2241
  * <p>The Amazon Resource Name (ARN) of the proposal. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
2242
2242
  * @public
2243
2243
  */
2244
- Arn?: string;
2244
+ Arn?: string | undefined;
2245
2245
  }
2246
2246
  /**
2247
2247
  * @public
@@ -2251,12 +2251,12 @@ export interface ListProposalsOutput {
2251
2251
  * <p>The summary of each proposal made on the network.</p>
2252
2252
  * @public
2253
2253
  */
2254
- Proposals?: ProposalSummary[];
2254
+ Proposals?: ProposalSummary[] | undefined;
2255
2255
  /**
2256
2256
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
2257
2257
  * @public
2258
2258
  */
2259
- NextToken?: string;
2259
+ NextToken?: string | undefined;
2260
2260
  }
2261
2261
  /**
2262
2262
  * @public
@@ -2282,14 +2282,14 @@ export interface ListProposalVotesInput {
2282
2282
  * </p>
2283
2283
  * @public
2284
2284
  */
2285
- MaxResults?: number;
2285
+ MaxResults?: number | undefined;
2286
2286
  /**
2287
2287
  * <p>
2288
2288
  * The pagination token that indicates the next set of results to retrieve.
2289
2289
  * </p>
2290
2290
  * @public
2291
2291
  */
2292
- NextToken?: string;
2292
+ NextToken?: string | undefined;
2293
2293
  }
2294
2294
  /**
2295
2295
  * @public
@@ -2317,21 +2317,21 @@ export interface VoteSummary {
2317
2317
  * </p>
2318
2318
  * @public
2319
2319
  */
2320
- Vote?: VoteValue;
2320
+ Vote?: VoteValue | undefined;
2321
2321
  /**
2322
2322
  * <p>
2323
2323
  * The name of the member that cast the vote.
2324
2324
  * </p>
2325
2325
  * @public
2326
2326
  */
2327
- MemberName?: string;
2327
+ MemberName?: string | undefined;
2328
2328
  /**
2329
2329
  * <p>
2330
2330
  * The unique identifier of the member that cast the vote.
2331
2331
  * </p>
2332
2332
  * @public
2333
2333
  */
2334
- MemberId?: string;
2334
+ MemberId?: string | undefined;
2335
2335
  }
2336
2336
  /**
2337
2337
  * @public
@@ -2343,14 +2343,14 @@ export interface ListProposalVotesOutput {
2343
2343
  * </p>
2344
2344
  * @public
2345
2345
  */
2346
- ProposalVotes?: VoteSummary[];
2346
+ ProposalVotes?: VoteSummary[] | undefined;
2347
2347
  /**
2348
2348
  * <p>
2349
2349
  * The pagination token that indicates the next set of results to retrieve.
2350
2350
  * </p>
2351
2351
  * @public
2352
2352
  */
2353
- NextToken?: string;
2353
+ NextToken?: string | undefined;
2354
2354
  }
2355
2355
  /**
2356
2356
  * @public
@@ -2370,7 +2370,7 @@ export interface ListTagsForResourceResponse {
2370
2370
  * <p>The tags assigned to the resource.</p>
2371
2371
  * @public
2372
2372
  */
2373
- Tags?: Record<string, string>;
2373
+ Tags?: Record<string, string> | undefined;
2374
2374
  }
2375
2375
  /**
2376
2376
  * @public
@@ -2445,7 +2445,7 @@ export interface UpdateMemberInput {
2445
2445
  * <p>Configuration properties for publishing to Amazon CloudWatch Logs.</p>
2446
2446
  * @public
2447
2447
  */
2448
- LogPublishingConfiguration?: MemberLogPublishingConfiguration;
2448
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration | undefined;
2449
2449
  }
2450
2450
  /**
2451
2451
  * @public
@@ -2466,7 +2466,7 @@ export interface UpdateNodeInput {
2466
2466
  * <p>Applies only to Hyperledger Fabric.</p>
2467
2467
  * @public
2468
2468
  */
2469
- MemberId?: string;
2469
+ MemberId?: string | undefined;
2470
2470
  /**
2471
2471
  * <p>The unique identifier of the node.</p>
2472
2472
  * @public
@@ -2476,7 +2476,7 @@ export interface UpdateNodeInput {
2476
2476
  * <p>Configuration properties for publishing to Amazon CloudWatch Logs.</p>
2477
2477
  * @public
2478
2478
  */
2479
- LogPublishingConfiguration?: NodeLogPublishingConfiguration;
2479
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration | undefined;
2480
2480
  }
2481
2481
  /**
2482
2482
  * @public