aws-sdk-managedblockchain 1.32.0 → 1.34.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.
@@ -10,7 +10,7 @@
10
10
  module Aws::ManagedBlockchain
11
11
  module Types
12
12
 
13
- # You do not have sufficient access to perform this action.
13
+ # You don't have sufficient access to perform this action.
14
14
  #
15
15
  # @!attribute [rw] message
16
16
  # @return [String]
@@ -23,6 +23,112 @@ module Aws::ManagedBlockchain
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
+ # The token based access feature is in preview release for Ethereum on
27
+ # Amazon Managed Blockchain and is subject to change. We recommend that
28
+ # you use this feature only with test scenarios, and not in production
29
+ # environments.
30
+ #
31
+ # The properties of the Accessor.
32
+ #
33
+ # @!attribute [rw] id
34
+ # The unique identifier of the accessor.
35
+ # @return [String]
36
+ #
37
+ # @!attribute [rw] type
38
+ # The type of the accessor.
39
+ #
40
+ # <note markdown="1"> Currently accessor type is restricted to `BILLING_TOKEN`.
41
+ #
42
+ # </note>
43
+ # @return [String]
44
+ #
45
+ # @!attribute [rw] billing_token
46
+ # The billing token is a property of the accessor. Use this token to
47
+ # make Ethereum API calls to your Ethereum node. The billing token is
48
+ # used to track your accessor object for billing Ethereum API requests
49
+ # made to your Ethereum nodes.
50
+ # @return [String]
51
+ #
52
+ # @!attribute [rw] status
53
+ # The current status of the accessor.
54
+ # @return [String]
55
+ #
56
+ # @!attribute [rw] creation_date
57
+ # The creation date and time of the accessor.
58
+ # @return [Time]
59
+ #
60
+ # @!attribute [rw] arn
61
+ # The Amazon Resource Name (ARN) of the accessor. For more information
62
+ # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
63
+ # in the *Amazon Web Services General Reference*.
64
+ #
65
+ #
66
+ #
67
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
68
+ # @return [String]
69
+ #
70
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/Accessor AWS API Documentation
71
+ #
72
+ class Accessor < Struct.new(
73
+ :id,
74
+ :type,
75
+ :billing_token,
76
+ :status,
77
+ :creation_date,
78
+ :arn)
79
+ SENSITIVE = []
80
+ include Aws::Structure
81
+ end
82
+
83
+ # The token based access feature is in preview release for Ethereum on
84
+ # Amazon Managed Blockchain and is subject to change. We recommend that
85
+ # you use this feature only with test scenarios, and not in production
86
+ # environments.
87
+ #
88
+ # A summary of accessor properties.
89
+ #
90
+ # @!attribute [rw] id
91
+ # The unique identifier of the accessor.
92
+ # @return [String]
93
+ #
94
+ # @!attribute [rw] type
95
+ # The type of the accessor.
96
+ #
97
+ # <note markdown="1"> Currently accessor type is restricted to `BILLING_TOKEN`.
98
+ #
99
+ # </note>
100
+ # @return [String]
101
+ #
102
+ # @!attribute [rw] status
103
+ # The current status of the accessor.
104
+ # @return [String]
105
+ #
106
+ # @!attribute [rw] creation_date
107
+ # The creation date and time of the accessor.
108
+ # @return [Time]
109
+ #
110
+ # @!attribute [rw] arn
111
+ # The Amazon Resource Name (ARN) of the accessor. For more information
112
+ # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
113
+ # in the *Amazon Web Services General Reference*.
114
+ #
115
+ #
116
+ #
117
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
118
+ # @return [String]
119
+ #
120
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/AccessorSummary AWS API Documentation
121
+ #
122
+ class AccessorSummary < Struct.new(
123
+ :id,
124
+ :type,
125
+ :status,
126
+ :creation_date,
127
+ :arn)
128
+ SENSITIVE = []
129
+ include Aws::Structure
130
+ end
131
+
26
132
  # A policy type that defines the voting rules for the network. The rules
27
133
  # decide if a proposal is approved. Approval may be based on criteria
28
134
  # such as the percentage of `YES` votes and the duration of the
@@ -55,7 +161,7 @@ module Aws::ManagedBlockchain
55
161
  # expires. If members cast neither the required number of `YES` votes
56
162
  # to approve the proposal nor the number of `NO` votes required to
57
163
  # reject it before the duration expires, the proposal is `EXPIRED` and
58
- # `ProposalActions` are not carried out.
164
+ # `ProposalActions` aren't carried out.
59
165
  # @return [Integer]
60
166
  #
61
167
  # @!attribute [rw] threshold_comparator
@@ -74,6 +180,63 @@ module Aws::ManagedBlockchain
74
180
  include Aws::Structure
75
181
  end
76
182
 
183
+ # @note When making an API call, you may pass CreateAccessorInput
184
+ # data as a hash:
185
+ #
186
+ # {
187
+ # client_request_token: "ClientRequestTokenString", # required
188
+ # accessor_type: "BILLING_TOKEN", # required, accepts BILLING_TOKEN
189
+ # }
190
+ #
191
+ # @!attribute [rw] client_request_token
192
+ # This is a unique, case-sensitive identifier that you provide to
193
+ # ensure the idempotency of the operation. An idempotent operation
194
+ # completes no more than once. This identifier is required only if you
195
+ # make a service request directly using an HTTP client. It is
196
+ # generated automatically if you use an Amazon Web Services SDK or the
197
+ # Amazon Web Services CLI.
198
+ #
199
+ # **A suitable default value is auto-generated.** You should normally
200
+ # not need to pass this option.
201
+ # @return [String]
202
+ #
203
+ # @!attribute [rw] accessor_type
204
+ # The type of accessor.
205
+ #
206
+ # <note markdown="1"> Currently accessor type is restricted to `BILLING_TOKEN`.
207
+ #
208
+ # </note>
209
+ # @return [String]
210
+ #
211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/CreateAccessorInput AWS API Documentation
212
+ #
213
+ class CreateAccessorInput < Struct.new(
214
+ :client_request_token,
215
+ :accessor_type)
216
+ SENSITIVE = []
217
+ include Aws::Structure
218
+ end
219
+
220
+ # @!attribute [rw] accessor_id
221
+ # The unique identifier of the accessor.
222
+ # @return [String]
223
+ #
224
+ # @!attribute [rw] billing_token
225
+ # The billing token is a property of the Accessor. Use this token to
226
+ # make Ethereum API calls to your Ethereum node. The billing token is
227
+ # used to track your accessor object for billing Ethereum API requests
228
+ # made to your Ethereum nodes.
229
+ # @return [String]
230
+ #
231
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/CreateAccessorOutput AWS API Documentation
232
+ #
233
+ class CreateAccessorOutput < Struct.new(
234
+ :accessor_id,
235
+ :billing_token)
236
+ SENSITIVE = []
237
+ include Aws::Structure
238
+ end
239
+
77
240
  # @note When making an API call, you may pass CreateMemberInput
78
241
  # data as a hash:
79
242
  #
@@ -111,7 +274,7 @@ module Aws::ManagedBlockchain
111
274
  # idempotency of the operation. An idempotent operation completes no
112
275
  # more than one time. This identifier is required only if you make a
113
276
  # service request directly using an HTTP client. It is generated
114
- # automatically if you use an AWS SDK or the AWS CLI.
277
+ # automatically if you use an Amazon Web Services SDK or the CLI.
115
278
  #
116
279
  # **A suitable default value is auto-generated.** You should normally
117
280
  # not need to pass this option.
@@ -203,11 +366,12 @@ module Aws::ManagedBlockchain
203
366
  # }
204
367
  #
205
368
  # @!attribute [rw] client_request_token
206
- # A unique, case-sensitive identifier that you provide to ensure the
207
- # idempotency of the operation. An idempotent operation completes no
208
- # more than one time. This identifier is required only if you make a
209
- # service request directly using an HTTP client. It is generated
210
- # automatically if you use an AWS SDK or the AWS CLI.
369
+ # This is a unique, case-sensitive identifier that you provide to
370
+ # ensure the idempotency of the operation. An idempotent operation
371
+ # completes no more than once. This identifier is required only if you
372
+ # make a service request directly using an HTTP client. It is
373
+ # generated automatically if you use an Amazon Web Services SDK or the
374
+ # Amazon Web Services CLI.
211
375
  #
212
376
  # **A suitable default value is auto-generated.** You should normally
213
377
  # not need to pass this option.
@@ -331,7 +495,7 @@ module Aws::ManagedBlockchain
331
495
  # idempotency of the operation. An idempotent operation completes no
332
496
  # more than one time. This identifier is required only if you make a
333
497
  # service request directly using an HTTP client. It is generated
334
- # automatically if you use an AWS SDK or the AWS CLI.
498
+ # automatically if you use an Amazon Web Services SDK or the CLI.
335
499
  #
336
500
  # **A suitable default value is auto-generated.** You should normally
337
501
  # not need to pass this option.
@@ -432,7 +596,7 @@ module Aws::ManagedBlockchain
432
596
  # idempotency of the operation. An idempotent operation completes no
433
597
  # more than one time. This identifier is required only if you make a
434
598
  # service request directly using an HTTP client. It is generated
435
- # automatically if you use an AWS SDK or the AWS CLI.
599
+ # automatically if you use an Amazon Web Services SDK or the CLI.
436
600
  #
437
601
  # **A suitable default value is auto-generated.** You should normally
438
602
  # not need to pass this option.
@@ -445,8 +609,8 @@ module Aws::ManagedBlockchain
445
609
  # @!attribute [rw] member_id
446
610
  # The unique identifier of the member that is creating the proposal.
447
611
  # This identifier is especially useful for identifying the member
448
- # making the proposal when multiple members exist in a single AWS
449
- # account.
612
+ # making the proposal when multiple members exist in a single Amazon
613
+ # Web Services account.
450
614
  # @return [String]
451
615
  #
452
616
  # @!attribute [rw] actions
@@ -506,6 +670,29 @@ module Aws::ManagedBlockchain
506
670
  include Aws::Structure
507
671
  end
508
672
 
673
+ # @note When making an API call, you may pass DeleteAccessorInput
674
+ # data as a hash:
675
+ #
676
+ # {
677
+ # accessor_id: "ResourceIdString", # required
678
+ # }
679
+ #
680
+ # @!attribute [rw] accessor_id
681
+ # The unique identifier of the accessor.
682
+ # @return [String]
683
+ #
684
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/DeleteAccessorInput AWS API Documentation
685
+ #
686
+ class DeleteAccessorInput < Struct.new(
687
+ :accessor_id)
688
+ SENSITIVE = []
689
+ include Aws::Structure
690
+ end
691
+
692
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/DeleteAccessorOutput AWS API Documentation
693
+ #
694
+ class DeleteAccessorOutput < Aws::EmptyStructure; end
695
+
509
696
  # @note When making an API call, you may pass DeleteMemberInput
510
697
  # data as a hash:
511
698
  #
@@ -582,6 +769,37 @@ module Aws::ManagedBlockchain
582
769
  #
583
770
  class DeleteNodeOutput < Aws::EmptyStructure; end
584
771
 
772
+ # @note When making an API call, you may pass GetAccessorInput
773
+ # data as a hash:
774
+ #
775
+ # {
776
+ # accessor_id: "ResourceIdString", # required
777
+ # }
778
+ #
779
+ # @!attribute [rw] accessor_id
780
+ # The unique identifier of the accessor.
781
+ # @return [String]
782
+ #
783
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/GetAccessorInput AWS API Documentation
784
+ #
785
+ class GetAccessorInput < Struct.new(
786
+ :accessor_id)
787
+ SENSITIVE = []
788
+ include Aws::Structure
789
+ end
790
+
791
+ # @!attribute [rw] accessor
792
+ # The properties of the accessor.
793
+ # @return [Types::Accessor]
794
+ #
795
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/GetAccessorOutput AWS API Documentation
796
+ #
797
+ class GetAccessorOutput < Struct.new(
798
+ :accessor)
799
+ SENSITIVE = []
800
+ include Aws::Structure
801
+ end
802
+
585
803
  # @note When making an API call, you may pass GetMemberInput
586
804
  # data as a hash:
587
805
  #
@@ -765,8 +983,8 @@ module Aws::ManagedBlockchain
765
983
  include Aws::Structure
766
984
  end
767
985
 
768
- # An invitation to an AWS account to create a member and join the
769
- # network.
986
+ # An invitation to an Amazon Web Services account to create a member and
987
+ # join the network.
770
988
  #
771
989
  # Applies only to Hyperledger Fabric.
772
990
  #
@@ -789,11 +1007,11 @@ module Aws::ManagedBlockchain
789
1007
  # @!attribute [rw] status
790
1008
  # The status of the invitation:
791
1009
  #
792
- # * `PENDING` - The invitee has not created a member to join the
793
- # network, and the invitation has not yet expired.
1010
+ # * `PENDING` - The invitee hasn't created a member to join the
1011
+ # network, and the invitation hasn't yet expired.
794
1012
  #
795
1013
  # * `ACCEPTING` - The invitee has begun creating a member, and
796
- # creation has not yet completed.
1014
+ # creation hasn't yet completed.
797
1015
  #
798
1016
  # * `ACCEPTED` - The invitee created a member and joined the network
799
1017
  # using the `InvitationID`.
@@ -811,7 +1029,7 @@ module Aws::ManagedBlockchain
811
1029
  # @!attribute [rw] arn
812
1030
  # The Amazon Resource Name (ARN) of the invitation. For more
813
1031
  # information about ARNs and their format, see [Amazon Resource Names
814
- # (ARNs)][1] in the *AWS General Reference*.
1032
+ # (ARNs)][1] in the *Amazon Web Services General Reference*.
815
1033
  #
816
1034
  #
817
1035
  #
@@ -831,9 +1049,9 @@ module Aws::ManagedBlockchain
831
1049
  include Aws::Structure
832
1050
  end
833
1051
 
834
- # An action to invite a specific AWS account to create a member and join
835
- # the network. The `InviteAction` is carried out when a `Proposal` is
836
- # `APPROVED`.
1052
+ # An action to invite a specific Amazon Web Services account to create a
1053
+ # member and join the network. The `InviteAction` is carried out when a
1054
+ # `Proposal` is `APPROVED`.
837
1055
  #
838
1056
  # Applies only to Hyperledger Fabric.
839
1057
  #
@@ -845,7 +1063,7 @@ module Aws::ManagedBlockchain
845
1063
  # }
846
1064
  #
847
1065
  # @!attribute [rw] principal
848
- # The AWS account ID to invite.
1066
+ # The Amazon Web Services account ID to invite.
849
1067
  # @return [String]
850
1068
  #
851
1069
  # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/InviteAction AWS API Documentation
@@ -856,6 +1074,51 @@ module Aws::ManagedBlockchain
856
1074
  include Aws::Structure
857
1075
  end
858
1076
 
1077
+ # @note When making an API call, you may pass ListAccessorsInput
1078
+ # data as a hash:
1079
+ #
1080
+ # {
1081
+ # max_results: 1,
1082
+ # next_token: "PaginationToken",
1083
+ # }
1084
+ #
1085
+ # @!attribute [rw] max_results
1086
+ # The maximum number of accessors to list.
1087
+ # @return [Integer]
1088
+ #
1089
+ # @!attribute [rw] next_token
1090
+ # The pagination token that indicates the next set of results to
1091
+ # retrieve.
1092
+ # @return [String]
1093
+ #
1094
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ListAccessorsInput AWS API Documentation
1095
+ #
1096
+ class ListAccessorsInput < Struct.new(
1097
+ :max_results,
1098
+ :next_token)
1099
+ SENSITIVE = []
1100
+ include Aws::Structure
1101
+ end
1102
+
1103
+ # @!attribute [rw] accessors
1104
+ # An array of AccessorSummary objects that contain configuration
1105
+ # properties for each accessor.
1106
+ # @return [Array<Types::AccessorSummary>]
1107
+ #
1108
+ # @!attribute [rw] next_token
1109
+ # The pagination token that indicates the next set of results to
1110
+ # retrieve.
1111
+ # @return [String]
1112
+ #
1113
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ListAccessorsOutput AWS API Documentation
1114
+ #
1115
+ class ListAccessorsOutput < Struct.new(
1116
+ :accessors,
1117
+ :next_token)
1118
+ SENSITIVE = []
1119
+ include Aws::Structure
1120
+ end
1121
+
859
1122
  # @note When making an API call, you may pass ListInvitationsInput
860
1123
  # data as a hash:
861
1124
  #
@@ -927,9 +1190,9 @@ module Aws::ManagedBlockchain
927
1190
  #
928
1191
  # @!attribute [rw] is_owned
929
1192
  # An optional Boolean value. If provided, the request is limited
930
- # either to members that the current AWS account owns (`true`) or that
931
- # other AWS accounts own (`false`). If omitted, all members are
932
- # listed.
1193
+ # either to members that the current Amazon Web Services account owns
1194
+ # (`true`) or that other Amazon Web Services accountsn own (`false`).
1195
+ # If omitted, all members are listed.
933
1196
  # @return [Boolean]
934
1197
  #
935
1198
  # @!attribute [rw] max_results
@@ -1223,7 +1486,7 @@ module Aws::ManagedBlockchain
1223
1486
  # @!attribute [rw] resource_arn
1224
1487
  # The Amazon Resource Name (ARN) of the resource. For more information
1225
1488
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
1226
- # in the *AWS General Reference*.
1489
+ # in the *Amazon Web Services General Reference*.
1227
1490
  #
1228
1491
  #
1229
1492
  #
@@ -1327,37 +1590,38 @@ module Aws::ManagedBlockchain
1327
1590
  # @!attribute [rw] status
1328
1591
  # The status of a member.
1329
1592
  #
1330
- # * `CREATING` - The AWS account is in the process of creating a
1331
- # member.
1593
+ # * `CREATING` - The Amazon Web Services account is in the process of
1594
+ # creating a member.
1332
1595
  #
1333
1596
  # * `AVAILABLE` - The member has been created and can participate in
1334
1597
  # the network.
1335
1598
  #
1336
- # * `CREATE_FAILED` - The AWS account attempted to create a member and
1337
- # creation failed.
1599
+ # * `CREATE_FAILED` - The Amazon Web Services account attempted to
1600
+ # create a member and creation failed.
1338
1601
  #
1339
1602
  # * `UPDATING` - The member is in the process of being updated.
1340
1603
  #
1341
1604
  # * `DELETING` - The member and all associated resources are in the
1342
- # process of being deleted. Either the AWS account that owns the
1343
- # member deleted it, or the member is being deleted as the result of
1344
- # an `APPROVED` `PROPOSAL` to remove the member.
1345
- #
1346
- # * `DELETED` - The member can no longer participate on the network
1347
- # and all associated resources are deleted. Either the AWS account
1605
+ # process of being deleted. Either the Amazon Web Services account
1348
1606
  # that owns the member deleted it, or the member is being deleted as
1349
1607
  # the result of an `APPROVED` `PROPOSAL` to remove the member.
1350
1608
  #
1609
+ # * `DELETED` - The member can no longer participate on the network
1610
+ # and all associated resources are deleted. Either the Amazon Web
1611
+ # Services account that owns the member deleted it, or the member is
1612
+ # being deleted as the result of an `APPROVED` `PROPOSAL` to remove
1613
+ # the member.
1614
+ #
1351
1615
  # * `INACCESSIBLE_ENCRYPTION_KEY` - The member is impaired and might
1352
1616
  # not function as expected because it cannot access the specified
1353
- # customer managed key in AWS KMS for encryption at rest. Either the
1354
- # KMS key was disabled or deleted, or the grants on the key were
1617
+ # customer managed key in KMS for encryption at rest. Either the KMS
1618
+ # key was disabled or deleted, or the grants on the key were
1355
1619
  # revoked.
1356
1620
  #
1357
- # The effect of disabling or deleting a key, or revoking a grant is
1358
- # not immediate. The member resource might take some time to find
1359
- # that the key is inaccessible. When a resource is in this state, we
1360
- # recommend deleting and recreating the resource.
1621
+ # The effect of disabling or deleting a key or of revoking a grant
1622
+ # isn't immediate. It might take some time for the member resource
1623
+ # to discover that the key is inaccessible. When a resource is in
1624
+ # this state, we recommend deleting and recreating the resource.
1361
1625
  # @return [String]
1362
1626
  #
1363
1627
  # @!attribute [rw] creation_date
@@ -1378,7 +1642,7 @@ module Aws::ManagedBlockchain
1378
1642
  # @!attribute [rw] arn
1379
1643
  # The Amazon Resource Name (ARN) of the member. For more information
1380
1644
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
1381
- # in the *AWS General Reference*.
1645
+ # in the *Amazon Web Services General Reference*.
1382
1646
  #
1383
1647
  #
1384
1648
  #
@@ -1386,11 +1650,18 @@ module Aws::ManagedBlockchain
1386
1650
  # @return [String]
1387
1651
  #
1388
1652
  # @!attribute [rw] kms_key_arn
1389
- # The Amazon Resource Name (ARN) of the customer managed key in AWS
1390
- # Key Management Service (AWS KMS) that the member uses for encryption
1391
- # at rest. If the value of this parameter is `"AWS Owned KMS Key"`,
1392
- # the member uses an AWS owned KMS key for encryption. This parameter
1393
- # is inherited by the nodes that this member owns.
1653
+ # The Amazon Resource Name (ARN) of the customer managed key in Key
1654
+ # Management Service (KMS) that the member uses for encryption at
1655
+ # rest. If the value of this parameter is `"AWS Owned KMS Key"`, the
1656
+ # member uses an Amazon Web Services owned KMS key for encryption.
1657
+ # This parameter is inherited by the nodes that this member owns.
1658
+ #
1659
+ # For more information, see [Encryption at Rest][1] in the *Amazon
1660
+ # Managed Blockchain Hyperledger Fabric Developer Guide*.
1661
+ #
1662
+ #
1663
+ #
1664
+ # [1]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/managed-blockchain-encryption-at-rest.html
1394
1665
  # @return [String]
1395
1666
  #
1396
1667
  # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/Member AWS API Documentation
@@ -1476,29 +1747,31 @@ module Aws::ManagedBlockchain
1476
1747
  # @return [Hash<String,String>]
1477
1748
  #
1478
1749
  # @!attribute [rw] kms_key_arn
1479
- # The Amazon Resource Name (ARN) of the customer managed key in AWS
1480
- # Key Management Service (AWS KMS) to use for encryption at rest in
1481
- # the member. This parameter is inherited by any nodes that this
1482
- # member creates.
1750
+ # The Amazon Resource Name (ARN) of the customer managed key in Key
1751
+ # Management Service (KMS) to use for encryption at rest in the
1752
+ # member. This parameter is inherited by any nodes that this member
1753
+ # creates. For more information, see [Encryption at Rest][1] in the
1754
+ # *Amazon Managed Blockchain Hyperledger Fabric Developer Guide*.
1483
1755
  #
1484
1756
  # Use one of the following options to specify this parameter:
1485
1757
  #
1486
- # * **Undefined or empty string** - The member uses an AWS owned KMS
1487
- # key for encryption by default.
1758
+ # * **Undefined or empty string** - By default, use an KMS key that is
1759
+ # owned and managed by Amazon Web Services on your behalf.
1488
1760
  #
1489
- # * **A valid symmetric customer managed KMS key** - The member uses
1490
- # the specified key for encryption.
1761
+ # * **A valid symmetric customer managed KMS key** - Use the specified
1762
+ # KMS key in your account that you create, own, and manage.
1491
1763
  #
1492
1764
  # Amazon Managed Blockchain doesn't support asymmetric keys. For
1493
- # more information, see [Using symmetric and asymmetric keys][1] in
1494
- # the *AWS Key Management Service Developer Guide*.
1765
+ # more information, see [Using symmetric and asymmetric keys][2] in
1766
+ # the *Key Management Service Developer Guide*.
1495
1767
  #
1496
1768
  # The following is an example of a KMS key ARN:
1497
1769
  # `arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab`
1498
1770
  #
1499
1771
  #
1500
1772
  #
1501
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
1773
+ # [1]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/managed-blockchain-encryption-at-rest.html
1774
+ # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
1502
1775
  # @return [String]
1503
1776
  #
1504
1777
  # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/MemberConfiguration AWS API Documentation
@@ -1688,37 +1961,38 @@ module Aws::ManagedBlockchain
1688
1961
  # @!attribute [rw] status
1689
1962
  # The status of the member.
1690
1963
  #
1691
- # * `CREATING` - The AWS account is in the process of creating a
1692
- # member.
1964
+ # * `CREATING` - The Amazon Web Services account is in the process of
1965
+ # creating a member.
1693
1966
  #
1694
1967
  # * `AVAILABLE` - The member has been created and can participate in
1695
1968
  # the network.
1696
1969
  #
1697
- # * `CREATE_FAILED` - The AWS account attempted to create a member and
1698
- # creation failed.
1970
+ # * `CREATE_FAILED` - The Amazon Web Services account attempted to
1971
+ # create a member and creation failed.
1699
1972
  #
1700
1973
  # * `UPDATING` - The member is in the process of being updated.
1701
1974
  #
1702
1975
  # * `DELETING` - The member and all associated resources are in the
1703
- # process of being deleted. Either the AWS account that owns the
1704
- # member deleted it, or the member is being deleted as the result of
1705
- # an `APPROVED` `PROPOSAL` to remove the member.
1706
- #
1707
- # * `DELETED` - The member can no longer participate on the network
1708
- # and all associated resources are deleted. Either the AWS account
1976
+ # process of being deleted. Either the Amazon Web Services account
1709
1977
  # that owns the member deleted it, or the member is being deleted as
1710
1978
  # the result of an `APPROVED` `PROPOSAL` to remove the member.
1711
1979
  #
1980
+ # * `DELETED` - The member can no longer participate on the network
1981
+ # and all associated resources are deleted. Either the Amazon Web
1982
+ # Services account that owns the member deleted it, or the member is
1983
+ # being deleted as the result of an `APPROVED` `PROPOSAL` to remove
1984
+ # the member.
1985
+ #
1712
1986
  # * `INACCESSIBLE_ENCRYPTION_KEY` - The member is impaired and might
1713
1987
  # not function as expected because it cannot access the specified
1714
- # customer managed key in AWS Key Management Service (AWS KMS) for
1988
+ # customer managed key in Key Management Service (KMS) for
1715
1989
  # encryption at rest. Either the KMS key was disabled or deleted, or
1716
1990
  # the grants on the key were revoked.
1717
1991
  #
1718
- # The effect of disabling or deleting a key, or revoking a grant is
1719
- # not immediate. The member resource might take some time to find
1720
- # that the key is inaccessible. When a resource is in this state, we
1721
- # recommend deleting and recreating the resource.
1992
+ # The effect of disabling or deleting a key or of revoking a grant
1993
+ # isn't immediate. It might take some time for the member resource
1994
+ # to discover that the key is inaccessible. When a resource is in
1995
+ # this state, we recommend deleting and recreating the resource.
1722
1996
  # @return [String]
1723
1997
  #
1724
1998
  # @!attribute [rw] creation_date
@@ -1726,14 +2000,14 @@ module Aws::ManagedBlockchain
1726
2000
  # @return [Time]
1727
2001
  #
1728
2002
  # @!attribute [rw] is_owned
1729
- # An indicator of whether the member is owned by your AWS account or a
1730
- # different AWS account.
2003
+ # An indicator of whether the member is owned by your Amazon Web
2004
+ # Services account or a different Amazon Web Services account.
1731
2005
  # @return [Boolean]
1732
2006
  #
1733
2007
  # @!attribute [rw] arn
1734
2008
  # The Amazon Resource Name (ARN) of the member. For more information
1735
2009
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
1736
- # in the *AWS General Reference*.
2010
+ # in the *Amazon Web Services General Reference*.
1737
2011
  #
1738
2012
  #
1739
2013
  #
@@ -1817,7 +2091,7 @@ module Aws::ManagedBlockchain
1817
2091
  # @!attribute [rw] arn
1818
2092
  # The Amazon Resource Name (ARN) of the network. For more information
1819
2093
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
1820
- # in the *AWS General Reference*.
2094
+ # in the *Amazon Web Services General Reference*.
1821
2095
  #
1822
2096
  #
1823
2097
  #
@@ -1995,7 +2269,7 @@ module Aws::ManagedBlockchain
1995
2269
  # @!attribute [rw] arn
1996
2270
  # The Amazon Resource Name (ARN) of the network. For more information
1997
2271
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
1998
- # in the *AWS General Reference*.
2272
+ # in the *Amazon Web Services General Reference*.
1999
2273
  #
2000
2274
  #
2001
2275
  #
@@ -2061,7 +2335,8 @@ module Aws::ManagedBlockchain
2061
2335
  # @!attribute [rw] status
2062
2336
  # The status of the node.
2063
2337
  #
2064
- # * `CREATING` - The AWS account is in the process of creating a node.
2338
+ # * `CREATING` - The Amazon Web Services account is in the process of
2339
+ # creating a node.
2065
2340
  #
2066
2341
  # * `AVAILABLE` - The node has been created and can participate in the
2067
2342
  # network.
@@ -2071,8 +2346,8 @@ module Aws::ManagedBlockchain
2071
2346
  # this state and tries to recover them. If a node is recoverable, it
2072
2347
  # returns to `AVAILABLE`. Otherwise, it moves to `FAILED` status.
2073
2348
  #
2074
- # * `CREATE_FAILED` - The AWS account attempted to create a node and
2075
- # creation failed.
2349
+ # * `CREATE_FAILED` - The Amazon Web Services account attempted to
2350
+ # create a node and creation failed.
2076
2351
  #
2077
2352
  # * `UPDATING` - The node is in the process of being updated.
2078
2353
  #
@@ -2085,14 +2360,14 @@ module Aws::ManagedBlockchain
2085
2360
  #
2086
2361
  # * `INACCESSIBLE_ENCRYPTION_KEY` - The node is impaired and might not
2087
2362
  # function as expected because it cannot access the specified
2088
- # customer managed key in AWS KMS for encryption at rest. Either the
2089
- # KMS key was disabled or deleted, or the grants on the key were
2363
+ # customer managed key in KMS for encryption at rest. Either the KMS
2364
+ # key was disabled or deleted, or the grants on the key were
2090
2365
  # revoked.
2091
2366
  #
2092
- # The effect of disabling or deleting a key, or revoking a grant is
2093
- # not immediate. The node resource might take some time to find that
2094
- # the key is inaccessible. When a resource is in this state, we
2095
- # recommend deleting and recreating the resource.
2367
+ # The effect of disabling or deleting a key or of revoking a grant
2368
+ # isn't immediate. It might take some time for the node resource to
2369
+ # discover that the key is inaccessible. When a resource is in this
2370
+ # state, we recommend deleting and recreating the resource.
2096
2371
  # @return [String]
2097
2372
  #
2098
2373
  # @!attribute [rw] creation_date
@@ -2117,7 +2392,7 @@ module Aws::ManagedBlockchain
2117
2392
  # @!attribute [rw] arn
2118
2393
  # The Amazon Resource Name (ARN) of the node. For more information
2119
2394
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
2120
- # in the *AWS General Reference*.
2395
+ # in the *Amazon Web Services General Reference*.
2121
2396
  #
2122
2397
  #
2123
2398
  #
@@ -2125,13 +2400,20 @@ module Aws::ManagedBlockchain
2125
2400
  # @return [String]
2126
2401
  #
2127
2402
  # @!attribute [rw] kms_key_arn
2128
- # The Amazon Resource Name (ARN) of the customer managed key in AWS
2129
- # Key Management Service (AWS KMS) that the node uses for encryption
2130
- # at rest. If the value of this parameter is `"AWS Owned KMS Key"`,
2131
- # the node uses an AWS owned KMS key for encryption. The node inherits
2132
- # this parameter from the member that it belongs to.
2403
+ # The Amazon Resource Name (ARN) of the customer managed key in Key
2404
+ # Management Service (KMS) that the node uses for encryption at rest.
2405
+ # If the value of this parameter is `"AWS Owned KMS Key"`, the node
2406
+ # uses an Amazon Web Services owned KMS key for encryption. The node
2407
+ # inherits this parameter from the member that it belongs to.
2408
+ #
2409
+ # For more information, see [Encryption at Rest][1] in the *Amazon
2410
+ # Managed Blockchain Hyperledger Fabric Developer Guide*.
2133
2411
  #
2134
2412
  # Applies only to Hyperledger Fabric.
2413
+ #
2414
+ #
2415
+ #
2416
+ # [1]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/managed-blockchain-encryption-at-rest.html
2135
2417
  # @return [String]
2136
2418
  #
2137
2419
  # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/Node AWS API Documentation
@@ -2215,11 +2497,11 @@ module Aws::ManagedBlockchain
2215
2497
  # Attributes of an Ethereum node.
2216
2498
  #
2217
2499
  # @!attribute [rw] http_endpoint
2218
- # The endpoint on which the Ethereum node listens to run Ethereum
2219
- # JSON-RPC methods over HTTP connections from a client. Use this
2220
- # endpoint in client code for smart contracts when using an HTTP
2221
- # connection. Connections to this endpoint are authenticated using
2222
- # [Signature Version 4][1].
2500
+ # The endpoint on which the Ethereum node listens to run Ethereum API
2501
+ # methods over HTTP connections from a client. Use this endpoint in
2502
+ # client code for smart contracts when using an HTTP connection.
2503
+ # Connections to this endpoint are authenticated using [Signature
2504
+ # Version 4][1].
2223
2505
  #
2224
2506
  #
2225
2507
  #
@@ -2395,7 +2677,7 @@ module Aws::ManagedBlockchain
2395
2677
  # @!attribute [rw] arn
2396
2678
  # The Amazon Resource Name (ARN) of the node. For more information
2397
2679
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
2398
- # in the *AWS General Reference*.
2680
+ # in the *Amazon Web Services General Reference*.
2399
2681
  #
2400
2682
  #
2401
2683
  #
@@ -2454,15 +2736,15 @@ module Aws::ManagedBlockchain
2454
2736
  #
2455
2737
  # * `REJECTED` - The proposal was rejected with insufficient `YES`
2456
2738
  # votes among members according to the `VotingPolicy` specified for
2457
- # the `Network`. The specified `ProposalActions` are not carried
2739
+ # the `Network`. The specified `ProposalActions` aren't carried
2458
2740
  # out.
2459
2741
  #
2460
- # * `EXPIRED` - Members did not cast the number of votes required to
2742
+ # * `EXPIRED` - Members didn't cast the number of votes required to
2461
2743
  # determine the proposal outcome before the proposal expired. The
2462
- # specified `ProposalActions` are not carried out.
2744
+ # specified `ProposalActions` aren't carried out.
2463
2745
  #
2464
2746
  # * `ACTION_FAILED` - One or more of the specified `ProposalActions`
2465
- # in a proposal that was approved could not be completed because of
2747
+ # in a proposal that was approved couldn't be completed because of
2466
2748
  # an error. The `ACTION_FAILED` status occurs even if only one
2467
2749
  # ProposalAction fails and other actions are successful.
2468
2750
  # @return [String]
@@ -2475,9 +2757,9 @@ module Aws::ManagedBlockchain
2475
2757
  # The date and time that the proposal expires. This is the
2476
2758
  # `CreationDate` plus the `ProposalDurationInHours` that is specified
2477
2759
  # in the `ProposalThresholdPolicy`. After this date and time, if
2478
- # members have not cast enough votes to determine the outcome
2760
+ # members haven't cast enough votes to determine the outcome
2479
2761
  # according to the voting policy, the proposal is `EXPIRED` and
2480
- # `Actions` are not carried out.
2762
+ # `Actions` aren't carried out.
2481
2763
  # @return [Time]
2482
2764
  #
2483
2765
  # @!attribute [rw] yes_vote_count
@@ -2512,7 +2794,7 @@ module Aws::ManagedBlockchain
2512
2794
  # @!attribute [rw] arn
2513
2795
  # The Amazon Resource Name (ARN) of the proposal. For more information
2514
2796
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
2515
- # in the *AWS General Reference*.
2797
+ # in the *Amazon Web Services General Reference*.
2516
2798
  #
2517
2799
  #
2518
2800
  #
@@ -2561,8 +2843,8 @@ module Aws::ManagedBlockchain
2561
2843
  # }
2562
2844
  #
2563
2845
  # @!attribute [rw] invitations
2564
- # The actions to perform for an `APPROVED` proposal to invite an AWS
2565
- # account to create a member and join the network.
2846
+ # The actions to perform for an `APPROVED` proposal to invite an
2847
+ # Amazon Web Services account to create a member and join the network.
2566
2848
  # @return [Array<Types::InviteAction>]
2567
2849
  #
2568
2850
  # @!attribute [rw] removals
@@ -2611,15 +2893,15 @@ module Aws::ManagedBlockchain
2611
2893
  #
2612
2894
  # * `REJECTED` - The proposal was rejected with insufficient `YES`
2613
2895
  # votes among members according to the `VotingPolicy` specified for
2614
- # the `Network`. The specified `ProposalActions` are not carried
2896
+ # the `Network`. The specified `ProposalActions` aren't carried
2615
2897
  # out.
2616
2898
  #
2617
- # * `EXPIRED` - Members did not cast the number of votes required to
2899
+ # * `EXPIRED` - Members didn't cast the number of votes required to
2618
2900
  # determine the proposal outcome before the proposal expired. The
2619
- # specified `ProposalActions` are not carried out.
2901
+ # specified `ProposalActions` aren't carried out.
2620
2902
  #
2621
2903
  # * `ACTION_FAILED` - One or more of the specified `ProposalActions`
2622
- # in a proposal that was approved could not be completed because of
2904
+ # in a proposal that was approved couldn't be completed because of
2623
2905
  # an error.
2624
2906
  # @return [String]
2625
2907
  #
@@ -2631,15 +2913,15 @@ module Aws::ManagedBlockchain
2631
2913
  # The date and time that the proposal expires. This is the
2632
2914
  # `CreationDate` plus the `ProposalDurationInHours` that is specified
2633
2915
  # in the `ProposalThresholdPolicy`. After this date and time, if
2634
- # members have not cast enough votes to determine the outcome
2916
+ # members haven't cast enough votes to determine the outcome
2635
2917
  # according to the voting policy, the proposal is `EXPIRED` and
2636
- # `Actions` are not carried out.
2918
+ # `Actions` aren't carried out.
2637
2919
  # @return [Time]
2638
2920
  #
2639
2921
  # @!attribute [rw] arn
2640
2922
  # The Amazon Resource Name (ARN) of the proposal. For more information
2641
2923
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
2642
- # in the *AWS General Reference*.
2924
+ # in the *Amazon Web Services General Reference*.
2643
2925
  #
2644
2926
  #
2645
2927
  #
@@ -2737,14 +3019,14 @@ module Aws::ManagedBlockchain
2737
3019
  include Aws::Structure
2738
3020
  end
2739
3021
 
2740
- # A requested resource does not exist. It may have been deleted or
2741
- # referenced inaccurately.
3022
+ # A requested resource doesn't exist. It may have been deleted or
3023
+ # referenced incorrectly.
2742
3024
  #
2743
3025
  # @!attribute [rw] message
2744
3026
  # @return [String]
2745
3027
  #
2746
3028
  # @!attribute [rw] resource_name
2747
- # A requested resource does not exist. It may have been deleted or
3029
+ # A requested resource doesn't exist. It may have been deleted or
2748
3030
  # referenced inaccurately.
2749
3031
  # @return [String]
2750
3032
  #
@@ -2757,7 +3039,7 @@ module Aws::ManagedBlockchain
2757
3039
  include Aws::Structure
2758
3040
  end
2759
3041
 
2760
- # The requested resource exists but is not in a status that can complete
3042
+ # The requested resource exists but isn't in a status that can complete
2761
3043
  # the operation.
2762
3044
  #
2763
3045
  # @!attribute [rw] message
@@ -2784,7 +3066,7 @@ module Aws::ManagedBlockchain
2784
3066
  # @!attribute [rw] resource_arn
2785
3067
  # The Amazon Resource Name (ARN) of the resource. For more information
2786
3068
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
2787
- # in the *AWS General Reference*.
3069
+ # in the *Amazon Web Services General Reference*.
2788
3070
  #
2789
3071
  #
2790
3072
  #
@@ -2811,11 +3093,10 @@ module Aws::ManagedBlockchain
2811
3093
  #
2812
3094
  class TagResourceResponse < Aws::EmptyStructure; end
2813
3095
 
2814
- # The request or operation could not be performed because a service is
3096
+ # The request or operation couldn't be performed because a service is
2815
3097
  # throttling requests. The most common source of throttling errors is
2816
- # launching EC2 instances such that your service limit for EC2 instances
2817
- # is exceeded. Request a limit increase or delete unused resources if
2818
- # possible.
3098
+ # creating resources that exceed your service limit for this resource
3099
+ # type. Request a limit increase or delete unused resources if possible.
2819
3100
  #
2820
3101
  # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ThrottlingException AWS API Documentation
2821
3102
  #
@@ -2847,7 +3128,7 @@ module Aws::ManagedBlockchain
2847
3128
  # @!attribute [rw] resource_arn
2848
3129
  # The Amazon Resource Name (ARN) of the resource. For more information
2849
3130
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
2850
- # in the *AWS General Reference*.
3131
+ # in the *Amazon Web Services General Reference*.
2851
3132
  #
2852
3133
  #
2853
3134
  #