@aws-sdk/client-managedblockchain 3.379.1 → 3.382.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.
@@ -43,10 +43,12 @@ export type AccessorType = (typeof AccessorType)[keyof typeof AccessorType];
43
43
  */
44
44
  export interface Accessor {
45
45
  /**
46
+ * @public
46
47
  * <p>The unique identifier of the accessor.</p>
47
48
  */
48
49
  Id?: string;
49
50
  /**
51
+ * @public
50
52
  * <p>The type of the accessor.</p>
51
53
  * <note>
52
54
  * <p>Currently, accessor type is restricted to <code>BILLING_TOKEN</code>.</p>
@@ -54,26 +56,31 @@ export interface Accessor {
54
56
  */
55
57
  Type?: AccessorType | string;
56
58
  /**
59
+ * @public
57
60
  * <p>The billing token is a property of the accessor. Use this token to make Ethereum API calls to your
58
61
  * Ethereum node. The billing token is used to track your accessor object for billing Ethereum API
59
62
  * requests made to your Ethereum nodes.</p>
60
63
  */
61
64
  BillingToken?: string;
62
65
  /**
66
+ * @public
63
67
  * <p>The current status of the accessor.</p>
64
68
  */
65
69
  Status?: AccessorStatus | string;
66
70
  /**
71
+ * @public
67
72
  * <p>The creation date and time of the accessor.</p>
68
73
  */
69
74
  CreationDate?: Date;
70
75
  /**
76
+ * @public
71
77
  * <p>The Amazon Resource Name (ARN) of the accessor. For more information about
72
78
  * ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
73
79
  * Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
74
80
  */
75
81
  Arn?: string;
76
82
  /**
83
+ * @public
77
84
  * <p>The tags assigned to the Accessor.</p>
78
85
  * <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>
79
86
  */
@@ -85,10 +92,12 @@ export interface Accessor {
85
92
  */
86
93
  export interface AccessorSummary {
87
94
  /**
95
+ * @public
88
96
  * <p>The unique identifier of the accessor.</p>
89
97
  */
90
98
  Id?: string;
91
99
  /**
100
+ * @public
92
101
  * <p>The type of the accessor.</p>
93
102
  * <note>
94
103
  * <p>Currently accessor type is restricted to <code>BILLING_TOKEN</code>.</p>
@@ -96,14 +105,17 @@ export interface AccessorSummary {
96
105
  */
97
106
  Type?: AccessorType | string;
98
107
  /**
108
+ * @public
99
109
  * <p>The current status of the accessor.</p>
100
110
  */
101
111
  Status?: AccessorStatus | string;
102
112
  /**
113
+ * @public
103
114
  * <p>The creation date and time of the accessor.</p>
104
115
  */
105
116
  CreationDate?: Date;
106
117
  /**
118
+ * @public
107
119
  * <p>The Amazon Resource Name (ARN) of the accessor. For more information about
108
120
  * ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
109
121
  * Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
@@ -129,14 +141,17 @@ export type ThresholdComparator = (typeof ThresholdComparator)[keyof typeof Thre
129
141
  */
130
142
  export interface ApprovalThresholdPolicy {
131
143
  /**
144
+ * @public
132
145
  * <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>
133
146
  */
134
147
  ThresholdPercentage?: number;
135
148
  /**
149
+ * @public
136
150
  * <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>
137
151
  */
138
152
  ProposalDurationInHours?: number;
139
153
  /**
154
+ * @public
140
155
  * <p>Determines whether the vote percentage must be greater than the <code>ThresholdPercentage</code> or must be greater than or equal to the <code>ThreholdPercentage</code> to be approved.</p>
141
156
  */
142
157
  ThresholdComparator?: ThresholdComparator | string;
@@ -146,6 +161,7 @@ export interface ApprovalThresholdPolicy {
146
161
  */
147
162
  export interface CreateAccessorInput {
148
163
  /**
164
+ * @public
149
165
  * <p>This is a unique, case-sensitive identifier that you provide to ensure the idempotency of
150
166
  * the operation. An idempotent operation completes no more than once. This
151
167
  * identifier is required only if you make a service request directly using
@@ -154,6 +170,7 @@ export interface CreateAccessorInput {
154
170
  */
155
171
  ClientRequestToken?: string;
156
172
  /**
173
+ * @public
157
174
  * <p>The type of accessor.</p>
158
175
  * <note>
159
176
  * <p>Currently, accessor type is restricted to <code>BILLING_TOKEN</code>.</p>
@@ -161,6 +178,7 @@ export interface CreateAccessorInput {
161
178
  */
162
179
  AccessorType: AccessorType | string | undefined;
163
180
  /**
181
+ * @public
164
182
  * <p>Tags to assign to the Accessor.</p>
165
183
  * <p> Each tag consists of a key and an optional value. You can specify
166
184
  * multiple key-value pairs in a single request with an overall maximum of 50 tags
@@ -174,10 +192,12 @@ export interface CreateAccessorInput {
174
192
  */
175
193
  export interface CreateAccessorOutput {
176
194
  /**
195
+ * @public
177
196
  * <p>The unique identifier of the accessor.</p>
178
197
  */
179
198
  AccessorId?: string;
180
199
  /**
200
+ * @public
181
201
  * <p>The billing token is a property of the Accessor. Use this token to make Ethereum API calls to
182
202
  * your Ethereum node. The billing token is used to track your accessor object for billing Ethereum
183
203
  * API requests made to your Ethereum nodes.</p>
@@ -260,6 +280,7 @@ export declare class TooManyTagsException extends __BaseException {
260
280
  readonly $fault: "client";
261
281
  Message?: string;
262
282
  /**
283
+ * @public
263
284
  * <p></p>
264
285
  */
265
286
  ResourceName?: string;
@@ -274,10 +295,12 @@ export declare class TooManyTagsException extends __BaseException {
274
295
  */
275
296
  export interface MemberFabricConfiguration {
276
297
  /**
298
+ * @public
277
299
  * <p>The user name for the member's initial administrative user.</p>
278
300
  */
279
301
  AdminUsername: string | undefined;
280
302
  /**
303
+ * @public
281
304
  * <p>The password for the member's initial administrative user. The <code>AdminPassword</code> must be at least 8 characters long and no more than 32 characters. It must contain at least one uppercase letter, one lowercase letter, and one digit. It cannot have a single quotation mark (‘), a double quotation marks (“), a forward slash(/), a backward slash(\), @, or a space.</p>
282
305
  */
283
306
  AdminPassword: string | undefined;
@@ -288,6 +311,7 @@ export interface MemberFabricConfiguration {
288
311
  */
289
312
  export interface MemberFrameworkConfiguration {
290
313
  /**
314
+ * @public
291
315
  * <p>Attributes of Hyperledger Fabric for a member on a Managed Blockchain network that uses Hyperledger Fabric.</p>
292
316
  */
293
317
  Fabric?: MemberFabricConfiguration;
@@ -298,6 +322,7 @@ export interface MemberFrameworkConfiguration {
298
322
  */
299
323
  export interface LogConfiguration {
300
324
  /**
325
+ * @public
301
326
  * <p>Indicates whether logging is enabled.</p>
302
327
  */
303
328
  Enabled?: boolean;
@@ -308,6 +333,7 @@ export interface LogConfiguration {
308
333
  */
309
334
  export interface LogConfigurations {
310
335
  /**
336
+ * @public
311
337
  * <p>Parameters for publishing logs to Amazon CloudWatch Logs.</p>
312
338
  */
313
339
  Cloudwatch?: LogConfiguration;
@@ -318,6 +344,7 @@ export interface LogConfigurations {
318
344
  */
319
345
  export interface MemberFabricLogPublishingConfiguration {
320
346
  /**
347
+ * @public
321
348
  * <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>
322
349
  */
323
350
  CaLogs?: LogConfigurations;
@@ -328,6 +355,7 @@ export interface MemberFabricLogPublishingConfiguration {
328
355
  */
329
356
  export interface MemberLogPublishingConfiguration {
330
357
  /**
358
+ * @public
331
359
  * <p>Configuration properties for logging events associated with a member of a Managed Blockchain network using the Hyperledger Fabric framework.</p>
332
360
  */
333
361
  Fabric?: MemberFabricLogPublishingConfiguration;
@@ -339,28 +367,34 @@ export interface MemberLogPublishingConfiguration {
339
367
  */
340
368
  export interface MemberConfiguration {
341
369
  /**
370
+ * @public
342
371
  * <p>The name of the member.</p>
343
372
  */
344
373
  Name: string | undefined;
345
374
  /**
375
+ * @public
346
376
  * <p>An optional description of the member.</p>
347
377
  */
348
378
  Description?: string;
349
379
  /**
380
+ * @public
350
381
  * <p>Configuration properties of the blockchain framework relevant to the member.</p>
351
382
  */
352
383
  FrameworkConfiguration: MemberFrameworkConfiguration | undefined;
353
384
  /**
385
+ * @public
354
386
  * <p>Configuration properties for logging events associated with a member of a Managed Blockchain network.</p>
355
387
  */
356
388
  LogPublishingConfiguration?: MemberLogPublishingConfiguration;
357
389
  /**
390
+ * @public
358
391
  * <p>Tags assigned to the member. Tags consist of a key and optional value. </p>
359
392
  * <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>
360
393
  * <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>
361
394
  */
362
395
  Tags?: Record<string, string>;
363
396
  /**
397
+ * @public
364
398
  * <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>
365
399
  * <p>Use one of the following options to specify this parameter:</p>
366
400
  * <ul>
@@ -384,18 +418,22 @@ export interface MemberConfiguration {
384
418
  */
385
419
  export interface CreateMemberInput {
386
420
  /**
421
+ * @public
387
422
  * <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>
388
423
  */
389
424
  ClientRequestToken?: string;
390
425
  /**
426
+ * @public
391
427
  * <p>The unique identifier of the invitation that is sent to the member to join the network.</p>
392
428
  */
393
429
  InvitationId: string | undefined;
394
430
  /**
431
+ * @public
395
432
  * <p>The unique identifier of the network in which the member is created.</p>
396
433
  */
397
434
  NetworkId: string | undefined;
398
435
  /**
436
+ * @public
399
437
  * <p>Member configuration parameters.</p>
400
438
  */
401
439
  MemberConfiguration: MemberConfiguration | undefined;
@@ -405,6 +443,7 @@ export interface CreateMemberInput {
405
443
  */
406
444
  export interface CreateMemberOutput {
407
445
  /**
446
+ * @public
408
447
  * <p>The unique identifier of the member.</p>
409
448
  */
410
449
  MemberId?: string;
@@ -418,6 +457,7 @@ export declare class ResourceNotFoundException extends __BaseException {
418
457
  readonly $fault: "client";
419
458
  Message?: string;
420
459
  /**
460
+ * @public
421
461
  * <p>A requested resource doesn't exist. It may have been deleted or referenced inaccurately.</p>
422
462
  */
423
463
  ResourceName?: string;
@@ -469,6 +509,7 @@ export type Edition = (typeof Edition)[keyof typeof Edition];
469
509
  */
470
510
  export interface NetworkFabricConfiguration {
471
511
  /**
512
+ * @public
472
513
  * <p>The edition of Amazon Managed Blockchain that the network uses. For more information, see <a href="http://aws.amazon.com/managed-blockchain/pricing/">Amazon Managed Blockchain Pricing</a>.</p>
473
514
  */
474
515
  Edition: Edition | string | undefined;
@@ -481,6 +522,7 @@ export interface NetworkFabricConfiguration {
481
522
  */
482
523
  export interface NetworkFrameworkConfiguration {
483
524
  /**
525
+ * @public
484
526
  * <p>
485
527
  * Hyperledger Fabric configuration properties for a Managed Blockchain network that uses Hyperledger Fabric.
486
528
  * </p>
@@ -496,6 +538,7 @@ export interface NetworkFrameworkConfiguration {
496
538
  */
497
539
  export interface VotingPolicy {
498
540
  /**
541
+ * @public
499
542
  * <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>
500
543
  */
501
544
  ApprovalThresholdPolicy?: ApprovalThresholdPolicy;
@@ -505,6 +548,7 @@ export interface VotingPolicy {
505
548
  */
506
549
  export interface CreateNetworkInput {
507
550
  /**
551
+ * @public
508
552
  * <p>This is a unique, case-sensitive identifier that you provide to ensure the idempotency of the
509
553
  * operation. An idempotent operation completes no more than once. This identifier is required only
510
554
  * if you make a service request directly using an HTTP client. It is generated automatically if you
@@ -513,38 +557,46 @@ export interface CreateNetworkInput {
513
557
  */
514
558
  ClientRequestToken?: string;
515
559
  /**
560
+ * @public
516
561
  * <p>The name of the network.</p>
517
562
  */
518
563
  Name: string | undefined;
519
564
  /**
565
+ * @public
520
566
  * <p>An optional description for the network.</p>
521
567
  */
522
568
  Description?: string;
523
569
  /**
570
+ * @public
524
571
  * <p>The blockchain framework that the network uses.</p>
525
572
  */
526
573
  Framework: Framework | string | undefined;
527
574
  /**
575
+ * @public
528
576
  * <p>The version of the blockchain framework that the network uses.</p>
529
577
  */
530
578
  FrameworkVersion: string | undefined;
531
579
  /**
580
+ * @public
532
581
  * <p>
533
582
  * Configuration properties of the blockchain framework relevant to the network configuration.
534
583
  * </p>
535
584
  */
536
585
  FrameworkConfiguration?: NetworkFrameworkConfiguration;
537
586
  /**
587
+ * @public
538
588
  * <p>
539
589
  * The voting rules used by the network to determine if a proposal is approved.
540
590
  * </p>
541
591
  */
542
592
  VotingPolicy: VotingPolicy | undefined;
543
593
  /**
594
+ * @public
544
595
  * <p>Configuration properties for the first member within the network.</p>
545
596
  */
546
597
  MemberConfiguration: MemberConfiguration | undefined;
547
598
  /**
599
+ * @public
548
600
  * <p>Tags to assign to the network.</p>
549
601
  * <p> Each tag consists of a key and an optional value. You can specify
550
602
  * multiple key-value pairs in a single request with an overall maximum of 50 tags
@@ -558,10 +610,12 @@ export interface CreateNetworkInput {
558
610
  */
559
611
  export interface CreateNetworkOutput {
560
612
  /**
613
+ * @public
561
614
  * <p>The unique identifier for the network.</p>
562
615
  */
563
616
  NetworkId?: string;
564
617
  /**
618
+ * @public
565
619
  * <p>The unique identifier for the first member within the network.</p>
566
620
  */
567
621
  MemberId?: string;
@@ -572,10 +626,12 @@ export interface CreateNetworkOutput {
572
626
  */
573
627
  export interface NodeFabricLogPublishingConfiguration {
574
628
  /**
629
+ * @public
575
630
  * <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>
576
631
  */
577
632
  ChaincodeLogs?: LogConfigurations;
578
633
  /**
634
+ * @public
579
635
  * <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>
580
636
  */
581
637
  PeerLogs?: LogConfigurations;
@@ -586,6 +642,7 @@ export interface NodeFabricLogPublishingConfiguration {
586
642
  */
587
643
  export interface NodeLogPublishingConfiguration {
588
644
  /**
645
+ * @public
589
646
  * <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>
590
647
  */
591
648
  Fabric?: NodeFabricLogPublishingConfiguration;
@@ -608,19 +665,23 @@ export type StateDBType = (typeof StateDBType)[keyof typeof StateDBType];
608
665
  */
609
666
  export interface NodeConfiguration {
610
667
  /**
668
+ * @public
611
669
  * <p>The Amazon Managed Blockchain instance type for the node.</p>
612
670
  */
613
671
  InstanceType: string | undefined;
614
672
  /**
673
+ * @public
615
674
  * <p>The Availability Zone in which the node exists. Required for Ethereum nodes. </p>
616
675
  */
617
676
  AvailabilityZone?: string;
618
677
  /**
678
+ * @public
619
679
  * <p>Configuration properties for logging events associated with a peer node on a Hyperledger Fabric network on Managed Blockchain.
620
680
  * </p>
621
681
  */
622
682
  LogPublishingConfiguration?: NodeLogPublishingConfiguration;
623
683
  /**
684
+ * @public
624
685
  * <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>
625
686
  * <p>Applies only to Hyperledger Fabric.</p>
626
687
  */
@@ -631,10 +692,12 @@ export interface NodeConfiguration {
631
692
  */
632
693
  export interface CreateNodeInput {
633
694
  /**
695
+ * @public
634
696
  * <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>
635
697
  */
636
698
  ClientRequestToken?: string;
637
699
  /**
700
+ * @public
638
701
  * <p>The unique identifier of the network for the node.</p>
639
702
  * <p>Ethereum public networks have the following <code>NetworkId</code>s:</p>
640
703
  * <ul>
@@ -657,15 +720,18 @@ export interface CreateNodeInput {
657
720
  */
658
721
  NetworkId: string | undefined;
659
722
  /**
723
+ * @public
660
724
  * <p>The unique identifier of the member that owns this node.</p>
661
725
  * <p>Applies only to Hyperledger Fabric.</p>
662
726
  */
663
727
  MemberId?: string;
664
728
  /**
729
+ * @public
665
730
  * <p>The properties of a node configuration.</p>
666
731
  */
667
732
  NodeConfiguration: NodeConfiguration | undefined;
668
733
  /**
734
+ * @public
669
735
  * <p>Tags to assign to the node.</p>
670
736
  * <p> Each tag consists of a key and an optional value. You can specify
671
737
  * multiple key-value pairs in a single request with an overall maximum of 50 tags
@@ -679,6 +745,7 @@ export interface CreateNodeInput {
679
745
  */
680
746
  export interface CreateNodeOutput {
681
747
  /**
748
+ * @public
682
749
  * <p>The unique identifier of the node.</p>
683
750
  */
684
751
  NodeId?: string;
@@ -690,6 +757,7 @@ export interface CreateNodeOutput {
690
757
  */
691
758
  export interface InviteAction {
692
759
  /**
760
+ * @public
693
761
  * <p>The Amazon Web Services account ID to invite.</p>
694
762
  */
695
763
  Principal: string | undefined;
@@ -701,6 +769,7 @@ export interface InviteAction {
701
769
  */
702
770
  export interface RemoveAction {
703
771
  /**
772
+ * @public
704
773
  * <p>The unique identifier of the member to remove.</p>
705
774
  */
706
775
  MemberId: string | undefined;
@@ -714,12 +783,14 @@ export interface RemoveAction {
714
783
  */
715
784
  export interface ProposalActions {
716
785
  /**
786
+ * @public
717
787
  * <p>
718
788
  * The actions to perform for an <code>APPROVED</code> proposal to invite an Amazon Web Services account to create a member and join the network.
719
789
  * </p>
720
790
  */
721
791
  Invitations?: InviteAction[];
722
792
  /**
793
+ * @public
723
794
  * <p>
724
795
  * 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.
725
796
  * </p>
@@ -731,29 +802,35 @@ export interface ProposalActions {
731
802
  */
732
803
  export interface CreateProposalInput {
733
804
  /**
805
+ * @public
734
806
  * <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>
735
807
  */
736
808
  ClientRequestToken?: string;
737
809
  /**
810
+ * @public
738
811
  * <p>
739
812
  * The unique identifier of the network for which the proposal is made.</p>
740
813
  */
741
814
  NetworkId: string | undefined;
742
815
  /**
816
+ * @public
743
817
  * <p>The unique identifier of the member that is creating the proposal. This
744
818
  * identifier is especially useful for identifying the member making the proposal
745
819
  * when multiple members exist in a single Amazon Web Services account.</p>
746
820
  */
747
821
  MemberId: string | undefined;
748
822
  /**
823
+ * @public
749
824
  * <p>The type of actions proposed, such as inviting a member or removing a member. The types of <code>Actions</code> in a proposal are mutually exclusive. For example, a proposal with <code>Invitations</code> actions cannot also contain <code>Removals</code> actions.</p>
750
825
  */
751
826
  Actions: ProposalActions | undefined;
752
827
  /**
828
+ * @public
753
829
  * <p>A description for the proposal that is visible to voting members, for example, "Proposal to add Example Corp. as member."</p>
754
830
  */
755
831
  Description?: string;
756
832
  /**
833
+ * @public
757
834
  * <p>Tags to assign to the proposal.</p>
758
835
  * <p> Each tag consists of a key and an optional value. You can specify
759
836
  * multiple key-value pairs in a single request with an overall maximum of 50 tags
@@ -767,6 +844,7 @@ export interface CreateProposalInput {
767
844
  */
768
845
  export interface CreateProposalOutput {
769
846
  /**
847
+ * @public
770
848
  * <p>The unique identifier of the proposal.</p>
771
849
  */
772
850
  ProposalId?: string;
@@ -776,6 +854,7 @@ export interface CreateProposalOutput {
776
854
  */
777
855
  export interface DeleteAccessorInput {
778
856
  /**
857
+ * @public
779
858
  * <p>The unique identifier of the accessor.</p>
780
859
  */
781
860
  AccessorId: string | undefined;
@@ -790,10 +869,12 @@ export interface DeleteAccessorOutput {
790
869
  */
791
870
  export interface DeleteMemberInput {
792
871
  /**
872
+ * @public
793
873
  * <p>The unique identifier of the network from which the member is removed.</p>
794
874
  */
795
875
  NetworkId: string | undefined;
796
876
  /**
877
+ * @public
797
878
  * <p>The unique identifier of the member to remove.</p>
798
879
  */
799
880
  MemberId: string | undefined;
@@ -808,6 +889,7 @@ export interface DeleteMemberOutput {
808
889
  */
809
890
  export interface DeleteNodeInput {
810
891
  /**
892
+ * @public
811
893
  * <p>The unique identifier of the network that the node is on.</p>
812
894
  * <p>Ethereum public networks have the following <code>NetworkId</code>s:</p>
813
895
  * <ul>
@@ -830,11 +912,13 @@ export interface DeleteNodeInput {
830
912
  */
831
913
  NetworkId: string | undefined;
832
914
  /**
915
+ * @public
833
916
  * <p>The unique identifier of the member that owns this node.</p>
834
917
  * <p>Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.</p>
835
918
  */
836
919
  MemberId?: string;
837
920
  /**
921
+ * @public
838
922
  * <p>The unique identifier of the node.</p>
839
923
  */
840
924
  NodeId: string | undefined;
@@ -849,6 +933,7 @@ export interface DeleteNodeOutput {
849
933
  */
850
934
  export interface GetAccessorInput {
851
935
  /**
936
+ * @public
852
937
  * <p>The unique identifier of the accessor.</p>
853
938
  */
854
939
  AccessorId: string | undefined;
@@ -858,6 +943,7 @@ export interface GetAccessorInput {
858
943
  */
859
944
  export interface GetAccessorOutput {
860
945
  /**
946
+ * @public
861
947
  * <p>The properties of the accessor.</p>
862
948
  */
863
949
  Accessor?: Accessor;
@@ -867,10 +953,12 @@ export interface GetAccessorOutput {
867
953
  */
868
954
  export interface GetMemberInput {
869
955
  /**
956
+ * @public
870
957
  * <p>The unique identifier of the network to which the member belongs.</p>
871
958
  */
872
959
  NetworkId: string | undefined;
873
960
  /**
961
+ * @public
874
962
  * <p>The unique identifier of the member.</p>
875
963
  */
876
964
  MemberId: string | undefined;
@@ -881,10 +969,12 @@ export interface GetMemberInput {
881
969
  */
882
970
  export interface MemberFabricAttributes {
883
971
  /**
972
+ * @public
884
973
  * <p>The user name for the initial administrator user for the member.</p>
885
974
  */
886
975
  AdminUsername?: string;
887
976
  /**
977
+ * @public
888
978
  * <p>The endpoint used to access the member's certificate authority.</p>
889
979
  */
890
980
  CaEndpoint?: string;
@@ -895,6 +985,7 @@ export interface MemberFabricAttributes {
895
985
  */
896
986
  export interface MemberFrameworkAttributes {
897
987
  /**
988
+ * @public
898
989
  * <p>Attributes of Hyperledger Fabric relevant to a member on a Managed Blockchain network that uses Hyperledger Fabric.</p>
899
990
  */
900
991
  Fabric?: MemberFabricAttributes;
@@ -923,30 +1014,37 @@ export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
923
1014
  */
924
1015
  export interface Member {
925
1016
  /**
1017
+ * @public
926
1018
  * <p>The unique identifier of the network to which the member belongs.</p>
927
1019
  */
928
1020
  NetworkId?: string;
929
1021
  /**
1022
+ * @public
930
1023
  * <p>The unique identifier of the member.</p>
931
1024
  */
932
1025
  Id?: string;
933
1026
  /**
1027
+ * @public
934
1028
  * <p>The name of the member.</p>
935
1029
  */
936
1030
  Name?: string;
937
1031
  /**
1032
+ * @public
938
1033
  * <p>An optional description for the member.</p>
939
1034
  */
940
1035
  Description?: string;
941
1036
  /**
1037
+ * @public
942
1038
  * <p>Attributes relevant to a member for the blockchain framework that the Managed Blockchain network uses.</p>
943
1039
  */
944
1040
  FrameworkAttributes?: MemberFrameworkAttributes;
945
1041
  /**
1042
+ * @public
946
1043
  * <p>Configuration properties for logging events associated with a member.</p>
947
1044
  */
948
1045
  LogPublishingConfiguration?: MemberLogPublishingConfiguration;
949
1046
  /**
1047
+ * @public
950
1048
  * <p>The status of a member.</p>
951
1049
  * <ul>
952
1050
  * <li>
@@ -984,19 +1082,23 @@ export interface Member {
984
1082
  */
985
1083
  Status?: MemberStatus | string;
986
1084
  /**
1085
+ * @public
987
1086
  * <p>The date and time that the member was created.</p>
988
1087
  */
989
1088
  CreationDate?: Date;
990
1089
  /**
1090
+ * @public
991
1091
  * <p>Tags assigned to the member. Tags consist of a key and optional value.</p>
992
1092
  * <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>
993
1093
  */
994
1094
  Tags?: Record<string, string>;
995
1095
  /**
1096
+ * @public
996
1097
  * <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>
997
1098
  */
998
1099
  Arn?: string;
999
1100
  /**
1101
+ * @public
1000
1102
  * <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>
1001
1103
  * <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>
1002
1104
  */
@@ -1007,6 +1109,7 @@ export interface Member {
1007
1109
  */
1008
1110
  export interface GetMemberOutput {
1009
1111
  /**
1112
+ * @public
1010
1113
  * <p>The properties of a member.</p>
1011
1114
  */
1012
1115
  Member?: Member;
@@ -1016,6 +1119,7 @@ export interface GetMemberOutput {
1016
1119
  */
1017
1120
  export interface GetNetworkInput {
1018
1121
  /**
1122
+ * @public
1019
1123
  * <p>The unique identifier of the network to get information about.</p>
1020
1124
  */
1021
1125
  NetworkId: string | undefined;
@@ -1026,6 +1130,7 @@ export interface GetNetworkInput {
1026
1130
  */
1027
1131
  export interface NetworkEthereumAttributes {
1028
1132
  /**
1133
+ * @public
1029
1134
  * <p>The Ethereum <code>CHAIN_ID</code> associated with the Ethereum network. Chain IDs are as follows:</p>
1030
1135
  * <ul>
1031
1136
  * <li>
@@ -1050,10 +1155,12 @@ export interface NetworkEthereumAttributes {
1050
1155
  */
1051
1156
  export interface NetworkFabricAttributes {
1052
1157
  /**
1158
+ * @public
1053
1159
  * <p>The endpoint of the ordering service for the network.</p>
1054
1160
  */
1055
1161
  OrderingServiceEndpoint?: string;
1056
1162
  /**
1163
+ * @public
1057
1164
  * <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>
1058
1165
  */
1059
1166
  Edition?: Edition | string;
@@ -1064,10 +1171,12 @@ export interface NetworkFabricAttributes {
1064
1171
  */
1065
1172
  export interface NetworkFrameworkAttributes {
1066
1173
  /**
1174
+ * @public
1067
1175
  * <p>Attributes of Hyperledger Fabric for a Managed Blockchain network that uses Hyperledger Fabric.</p>
1068
1176
  */
1069
1177
  Fabric?: NetworkFabricAttributes;
1070
1178
  /**
1179
+ * @public
1071
1180
  * <p>Attributes of an Ethereum network for Managed Blockchain resources participating in an Ethereum network. </p>
1072
1181
  */
1073
1182
  Ethereum?: NetworkEthereumAttributes;
@@ -1093,51 +1202,63 @@ export type NetworkStatus = (typeof NetworkStatus)[keyof typeof NetworkStatus];
1093
1202
  */
1094
1203
  export interface Network {
1095
1204
  /**
1205
+ * @public
1096
1206
  * <p>The unique identifier of the network.</p>
1097
1207
  */
1098
1208
  Id?: string;
1099
1209
  /**
1210
+ * @public
1100
1211
  * <p>The name of the network.</p>
1101
1212
  */
1102
1213
  Name?: string;
1103
1214
  /**
1215
+ * @public
1104
1216
  * <p>Attributes of the blockchain framework for the network.</p>
1105
1217
  */
1106
1218
  Description?: string;
1107
1219
  /**
1220
+ * @public
1108
1221
  * <p>The blockchain framework that the network uses.</p>
1109
1222
  */
1110
1223
  Framework?: Framework | string;
1111
1224
  /**
1225
+ * @public
1112
1226
  * <p>The version of the blockchain framework that the network uses.</p>
1113
1227
  */
1114
1228
  FrameworkVersion?: string;
1115
1229
  /**
1230
+ * @public
1116
1231
  * <p>Attributes of the blockchain framework that the network uses.</p>
1117
1232
  */
1118
1233
  FrameworkAttributes?: NetworkFrameworkAttributes;
1119
1234
  /**
1235
+ * @public
1120
1236
  * <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>
1121
1237
  */
1122
1238
  VpcEndpointServiceName?: string;
1123
1239
  /**
1240
+ * @public
1124
1241
  * <p>The voting rules that the network uses to decide if a proposal is accepted.</p>
1125
1242
  */
1126
1243
  VotingPolicy?: VotingPolicy;
1127
1244
  /**
1245
+ * @public
1128
1246
  * <p>The current status of the network.</p>
1129
1247
  */
1130
1248
  Status?: NetworkStatus | string;
1131
1249
  /**
1250
+ * @public
1132
1251
  * <p>The date and time that the network was created.</p>
1133
1252
  */
1134
1253
  CreationDate?: Date;
1135
1254
  /**
1255
+ * @public
1136
1256
  * <p>Tags assigned to the network. Each tag consists of a key and optional value.</p>
1137
1257
  * <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>
1138
1258
  */
1139
1259
  Tags?: Record<string, string>;
1140
1260
  /**
1261
+ * @public
1141
1262
  * <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>
1142
1263
  */
1143
1264
  Arn?: string;
@@ -1147,6 +1268,7 @@ export interface Network {
1147
1268
  */
1148
1269
  export interface GetNetworkOutput {
1149
1270
  /**
1271
+ * @public
1150
1272
  * <p>An object containing network configuration parameters.</p>
1151
1273
  */
1152
1274
  Network?: Network;
@@ -1156,15 +1278,18 @@ export interface GetNetworkOutput {
1156
1278
  */
1157
1279
  export interface GetNodeInput {
1158
1280
  /**
1281
+ * @public
1159
1282
  * <p>The unique identifier of the network that the node is on.</p>
1160
1283
  */
1161
1284
  NetworkId: string | undefined;
1162
1285
  /**
1286
+ * @public
1163
1287
  * <p>The unique identifier of the member that owns the node.</p>
1164
1288
  * <p>Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.</p>
1165
1289
  */
1166
1290
  MemberId?: string;
1167
1291
  /**
1292
+ * @public
1168
1293
  * <p>The unique identifier of the node.</p>
1169
1294
  */
1170
1295
  NodeId: string | undefined;
@@ -1175,10 +1300,12 @@ export interface GetNodeInput {
1175
1300
  */
1176
1301
  export interface NodeEthereumAttributes {
1177
1302
  /**
1303
+ * @public
1178
1304
  * <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>
1179
1305
  */
1180
1306
  HttpEndpoint?: string;
1181
1307
  /**
1308
+ * @public
1182
1309
  * <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>
1183
1310
  */
1184
1311
  WebSocketEndpoint?: string;
@@ -1189,10 +1316,12 @@ export interface NodeEthereumAttributes {
1189
1316
  */
1190
1317
  export interface NodeFabricAttributes {
1191
1318
  /**
1319
+ * @public
1192
1320
  * <p>The endpoint that identifies the peer node for all services except peer channel-based event services.</p>
1193
1321
  */
1194
1322
  PeerEndpoint?: string;
1195
1323
  /**
1324
+ * @public
1196
1325
  * <p>The endpoint that identifies the peer node for peer channel-based event services.</p>
1197
1326
  */
1198
1327
  PeerEventEndpoint?: string;
@@ -1203,10 +1332,12 @@ export interface NodeFabricAttributes {
1203
1332
  */
1204
1333
  export interface NodeFrameworkAttributes {
1205
1334
  /**
1335
+ * @public
1206
1336
  * <p>Attributes of Hyperledger Fabric for a peer node on a Managed Blockchain network that uses Hyperledger Fabric.</p>
1207
1337
  */
1208
1338
  Fabric?: NodeFabricAttributes;
1209
1339
  /**
1340
+ * @public
1210
1341
  * <p>Attributes of Ethereum for a node on a Managed Blockchain network that uses Ethereum. </p>
1211
1342
  */
1212
1343
  Ethereum?: NodeEthereumAttributes;
@@ -1236,40 +1367,49 @@ export type NodeStatus = (typeof NodeStatus)[keyof typeof NodeStatus];
1236
1367
  */
1237
1368
  export interface Node {
1238
1369
  /**
1370
+ * @public
1239
1371
  * <p>The unique identifier of the network that the node is on.</p>
1240
1372
  */
1241
1373
  NetworkId?: string;
1242
1374
  /**
1375
+ * @public
1243
1376
  * <p>The unique identifier of the member to which the node belongs.</p>
1244
1377
  * <p>Applies only to Hyperledger Fabric.</p>
1245
1378
  */
1246
1379
  MemberId?: string;
1247
1380
  /**
1381
+ * @public
1248
1382
  * <p>The unique identifier of the node.</p>
1249
1383
  */
1250
1384
  Id?: string;
1251
1385
  /**
1386
+ * @public
1252
1387
  * <p>The instance type of the node.</p>
1253
1388
  */
1254
1389
  InstanceType?: string;
1255
1390
  /**
1391
+ * @public
1256
1392
  * <p>The Availability Zone in which the node exists. Required for Ethereum nodes. </p>
1257
1393
  */
1258
1394
  AvailabilityZone?: string;
1259
1395
  /**
1396
+ * @public
1260
1397
  * <p>Attributes of the blockchain framework being used.</p>
1261
1398
  */
1262
1399
  FrameworkAttributes?: NodeFrameworkAttributes;
1263
1400
  /**
1401
+ * @public
1264
1402
  * <p>Configuration properties for logging events associated with a peer node on a Hyperledger Fabric network on Managed Blockchain.</p>
1265
1403
  */
1266
1404
  LogPublishingConfiguration?: NodeLogPublishingConfiguration;
1267
1405
  /**
1406
+ * @public
1268
1407
  * <p>The state database that the node uses. Values are <code>LevelDB</code> or <code>CouchDB</code>.</p>
1269
1408
  * <p>Applies only to Hyperledger Fabric.</p>
1270
1409
  */
1271
1410
  StateDB?: StateDBType | string;
1272
1411
  /**
1412
+ * @public
1273
1413
  * <p>The status of the node.</p>
1274
1414
  * <ul>
1275
1415
  * <li>
@@ -1313,19 +1453,23 @@ export interface Node {
1313
1453
  */
1314
1454
  Status?: NodeStatus | string;
1315
1455
  /**
1456
+ * @public
1316
1457
  * <p>The date and time that the node was created.</p>
1317
1458
  */
1318
1459
  CreationDate?: Date;
1319
1460
  /**
1461
+ * @public
1320
1462
  * <p>Tags assigned to the node. Each tag consists of a key and optional value.</p>
1321
1463
  * <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>
1322
1464
  */
1323
1465
  Tags?: Record<string, string>;
1324
1466
  /**
1467
+ * @public
1325
1468
  * <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>
1326
1469
  */
1327
1470
  Arn?: string;
1328
1471
  /**
1472
+ * @public
1329
1473
  * <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>
1330
1474
  * <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>
1331
1475
  * <p>Applies only to Hyperledger Fabric.</p>
@@ -1337,6 +1481,7 @@ export interface Node {
1337
1481
  */
1338
1482
  export interface GetNodeOutput {
1339
1483
  /**
1484
+ * @public
1340
1485
  * <p>Properties of the node configuration.</p>
1341
1486
  */
1342
1487
  Node?: Node;
@@ -1346,10 +1491,12 @@ export interface GetNodeOutput {
1346
1491
  */
1347
1492
  export interface GetProposalInput {
1348
1493
  /**
1494
+ * @public
1349
1495
  * <p>The unique identifier of the network for which the proposal is made.</p>
1350
1496
  */
1351
1497
  NetworkId: string | undefined;
1352
1498
  /**
1499
+ * @public
1353
1500
  * <p>The unique identifier of the proposal.</p>
1354
1501
  */
1355
1502
  ProposalId: string | undefined;
@@ -1376,30 +1523,37 @@ export type ProposalStatus = (typeof ProposalStatus)[keyof typeof ProposalStatus
1376
1523
  */
1377
1524
  export interface Proposal {
1378
1525
  /**
1526
+ * @public
1379
1527
  * <p>The unique identifier of the proposal.</p>
1380
1528
  */
1381
1529
  ProposalId?: string;
1382
1530
  /**
1531
+ * @public
1383
1532
  * <p>The unique identifier of the network for which the proposal is made.</p>
1384
1533
  */
1385
1534
  NetworkId?: string;
1386
1535
  /**
1536
+ * @public
1387
1537
  * <p>The description of the proposal.</p>
1388
1538
  */
1389
1539
  Description?: string;
1390
1540
  /**
1541
+ * @public
1391
1542
  * <p>The actions to perform on the network if the proposal is <code>APPROVED</code>.</p>
1392
1543
  */
1393
1544
  Actions?: ProposalActions;
1394
1545
  /**
1546
+ * @public
1395
1547
  * <p>The unique identifier of the member that created the proposal.</p>
1396
1548
  */
1397
1549
  ProposedByMemberId?: string;
1398
1550
  /**
1551
+ * @public
1399
1552
  * <p>The name of the member that created the proposal.</p>
1400
1553
  */
1401
1554
  ProposedByMemberName?: string;
1402
1555
  /**
1556
+ * @public
1403
1557
  * <p>The status of the proposal. Values are as follows:</p>
1404
1558
  * <ul>
1405
1559
  * <li>
@@ -1426,41 +1580,48 @@ export interface Proposal {
1426
1580
  */
1427
1581
  Status?: ProposalStatus | string;
1428
1582
  /**
1583
+ * @public
1429
1584
  * <p>
1430
1585
  * The date and time that the proposal was created.
1431
1586
  * </p>
1432
1587
  */
1433
1588
  CreationDate?: Date;
1434
1589
  /**
1590
+ * @public
1435
1591
  * <p>
1436
1592
  * 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.
1437
1593
  * </p>
1438
1594
  */
1439
1595
  ExpirationDate?: Date;
1440
1596
  /**
1597
+ * @public
1441
1598
  * <p>
1442
1599
  * The current total of <code>YES</code> votes cast on the proposal by members.
1443
1600
  * </p>
1444
1601
  */
1445
1602
  YesVoteCount?: number;
1446
1603
  /**
1604
+ * @public
1447
1605
  * <p>
1448
1606
  * The current total of <code>NO</code> votes cast on the proposal by members.
1449
1607
  * </p>
1450
1608
  */
1451
1609
  NoVoteCount?: number;
1452
1610
  /**
1611
+ * @public
1453
1612
  * <p>
1454
1613
  * 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.
1455
1614
  * </p>
1456
1615
  */
1457
1616
  OutstandingVoteCount?: number;
1458
1617
  /**
1618
+ * @public
1459
1619
  * <p>Tags assigned to the proposal. Each tag consists of a key and optional value.</p>
1460
1620
  * <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>
1461
1621
  */
1462
1622
  Tags?: Record<string, string>;
1463
1623
  /**
1624
+ * @public
1464
1625
  * <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>
1465
1626
  */
1466
1627
  Arn?: string;
@@ -1470,6 +1631,7 @@ export interface Proposal {
1470
1631
  */
1471
1632
  export interface GetProposalOutput {
1472
1633
  /**
1634
+ * @public
1473
1635
  * <p>Information about a proposal.</p>
1474
1636
  */
1475
1637
  Proposal?: Proposal;
@@ -1493,34 +1655,42 @@ export declare class IllegalActionException extends __BaseException {
1493
1655
  */
1494
1656
  export interface NetworkSummary {
1495
1657
  /**
1658
+ * @public
1496
1659
  * <p>The unique identifier of the network.</p>
1497
1660
  */
1498
1661
  Id?: string;
1499
1662
  /**
1663
+ * @public
1500
1664
  * <p>The name of the network.</p>
1501
1665
  */
1502
1666
  Name?: string;
1503
1667
  /**
1668
+ * @public
1504
1669
  * <p>An optional description of the network.</p>
1505
1670
  */
1506
1671
  Description?: string;
1507
1672
  /**
1673
+ * @public
1508
1674
  * <p>The blockchain framework that the network uses.</p>
1509
1675
  */
1510
1676
  Framework?: Framework | string;
1511
1677
  /**
1678
+ * @public
1512
1679
  * <p>The version of the blockchain framework that the network uses.</p>
1513
1680
  */
1514
1681
  FrameworkVersion?: string;
1515
1682
  /**
1683
+ * @public
1516
1684
  * <p>The current status of the network.</p>
1517
1685
  */
1518
1686
  Status?: NetworkStatus | string;
1519
1687
  /**
1688
+ * @public
1520
1689
  * <p>The date and time that the network was created.</p>
1521
1690
  */
1522
1691
  CreationDate?: Date;
1523
1692
  /**
1693
+ * @public
1524
1694
  * <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>
1525
1695
  */
1526
1696
  Arn?: string;
@@ -1547,18 +1717,22 @@ export type InvitationStatus = (typeof InvitationStatus)[keyof typeof Invitation
1547
1717
  */
1548
1718
  export interface Invitation {
1549
1719
  /**
1720
+ * @public
1550
1721
  * <p>The unique identifier for the invitation.</p>
1551
1722
  */
1552
1723
  InvitationId?: string;
1553
1724
  /**
1725
+ * @public
1554
1726
  * <p>The date and time that the invitation was created.</p>
1555
1727
  */
1556
1728
  CreationDate?: Date;
1557
1729
  /**
1730
+ * @public
1558
1731
  * <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>
1559
1732
  */
1560
1733
  ExpirationDate?: Date;
1561
1734
  /**
1735
+ * @public
1562
1736
  * <p>The status of the invitation:</p>
1563
1737
  * <ul>
1564
1738
  * <li>
@@ -1585,10 +1759,12 @@ export interface Invitation {
1585
1759
  */
1586
1760
  Status?: InvitationStatus | string;
1587
1761
  /**
1762
+ * @public
1588
1763
  * <p>A summary of network configuration properties.</p>
1589
1764
  */
1590
1765
  NetworkSummary?: NetworkSummary;
1591
1766
  /**
1767
+ * @public
1592
1768
  * <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>
1593
1769
  */
1594
1770
  Arn?: string;
@@ -1598,10 +1774,12 @@ export interface Invitation {
1598
1774
  */
1599
1775
  export interface ListAccessorsInput {
1600
1776
  /**
1777
+ * @public
1601
1778
  * <p> The maximum number of accessors to list.</p>
1602
1779
  */
1603
1780
  MaxResults?: number;
1604
1781
  /**
1782
+ * @public
1605
1783
  * <p> The pagination token that indicates the next set of results to retrieve. </p>
1606
1784
  */
1607
1785
  NextToken?: string;
@@ -1611,11 +1789,13 @@ export interface ListAccessorsInput {
1611
1789
  */
1612
1790
  export interface ListAccessorsOutput {
1613
1791
  /**
1792
+ * @public
1614
1793
  * <p>An array of AccessorSummary objects that contain configuration properties for
1615
1794
  * each accessor.</p>
1616
1795
  */
1617
1796
  Accessors?: AccessorSummary[];
1618
1797
  /**
1798
+ * @public
1619
1799
  * <p> The pagination token that indicates the next set of results to retrieve. </p>
1620
1800
  */
1621
1801
  NextToken?: string;
@@ -1625,10 +1805,12 @@ export interface ListAccessorsOutput {
1625
1805
  */
1626
1806
  export interface ListInvitationsInput {
1627
1807
  /**
1808
+ * @public
1628
1809
  * <p>The maximum number of invitations to return.</p>
1629
1810
  */
1630
1811
  MaxResults?: number;
1631
1812
  /**
1813
+ * @public
1632
1814
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1633
1815
  */
1634
1816
  NextToken?: string;
@@ -1638,10 +1820,12 @@ export interface ListInvitationsInput {
1638
1820
  */
1639
1821
  export interface ListInvitationsOutput {
1640
1822
  /**
1823
+ * @public
1641
1824
  * <p>The invitations for the network.</p>
1642
1825
  */
1643
1826
  Invitations?: Invitation[];
1644
1827
  /**
1828
+ * @public
1645
1829
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1646
1830
  */
1647
1831
  NextToken?: string;
@@ -1651,28 +1835,34 @@ export interface ListInvitationsOutput {
1651
1835
  */
1652
1836
  export interface ListMembersInput {
1653
1837
  /**
1838
+ * @public
1654
1839
  * <p>The unique identifier of the network for which to list members.</p>
1655
1840
  */
1656
1841
  NetworkId: string | undefined;
1657
1842
  /**
1843
+ * @public
1658
1844
  * <p>The optional name of the member to list.</p>
1659
1845
  */
1660
1846
  Name?: string;
1661
1847
  /**
1848
+ * @public
1662
1849
  * <p>An optional status specifier. If provided, only members currently in this status are listed.</p>
1663
1850
  */
1664
1851
  Status?: MemberStatus | string;
1665
1852
  /**
1853
+ * @public
1666
1854
  * <p>An optional Boolean value. If provided, the request is limited either to
1667
1855
  * members that the current Amazon Web Services account owns (<code>true</code>) or that other Amazon Web Services accountsn
1668
1856
  * own (<code>false</code>). If omitted, all members are listed.</p>
1669
1857
  */
1670
1858
  IsOwned?: boolean;
1671
1859
  /**
1860
+ * @public
1672
1861
  * <p>The maximum number of members to return in the request.</p>
1673
1862
  */
1674
1863
  MaxResults?: number;
1675
1864
  /**
1865
+ * @public
1676
1866
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1677
1867
  */
1678
1868
  NextToken?: string;
@@ -1684,18 +1874,22 @@ export interface ListMembersInput {
1684
1874
  */
1685
1875
  export interface MemberSummary {
1686
1876
  /**
1877
+ * @public
1687
1878
  * <p>The unique identifier of the member.</p>
1688
1879
  */
1689
1880
  Id?: string;
1690
1881
  /**
1882
+ * @public
1691
1883
  * <p>The name of the member.</p>
1692
1884
  */
1693
1885
  Name?: string;
1694
1886
  /**
1887
+ * @public
1695
1888
  * <p>An optional description of the member.</p>
1696
1889
  */
1697
1890
  Description?: string;
1698
1891
  /**
1892
+ * @public
1699
1893
  * <p>The status of the member.</p>
1700
1894
  * <ul>
1701
1895
  * <li>
@@ -1733,14 +1927,17 @@ export interface MemberSummary {
1733
1927
  */
1734
1928
  Status?: MemberStatus | string;
1735
1929
  /**
1930
+ * @public
1736
1931
  * <p>The date and time that the member was created.</p>
1737
1932
  */
1738
1933
  CreationDate?: Date;
1739
1934
  /**
1935
+ * @public
1740
1936
  * <p>An indicator of whether the member is owned by your Amazon Web Services account or a different Amazon Web Services account.</p>
1741
1937
  */
1742
1938
  IsOwned?: boolean;
1743
1939
  /**
1940
+ * @public
1744
1941
  * <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>
1745
1942
  */
1746
1943
  Arn?: string;
@@ -1750,10 +1947,12 @@ export interface MemberSummary {
1750
1947
  */
1751
1948
  export interface ListMembersOutput {
1752
1949
  /**
1950
+ * @public
1753
1951
  * <p>An array of <code>MemberSummary</code> objects. Each object contains details about a network member.</p>
1754
1952
  */
1755
1953
  Members?: MemberSummary[];
1756
1954
  /**
1955
+ * @public
1757
1956
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1758
1957
  */
1759
1958
  NextToken?: string;
@@ -1763,23 +1962,28 @@ export interface ListMembersOutput {
1763
1962
  */
1764
1963
  export interface ListNetworksInput {
1765
1964
  /**
1965
+ * @public
1766
1966
  * <p>The name of the network.</p>
1767
1967
  */
1768
1968
  Name?: string;
1769
1969
  /**
1970
+ * @public
1770
1971
  * <p>An optional framework specifier. If provided, only networks of this framework type are listed.</p>
1771
1972
  */
1772
1973
  Framework?: Framework | string;
1773
1974
  /**
1975
+ * @public
1774
1976
  * <p>An optional status specifier. If provided, only networks currently in this status are listed.</p>
1775
1977
  * <p>Applies only to Hyperledger Fabric.</p>
1776
1978
  */
1777
1979
  Status?: NetworkStatus | string;
1778
1980
  /**
1981
+ * @public
1779
1982
  * <p>The maximum number of networks to list.</p>
1780
1983
  */
1781
1984
  MaxResults?: number;
1782
1985
  /**
1986
+ * @public
1783
1987
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1784
1988
  */
1785
1989
  NextToken?: string;
@@ -1789,10 +1993,12 @@ export interface ListNetworksInput {
1789
1993
  */
1790
1994
  export interface ListNetworksOutput {
1791
1995
  /**
1996
+ * @public
1792
1997
  * <p>An array of <code>NetworkSummary</code> objects that contain configuration properties for each network.</p>
1793
1998
  */
1794
1999
  Networks?: NetworkSummary[];
1795
2000
  /**
2001
+ * @public
1796
2002
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1797
2003
  */
1798
2004
  NextToken?: string;
@@ -1802,23 +2008,28 @@ export interface ListNetworksOutput {
1802
2008
  */
1803
2009
  export interface ListNodesInput {
1804
2010
  /**
2011
+ * @public
1805
2012
  * <p>The unique identifier of the network for which to list nodes.</p>
1806
2013
  */
1807
2014
  NetworkId: string | undefined;
1808
2015
  /**
2016
+ * @public
1809
2017
  * <p>The unique identifier of the member who owns the nodes to list.</p>
1810
2018
  * <p>Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.</p>
1811
2019
  */
1812
2020
  MemberId?: string;
1813
2021
  /**
2022
+ * @public
1814
2023
  * <p>An optional status specifier. If provided, only nodes currently in this status are listed.</p>
1815
2024
  */
1816
2025
  Status?: NodeStatus | string;
1817
2026
  /**
2027
+ * @public
1818
2028
  * <p>The maximum number of nodes to list.</p>
1819
2029
  */
1820
2030
  MaxResults?: number;
1821
2031
  /**
2032
+ * @public
1822
2033
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1823
2034
  */
1824
2035
  NextToken?: string;
@@ -1829,26 +2040,32 @@ export interface ListNodesInput {
1829
2040
  */
1830
2041
  export interface NodeSummary {
1831
2042
  /**
2043
+ * @public
1832
2044
  * <p>The unique identifier of the node.</p>
1833
2045
  */
1834
2046
  Id?: string;
1835
2047
  /**
2048
+ * @public
1836
2049
  * <p>The status of the node.</p>
1837
2050
  */
1838
2051
  Status?: NodeStatus | string;
1839
2052
  /**
2053
+ * @public
1840
2054
  * <p>The date and time that the node was created.</p>
1841
2055
  */
1842
2056
  CreationDate?: Date;
1843
2057
  /**
2058
+ * @public
1844
2059
  * <p>The Availability Zone in which the node exists.</p>
1845
2060
  */
1846
2061
  AvailabilityZone?: string;
1847
2062
  /**
2063
+ * @public
1848
2064
  * <p>The EC2 instance type for the node.</p>
1849
2065
  */
1850
2066
  InstanceType?: string;
1851
2067
  /**
2068
+ * @public
1852
2069
  * <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>
1853
2070
  */
1854
2071
  Arn?: string;
@@ -1858,10 +2075,12 @@ export interface NodeSummary {
1858
2075
  */
1859
2076
  export interface ListNodesOutput {
1860
2077
  /**
2078
+ * @public
1861
2079
  * <p>An array of <code>NodeSummary</code> objects that contain configuration properties for each node.</p>
1862
2080
  */
1863
2081
  Nodes?: NodeSummary[];
1864
2082
  /**
2083
+ * @public
1865
2084
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1866
2085
  */
1867
2086
  NextToken?: string;
@@ -1871,18 +2090,21 @@ export interface ListNodesOutput {
1871
2090
  */
1872
2091
  export interface ListProposalsInput {
1873
2092
  /**
2093
+ * @public
1874
2094
  * <p>
1875
2095
  * The unique identifier of the network.
1876
2096
  * </p>
1877
2097
  */
1878
2098
  NetworkId: string | undefined;
1879
2099
  /**
2100
+ * @public
1880
2101
  * <p>
1881
2102
  * The maximum number of proposals to return.
1882
2103
  * </p>
1883
2104
  */
1884
2105
  MaxResults?: number;
1885
2106
  /**
2107
+ * @public
1886
2108
  * <p>
1887
2109
  * The pagination token that indicates the next set of results to retrieve.
1888
2110
  * </p>
@@ -1896,30 +2118,35 @@ export interface ListProposalsInput {
1896
2118
  */
1897
2119
  export interface ProposalSummary {
1898
2120
  /**
2121
+ * @public
1899
2122
  * <p>
1900
2123
  * The unique identifier of the proposal.
1901
2124
  * </p>
1902
2125
  */
1903
2126
  ProposalId?: string;
1904
2127
  /**
2128
+ * @public
1905
2129
  * <p>
1906
2130
  * The description of the proposal.
1907
2131
  * </p>
1908
2132
  */
1909
2133
  Description?: string;
1910
2134
  /**
2135
+ * @public
1911
2136
  * <p>
1912
2137
  * The unique identifier of the member that created the proposal.
1913
2138
  * </p>
1914
2139
  */
1915
2140
  ProposedByMemberId?: string;
1916
2141
  /**
2142
+ * @public
1917
2143
  * <p>
1918
2144
  * The name of the member that created the proposal.
1919
2145
  * </p>
1920
2146
  */
1921
2147
  ProposedByMemberName?: string;
1922
2148
  /**
2149
+ * @public
1923
2150
  * <p>The status of the proposal. Values are as follows:</p>
1924
2151
  * <ul>
1925
2152
  * <li>
@@ -1946,18 +2173,21 @@ export interface ProposalSummary {
1946
2173
  */
1947
2174
  Status?: ProposalStatus | string;
1948
2175
  /**
2176
+ * @public
1949
2177
  * <p>
1950
2178
  * The date and time that the proposal was created.
1951
2179
  * </p>
1952
2180
  */
1953
2181
  CreationDate?: Date;
1954
2182
  /**
2183
+ * @public
1955
2184
  * <p>
1956
2185
  * 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.
1957
2186
  * </p>
1958
2187
  */
1959
2188
  ExpirationDate?: Date;
1960
2189
  /**
2190
+ * @public
1961
2191
  * <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>
1962
2192
  */
1963
2193
  Arn?: string;
@@ -1967,10 +2197,12 @@ export interface ProposalSummary {
1967
2197
  */
1968
2198
  export interface ListProposalsOutput {
1969
2199
  /**
2200
+ * @public
1970
2201
  * <p>The summary of each proposal made on the network.</p>
1971
2202
  */
1972
2203
  Proposals?: ProposalSummary[];
1973
2204
  /**
2205
+ * @public
1974
2206
  * <p>The pagination token that indicates the next set of results to retrieve.</p>
1975
2207
  */
1976
2208
  NextToken?: string;
@@ -1980,24 +2212,28 @@ export interface ListProposalsOutput {
1980
2212
  */
1981
2213
  export interface ListProposalVotesInput {
1982
2214
  /**
2215
+ * @public
1983
2216
  * <p>
1984
2217
  * The unique identifier of the network.
1985
2218
  * </p>
1986
2219
  */
1987
2220
  NetworkId: string | undefined;
1988
2221
  /**
2222
+ * @public
1989
2223
  * <p>
1990
2224
  * The unique identifier of the proposal.
1991
2225
  * </p>
1992
2226
  */
1993
2227
  ProposalId: string | undefined;
1994
2228
  /**
2229
+ * @public
1995
2230
  * <p>
1996
2231
  * The maximum number of votes to return.
1997
2232
  * </p>
1998
2233
  */
1999
2234
  MaxResults?: number;
2000
2235
  /**
2236
+ * @public
2001
2237
  * <p>
2002
2238
  * The pagination token that indicates the next set of results to retrieve.
2003
2239
  * </p>
@@ -2025,18 +2261,21 @@ export type VoteValue = (typeof VoteValue)[keyof typeof VoteValue];
2025
2261
  */
2026
2262
  export interface VoteSummary {
2027
2263
  /**
2264
+ * @public
2028
2265
  * <p>
2029
2266
  * The vote value, either <code>YES</code> or <code>NO</code>.
2030
2267
  * </p>
2031
2268
  */
2032
2269
  Vote?: VoteValue | string;
2033
2270
  /**
2271
+ * @public
2034
2272
  * <p>
2035
2273
  * The name of the member that cast the vote.
2036
2274
  * </p>
2037
2275
  */
2038
2276
  MemberName?: string;
2039
2277
  /**
2278
+ * @public
2040
2279
  * <p>
2041
2280
  * The unique identifier of the member that cast the vote.
2042
2281
  * </p>
@@ -2048,12 +2287,14 @@ export interface VoteSummary {
2048
2287
  */
2049
2288
  export interface ListProposalVotesOutput {
2050
2289
  /**
2290
+ * @public
2051
2291
  * <p>
2052
2292
  * The list of votes.
2053
2293
  * </p>
2054
2294
  */
2055
2295
  ProposalVotes?: VoteSummary[];
2056
2296
  /**
2297
+ * @public
2057
2298
  * <p>
2058
2299
  * The pagination token that indicates the next set of results to retrieve.
2059
2300
  * </p>
@@ -2065,6 +2306,7 @@ export interface ListProposalVotesOutput {
2065
2306
  */
2066
2307
  export interface ListTagsForResourceRequest {
2067
2308
  /**
2309
+ * @public
2068
2310
  * <p>The Amazon Resource Name (ARN) of the resource. 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>
2069
2311
  */
2070
2312
  ResourceArn: string | undefined;
@@ -2074,6 +2316,7 @@ export interface ListTagsForResourceRequest {
2074
2316
  */
2075
2317
  export interface ListTagsForResourceResponse {
2076
2318
  /**
2319
+ * @public
2077
2320
  * <p>The tags assigned to the resource.</p>
2078
2321
  */
2079
2322
  Tags?: Record<string, string>;
@@ -2083,6 +2326,7 @@ export interface ListTagsForResourceResponse {
2083
2326
  */
2084
2327
  export interface RejectInvitationInput {
2085
2328
  /**
2329
+ * @public
2086
2330
  * <p>The unique identifier of the invitation to reject.</p>
2087
2331
  */
2088
2332
  InvitationId: string | undefined;
@@ -2097,10 +2341,12 @@ export interface RejectInvitationOutput {
2097
2341
  */
2098
2342
  export interface TagResourceRequest {
2099
2343
  /**
2344
+ * @public
2100
2345
  * <p>The Amazon Resource Name (ARN) of the resource. 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>
2101
2346
  */
2102
2347
  ResourceArn: string | undefined;
2103
2348
  /**
2349
+ * @public
2104
2350
  * <p>The tags to assign to the specified resource. Tag values can be empty, for example, <code>"MyTagKey" : ""</code>. You can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.</p>
2105
2351
  */
2106
2352
  Tags: Record<string, string> | undefined;
@@ -2115,10 +2361,12 @@ export interface TagResourceResponse {
2115
2361
  */
2116
2362
  export interface UntagResourceRequest {
2117
2363
  /**
2364
+ * @public
2118
2365
  * <p>The Amazon Resource Name (ARN) of the resource. 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>
2119
2366
  */
2120
2367
  ResourceArn: string | undefined;
2121
2368
  /**
2369
+ * @public
2122
2370
  * <p>The tag keys.</p>
2123
2371
  */
2124
2372
  TagKeys: string[] | undefined;
@@ -2133,14 +2381,17 @@ export interface UntagResourceResponse {
2133
2381
  */
2134
2382
  export interface UpdateMemberInput {
2135
2383
  /**
2384
+ * @public
2136
2385
  * <p>The unique identifier of the Managed Blockchain network to which the member belongs.</p>
2137
2386
  */
2138
2387
  NetworkId: string | undefined;
2139
2388
  /**
2389
+ * @public
2140
2390
  * <p>The unique identifier of the member.</p>
2141
2391
  */
2142
2392
  MemberId: string | undefined;
2143
2393
  /**
2394
+ * @public
2144
2395
  * <p>Configuration properties for publishing to Amazon CloudWatch Logs.</p>
2145
2396
  */
2146
2397
  LogPublishingConfiguration?: MemberLogPublishingConfiguration;
@@ -2155,19 +2406,23 @@ export interface UpdateMemberOutput {
2155
2406
  */
2156
2407
  export interface UpdateNodeInput {
2157
2408
  /**
2409
+ * @public
2158
2410
  * <p>The unique identifier of the network that the node is on.</p>
2159
2411
  */
2160
2412
  NetworkId: string | undefined;
2161
2413
  /**
2414
+ * @public
2162
2415
  * <p>The unique identifier of the member that owns the node.</p>
2163
2416
  * <p>Applies only to Hyperledger Fabric.</p>
2164
2417
  */
2165
2418
  MemberId?: string;
2166
2419
  /**
2420
+ * @public
2167
2421
  * <p>The unique identifier of the node.</p>
2168
2422
  */
2169
2423
  NodeId: string | undefined;
2170
2424
  /**
2425
+ * @public
2171
2426
  * <p>Configuration properties for publishing to Amazon CloudWatch Logs.</p>
2172
2427
  */
2173
2428
  LogPublishingConfiguration?: NodeLogPublishingConfiguration;
@@ -2182,23 +2437,27 @@ export interface UpdateNodeOutput {
2182
2437
  */
2183
2438
  export interface VoteOnProposalInput {
2184
2439
  /**
2440
+ * @public
2185
2441
  * <p>
2186
2442
  * The unique identifier of the network.
2187
2443
  * </p>
2188
2444
  */
2189
2445
  NetworkId: string | undefined;
2190
2446
  /**
2447
+ * @public
2191
2448
  * <p>
2192
2449
  * The unique identifier of the proposal.
2193
2450
  * </p>
2194
2451
  */
2195
2452
  ProposalId: string | undefined;
2196
2453
  /**
2454
+ * @public
2197
2455
  * <p>The unique identifier of the member casting the vote.
2198
2456
  * </p>
2199
2457
  */
2200
2458
  VoterMemberId: string | undefined;
2201
2459
  /**
2460
+ * @public
2202
2461
  * <p>
2203
2462
  * The value of the vote.
2204
2463
  * </p>