@aws-sdk/client-managedblockchain 3.190.0 → 3.192.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.
- package/CHANGELOG.md +11 -0
- package/README.md +8 -8
- package/dist-cjs/ManagedBlockchain.js +60 -0
- package/dist-cjs/ManagedBlockchainClient.js +11 -8
- package/dist-cjs/commands/CreateAccessorCommand.js +46 -0
- package/dist-cjs/commands/CreateMemberCommand.js +10 -0
- package/dist-cjs/commands/CreateNetworkCommand.js +10 -0
- package/dist-cjs/commands/CreateNodeCommand.js +10 -0
- package/dist-cjs/commands/CreateProposalCommand.js +10 -0
- package/dist-cjs/commands/DeleteAccessorCommand.js +46 -0
- package/dist-cjs/commands/DeleteMemberCommand.js +10 -0
- package/dist-cjs/commands/DeleteNodeCommand.js +10 -0
- package/dist-cjs/commands/GetAccessorCommand.js +46 -0
- package/dist-cjs/commands/GetMemberCommand.js +10 -0
- package/dist-cjs/commands/GetNetworkCommand.js +10 -0
- package/dist-cjs/commands/GetNodeCommand.js +10 -0
- package/dist-cjs/commands/GetProposalCommand.js +10 -0
- package/dist-cjs/commands/ListAccessorsCommand.js +46 -0
- package/dist-cjs/commands/ListInvitationsCommand.js +10 -0
- package/dist-cjs/commands/ListMembersCommand.js +10 -0
- package/dist-cjs/commands/ListNetworksCommand.js +10 -0
- package/dist-cjs/commands/ListNodesCommand.js +10 -0
- package/dist-cjs/commands/ListProposalVotesCommand.js +10 -0
- package/dist-cjs/commands/ListProposalsCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/RejectInvitationCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/UpdateMemberCommand.js +10 -0
- package/dist-cjs/commands/UpdateNodeCommand.js +10 -0
- package/dist-cjs/commands/VoteOnProposalCommand.js +10 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +318 -0
- package/dist-cjs/models/models_0.js +66 -16
- package/dist-cjs/pagination/ListAccessorsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +297 -1
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/ManagedBlockchain.js +60 -0
- package/dist-es/ManagedBlockchainClient.js +12 -9
- package/dist-es/commands/CreateAccessorCommand.js +42 -0
- package/dist-es/commands/CreateMemberCommand.js +10 -0
- package/dist-es/commands/CreateNetworkCommand.js +10 -0
- package/dist-es/commands/CreateNodeCommand.js +10 -0
- package/dist-es/commands/CreateProposalCommand.js +10 -0
- package/dist-es/commands/DeleteAccessorCommand.js +42 -0
- package/dist-es/commands/DeleteMemberCommand.js +10 -0
- package/dist-es/commands/DeleteNodeCommand.js +10 -0
- package/dist-es/commands/GetAccessorCommand.js +42 -0
- package/dist-es/commands/GetMemberCommand.js +10 -0
- package/dist-es/commands/GetNetworkCommand.js +10 -0
- package/dist-es/commands/GetNodeCommand.js +10 -0
- package/dist-es/commands/GetProposalCommand.js +10 -0
- package/dist-es/commands/ListAccessorsCommand.js +42 -0
- package/dist-es/commands/ListInvitationsCommand.js +10 -0
- package/dist-es/commands/ListMembersCommand.js +10 -0
- package/dist-es/commands/ListNetworksCommand.js +10 -0
- package/dist-es/commands/ListNodesCommand.js +10 -0
- package/dist-es/commands/ListProposalVotesCommand.js +10 -0
- package/dist-es/commands/ListProposalsCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/RejectInvitationCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/UpdateMemberCommand.js +10 -0
- package/dist-es/commands/UpdateNodeCommand.js +10 -0
- package/dist-es/commands/VoteOnProposalCommand.js +10 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +315 -0
- package/dist-es/models/models_0.js +52 -12
- package/dist-es/pagination/ListAccessorsPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +286 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/ManagedBlockchain.d.ts +64 -7
- package/dist-types/ManagedBlockchainClient.d.ts +13 -12
- package/dist-types/commands/CreateAccessorCommand.d.ts +43 -0
- package/dist-types/commands/CreateMemberCommand.d.ts +2 -0
- package/dist-types/commands/CreateNetworkCommand.d.ts +2 -0
- package/dist-types/commands/CreateNodeCommand.d.ts +2 -0
- package/dist-types/commands/CreateProposalCommand.d.ts +2 -0
- package/dist-types/commands/DeleteAccessorCommand.d.ts +48 -0
- package/dist-types/commands/DeleteMemberCommand.d.ts +3 -1
- package/dist-types/commands/DeleteNodeCommand.d.ts +3 -1
- package/dist-types/commands/GetAccessorCommand.d.ts +43 -0
- package/dist-types/commands/GetMemberCommand.d.ts +2 -0
- package/dist-types/commands/GetNetworkCommand.d.ts +2 -0
- package/dist-types/commands/GetNodeCommand.d.ts +2 -0
- package/dist-types/commands/GetProposalCommand.d.ts +2 -0
- package/dist-types/commands/ListAccessorsCommand.d.ts +43 -0
- package/dist-types/commands/ListInvitationsCommand.d.ts +3 -1
- package/dist-types/commands/ListMembersCommand.d.ts +2 -0
- package/dist-types/commands/ListNetworksCommand.d.ts +3 -1
- package/dist-types/commands/ListNodesCommand.d.ts +2 -0
- package/dist-types/commands/ListProposalVotesCommand.d.ts +2 -0
- package/dist-types/commands/ListProposalsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/RejectInvitationCommand.d.ts +3 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateMemberCommand.d.ts +2 -0
- package/dist-types/commands/UpdateNodeCommand.d.ts +2 -0
- package/dist-types/commands/VoteOnProposalCommand.d.ts +3 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +325 -119
- package/dist-types/pagination/ListAccessorsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/ManagedBlockchain.d.ts +68 -0
- package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +39 -8
- package/dist-types/ts3.4/commands/CreateAccessorCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/CreateMemberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateNodeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateProposalCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteAccessorCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteNodeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetAccessorCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetNodeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetProposalCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListAccessorsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListProposalVotesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListProposalsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateMemberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateNodeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/VoteOnProposalCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +115 -38
- package/dist-types/ts3.4/pagination/ListAccessorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +4 -3
- package/dist-cjs/endpoints.js +0 -132
- package/dist-es/endpoints.js +0 -128
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* <p>You
|
|
4
|
+
* <p>You don't have sufficient access to perform this action.</p>
|
|
5
5
|
*/
|
|
6
6
|
export declare class AccessDeniedException extends __BaseException {
|
|
7
7
|
readonly name: "AccessDeniedException";
|
|
@@ -12,6 +12,90 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
12
|
*/
|
|
13
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
14
|
}
|
|
15
|
+
export declare enum AccessorStatus {
|
|
16
|
+
AVAILABLE = "AVAILABLE",
|
|
17
|
+
DELETED = "DELETED",
|
|
18
|
+
PENDING_DELETION = "PENDING_DELETION"
|
|
19
|
+
}
|
|
20
|
+
export declare enum AccessorType {
|
|
21
|
+
BILLING_TOKEN = "BILLING_TOKEN"
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* <important>
|
|
25
|
+
* <p>The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is
|
|
26
|
+
* subject to change. We recommend that you use this feature only with
|
|
27
|
+
* test scenarios, and not in production environments.</p>
|
|
28
|
+
* </important>
|
|
29
|
+
* <p>The properties of the Accessor.</p>
|
|
30
|
+
*/
|
|
31
|
+
export interface Accessor {
|
|
32
|
+
/**
|
|
33
|
+
* <p>The unique identifier of the accessor.</p>
|
|
34
|
+
*/
|
|
35
|
+
Id?: string;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The type of the accessor.</p>
|
|
38
|
+
* <note>
|
|
39
|
+
* <p>Currently accessor type is restricted to <code>BILLING_TOKEN</code>.</p>
|
|
40
|
+
* </note>
|
|
41
|
+
*/
|
|
42
|
+
Type?: AccessorType | string;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The billing token is a property of the accessor. Use this token to make Ethereum API calls to your
|
|
45
|
+
* Ethereum node. The billing token is used to track your accessor object for billing Ethereum API
|
|
46
|
+
* requests made to your Ethereum nodes.</p>
|
|
47
|
+
*/
|
|
48
|
+
BillingToken?: string;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The current status of the accessor.</p>
|
|
51
|
+
*/
|
|
52
|
+
Status?: AccessorStatus | string;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The creation date and time of the accessor.</p>
|
|
55
|
+
*/
|
|
56
|
+
CreationDate?: Date;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The Amazon Resource Name (ARN) of the accessor. For more information about
|
|
59
|
+
* ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
60
|
+
* Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
|
|
61
|
+
*/
|
|
62
|
+
Arn?: string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <important>
|
|
66
|
+
* <p>The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is
|
|
67
|
+
* subject to change. We recommend that you use this feature only with
|
|
68
|
+
* test scenarios, and not in production environments.</p>
|
|
69
|
+
* </important>
|
|
70
|
+
* <p>A summary of accessor properties.</p>
|
|
71
|
+
*/
|
|
72
|
+
export interface AccessorSummary {
|
|
73
|
+
/**
|
|
74
|
+
* <p>The unique identifier of the accessor.</p>
|
|
75
|
+
*/
|
|
76
|
+
Id?: string;
|
|
77
|
+
/**
|
|
78
|
+
* <p>The type of the accessor.</p>
|
|
79
|
+
* <note>
|
|
80
|
+
* <p>Currently accessor type is restricted to <code>BILLING_TOKEN</code>.</p>
|
|
81
|
+
* </note>
|
|
82
|
+
*/
|
|
83
|
+
Type?: AccessorType | string;
|
|
84
|
+
/**
|
|
85
|
+
* <p>The current status of the accessor.</p>
|
|
86
|
+
*/
|
|
87
|
+
Status?: AccessorStatus | string;
|
|
88
|
+
/**
|
|
89
|
+
* <p>The creation date and time of the accessor.</p>
|
|
90
|
+
*/
|
|
91
|
+
CreationDate?: Date;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The Amazon Resource Name (ARN) of the accessor. For more information about
|
|
94
|
+
* ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
95
|
+
* Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
|
|
96
|
+
*/
|
|
97
|
+
Arn?: string;
|
|
98
|
+
}
|
|
15
99
|
export declare enum ThresholdComparator {
|
|
16
100
|
GREATER_THAN = "GREATER_THAN",
|
|
17
101
|
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO"
|
|
@@ -26,7 +110,7 @@ export interface ApprovalThresholdPolicy {
|
|
|
26
110
|
*/
|
|
27
111
|
ThresholdPercentage?: number;
|
|
28
112
|
/**
|
|
29
|
-
* <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>
|
|
113
|
+
* <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>
|
|
30
114
|
*/
|
|
31
115
|
ProposalDurationInHours?: number;
|
|
32
116
|
/**
|
|
@@ -34,6 +118,97 @@ export interface ApprovalThresholdPolicy {
|
|
|
34
118
|
*/
|
|
35
119
|
ThresholdComparator?: ThresholdComparator | string;
|
|
36
120
|
}
|
|
121
|
+
export interface CreateAccessorInput {
|
|
122
|
+
/**
|
|
123
|
+
* <p>This is a unique, case-sensitive identifier that you provide to ensure the idempotency of
|
|
124
|
+
* the operation. An idempotent operation completes no more than once. This
|
|
125
|
+
* identifier is required only if you make a service request directly using
|
|
126
|
+
* an HTTP client. It is generated automatically if you use an Amazon Web Services SDK or the
|
|
127
|
+
* Amazon Web Services CLI.</p>
|
|
128
|
+
*/
|
|
129
|
+
ClientRequestToken?: string;
|
|
130
|
+
/**
|
|
131
|
+
* <p>The type of accessor.</p>
|
|
132
|
+
* <note>
|
|
133
|
+
* <p>Currently accessor type is restricted to <code>BILLING_TOKEN</code>.</p>
|
|
134
|
+
* </note>
|
|
135
|
+
*/
|
|
136
|
+
AccessorType: AccessorType | string | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface CreateAccessorOutput {
|
|
139
|
+
/**
|
|
140
|
+
* <p>The unique identifier of the accessor.</p>
|
|
141
|
+
*/
|
|
142
|
+
AccessorId?: string;
|
|
143
|
+
/**
|
|
144
|
+
* <p>The billing token is a property of the Accessor. Use this token to make Ethereum API calls to
|
|
145
|
+
* your Ethereum node. The billing token is used to track your accessor object for billing Ethereum
|
|
146
|
+
* API requests made to your Ethereum nodes.</p>
|
|
147
|
+
*/
|
|
148
|
+
BillingToken?: string;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
152
|
+
*/
|
|
153
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
154
|
+
readonly name: "InternalServiceErrorException";
|
|
155
|
+
readonly $fault: "server";
|
|
156
|
+
/**
|
|
157
|
+
* @internal
|
|
158
|
+
*/
|
|
159
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
|
|
163
|
+
*/
|
|
164
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
165
|
+
readonly name: "InvalidRequestException";
|
|
166
|
+
readonly $fault: "client";
|
|
167
|
+
Message?: string;
|
|
168
|
+
/**
|
|
169
|
+
* @internal
|
|
170
|
+
*/
|
|
171
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* <p>A resource request is issued for a resource that already exists.</p>
|
|
175
|
+
*/
|
|
176
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
177
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
178
|
+
readonly $fault: "client";
|
|
179
|
+
Message?: string;
|
|
180
|
+
/**
|
|
181
|
+
* @internal
|
|
182
|
+
*/
|
|
183
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* <p>The maximum number of resources of that type already exist. Ensure the resources requested
|
|
187
|
+
* are within the boundaries of the service edition and your account limits.</p>
|
|
188
|
+
*/
|
|
189
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
190
|
+
readonly name: "ResourceLimitExceededException";
|
|
191
|
+
readonly $fault: "client";
|
|
192
|
+
Message?: string;
|
|
193
|
+
/**
|
|
194
|
+
* @internal
|
|
195
|
+
*/
|
|
196
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* <p>The request or operation couldn't be performed because a service is
|
|
200
|
+
* throttling requests. The most common source of throttling errors is
|
|
201
|
+
* creating resources that exceed your service limit for this resource type.
|
|
202
|
+
* Request a limit increase or delete unused resources if possible.</p>
|
|
203
|
+
*/
|
|
204
|
+
export declare class ThrottlingException extends __BaseException {
|
|
205
|
+
readonly name: "ThrottlingException";
|
|
206
|
+
readonly $fault: "client";
|
|
207
|
+
/**
|
|
208
|
+
* @internal
|
|
209
|
+
*/
|
|
210
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
211
|
+
}
|
|
37
212
|
/**
|
|
38
213
|
* <p>Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network using the Hyperledger Fabric framework.</p>
|
|
39
214
|
*/
|
|
@@ -119,17 +294,17 @@ export interface MemberConfiguration {
|
|
|
119
294
|
*/
|
|
120
295
|
Tags?: Record<string, string>;
|
|
121
296
|
/**
|
|
122
|
-
* <p>The Amazon Resource Name (ARN) of the customer managed key in
|
|
297
|
+
* <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>
|
|
123
298
|
* <p>Use one of the following options to specify this parameter:</p>
|
|
124
299
|
* <ul>
|
|
125
300
|
* <li>
|
|
126
301
|
* <p>
|
|
127
|
-
* <b>Undefined or empty string</b> -
|
|
302
|
+
* <b>Undefined or empty string</b> - By default, use an KMS key that is owned and managed by Amazon Web Services on your behalf.</p>
|
|
128
303
|
* </li>
|
|
129
304
|
* <li>
|
|
130
305
|
* <p>
|
|
131
|
-
* <b>A valid symmetric customer managed KMS key</b> -
|
|
132
|
-
* <p>Amazon Managed Blockchain doesn't support asymmetric keys. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html">Using symmetric and asymmetric keys</a> in the <i>
|
|
306
|
+
* <b>A valid symmetric customer managed KMS key</b> - Use the specified KMS key in your account that you create, own, and manage.</p>
|
|
307
|
+
* <p>Amazon Managed Blockchain doesn't support asymmetric keys. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html">Using symmetric and asymmetric keys</a> in the <i>Key Management Service Developer Guide</i>.</p>
|
|
133
308
|
* <p>The following is an example of a KMS key ARN: <code>arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|
134
309
|
* </p>
|
|
135
310
|
* </li>
|
|
@@ -139,7 +314,7 @@ export interface MemberConfiguration {
|
|
|
139
314
|
}
|
|
140
315
|
export interface CreateMemberInput {
|
|
141
316
|
/**
|
|
142
|
-
* <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
|
|
317
|
+
* <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>
|
|
143
318
|
*/
|
|
144
319
|
ClientRequestToken?: string;
|
|
145
320
|
/**
|
|
@@ -162,61 +337,14 @@ export interface CreateMemberOutput {
|
|
|
162
337
|
MemberId?: string;
|
|
163
338
|
}
|
|
164
339
|
/**
|
|
165
|
-
* <p>
|
|
166
|
-
*/
|
|
167
|
-
export declare class InternalServiceErrorException extends __BaseException {
|
|
168
|
-
readonly name: "InternalServiceErrorException";
|
|
169
|
-
readonly $fault: "server";
|
|
170
|
-
/**
|
|
171
|
-
* @internal
|
|
172
|
-
*/
|
|
173
|
-
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
174
|
-
}
|
|
175
|
-
/**
|
|
176
|
-
* <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
|
|
177
|
-
*/
|
|
178
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
179
|
-
readonly name: "InvalidRequestException";
|
|
180
|
-
readonly $fault: "client";
|
|
181
|
-
Message?: string;
|
|
182
|
-
/**
|
|
183
|
-
* @internal
|
|
184
|
-
*/
|
|
185
|
-
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
186
|
-
}
|
|
187
|
-
/**
|
|
188
|
-
* <p>A resource request is issued for a resource that already exists.</p>
|
|
189
|
-
*/
|
|
190
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
191
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
192
|
-
readonly $fault: "client";
|
|
193
|
-
Message?: string;
|
|
194
|
-
/**
|
|
195
|
-
* @internal
|
|
196
|
-
*/
|
|
197
|
-
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
198
|
-
}
|
|
199
|
-
/**
|
|
200
|
-
* <p>The maximum number of resources of that type already exist. Ensure the resources requested are within the boundaries of the service edition and your account limits.</p>
|
|
201
|
-
*/
|
|
202
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
203
|
-
readonly name: "ResourceLimitExceededException";
|
|
204
|
-
readonly $fault: "client";
|
|
205
|
-
Message?: string;
|
|
206
|
-
/**
|
|
207
|
-
* @internal
|
|
208
|
-
*/
|
|
209
|
-
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
210
|
-
}
|
|
211
|
-
/**
|
|
212
|
-
* <p>A requested resource does not exist. It may have been deleted or referenced inaccurately.</p>
|
|
340
|
+
* <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
|
|
213
341
|
*/
|
|
214
342
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
215
343
|
readonly name: "ResourceNotFoundException";
|
|
216
344
|
readonly $fault: "client";
|
|
217
345
|
Message?: string;
|
|
218
346
|
/**
|
|
219
|
-
* <p>A requested resource
|
|
347
|
+
* <p>A requested resource doesn't exist. It may have been deleted or referenced inaccurately.</p>
|
|
220
348
|
*/
|
|
221
349
|
ResourceName?: string;
|
|
222
350
|
/**
|
|
@@ -225,7 +353,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
225
353
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
226
354
|
}
|
|
227
355
|
/**
|
|
228
|
-
* <p>The requested resource exists but
|
|
356
|
+
* <p>The requested resource exists but isn't in a status that can complete the operation.</p>
|
|
229
357
|
*/
|
|
230
358
|
export declare class ResourceNotReadyException extends __BaseException {
|
|
231
359
|
readonly name: "ResourceNotReadyException";
|
|
@@ -236,17 +364,6 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
236
364
|
*/
|
|
237
365
|
constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
|
|
238
366
|
}
|
|
239
|
-
/**
|
|
240
|
-
* <p>The request or operation could not be performed because a service is throttling requests. The most common source of throttling errors is launching EC2 instances such that your service limit for EC2 instances is exceeded. Request a limit increase or delete unused resources if possible.</p>
|
|
241
|
-
*/
|
|
242
|
-
export declare class ThrottlingException extends __BaseException {
|
|
243
|
-
readonly name: "ThrottlingException";
|
|
244
|
-
readonly $fault: "client";
|
|
245
|
-
/**
|
|
246
|
-
* @internal
|
|
247
|
-
*/
|
|
248
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
249
|
-
}
|
|
250
367
|
/**
|
|
251
368
|
* <p></p>
|
|
252
369
|
*/
|
|
@@ -307,7 +424,11 @@ export interface VotingPolicy {
|
|
|
307
424
|
}
|
|
308
425
|
export interface CreateNetworkInput {
|
|
309
426
|
/**
|
|
310
|
-
* <p>
|
|
427
|
+
* <p>This is a unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
428
|
+
* operation. An idempotent operation completes no more than once. This identifier is required only
|
|
429
|
+
* if you make a service request directly using an HTTP client. It is generated automatically if you
|
|
430
|
+
* use an Amazon Web Services SDK or the Amazon Web Services CLI.
|
|
431
|
+
* </p>
|
|
311
432
|
*/
|
|
312
433
|
ClientRequestToken?: string;
|
|
313
434
|
/**
|
|
@@ -410,7 +531,7 @@ export interface NodeConfiguration {
|
|
|
410
531
|
}
|
|
411
532
|
export interface CreateNodeInput {
|
|
412
533
|
/**
|
|
413
|
-
* <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
|
|
534
|
+
* <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>
|
|
414
535
|
*/
|
|
415
536
|
ClientRequestToken?: string;
|
|
416
537
|
/**
|
|
@@ -458,12 +579,12 @@ export interface CreateNodeOutput {
|
|
|
458
579
|
NodeId?: string;
|
|
459
580
|
}
|
|
460
581
|
/**
|
|
461
|
-
* <p>An action to invite a specific
|
|
582
|
+
* <p>An action to invite a specific Amazon Web Services account to create a member and join the network. The <code>InviteAction</code> is carried out when a <code>Proposal</code> is <code>APPROVED</code>.</p>
|
|
462
583
|
* <p>Applies only to Hyperledger Fabric.</p>
|
|
463
584
|
*/
|
|
464
585
|
export interface InviteAction {
|
|
465
586
|
/**
|
|
466
|
-
* <p>The
|
|
587
|
+
* <p>The Amazon Web Services account ID to invite.</p>
|
|
467
588
|
*/
|
|
468
589
|
Principal: string | undefined;
|
|
469
590
|
}
|
|
@@ -486,7 +607,7 @@ export interface RemoveAction {
|
|
|
486
607
|
export interface ProposalActions {
|
|
487
608
|
/**
|
|
488
609
|
* <p>
|
|
489
|
-
* The actions to perform for an <code>APPROVED</code> proposal to invite an
|
|
610
|
+
* 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.
|
|
490
611
|
* </p>
|
|
491
612
|
*/
|
|
492
613
|
Invitations?: InviteAction[];
|
|
@@ -499,7 +620,7 @@ export interface ProposalActions {
|
|
|
499
620
|
}
|
|
500
621
|
export interface CreateProposalInput {
|
|
501
622
|
/**
|
|
502
|
-
* <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
|
|
623
|
+
* <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>
|
|
503
624
|
*/
|
|
504
625
|
ClientRequestToken?: string;
|
|
505
626
|
/**
|
|
@@ -508,7 +629,9 @@ export interface CreateProposalInput {
|
|
|
508
629
|
*/
|
|
509
630
|
NetworkId: string | undefined;
|
|
510
631
|
/**
|
|
511
|
-
* <p>The unique identifier of the member that is creating the proposal. This
|
|
632
|
+
* <p>The unique identifier of the member that is creating the proposal. This
|
|
633
|
+
* identifier is especially useful for identifying the member making the proposal
|
|
634
|
+
* when multiple members exist in a single Amazon Web Services account.</p>
|
|
512
635
|
*/
|
|
513
636
|
MemberId: string | undefined;
|
|
514
637
|
/**
|
|
@@ -532,6 +655,14 @@ export interface CreateProposalOutput {
|
|
|
532
655
|
*/
|
|
533
656
|
ProposalId?: string;
|
|
534
657
|
}
|
|
658
|
+
export interface DeleteAccessorInput {
|
|
659
|
+
/**
|
|
660
|
+
* <p>The unique identifier of the accessor.</p>
|
|
661
|
+
*/
|
|
662
|
+
AccessorId: string | undefined;
|
|
663
|
+
}
|
|
664
|
+
export interface DeleteAccessorOutput {
|
|
665
|
+
}
|
|
535
666
|
export interface DeleteMemberInput {
|
|
536
667
|
/**
|
|
537
668
|
* <p>The unique identifier of the network from which the member is removed.</p>
|
|
@@ -579,6 +710,18 @@ export interface DeleteNodeInput {
|
|
|
579
710
|
}
|
|
580
711
|
export interface DeleteNodeOutput {
|
|
581
712
|
}
|
|
713
|
+
export interface GetAccessorInput {
|
|
714
|
+
/**
|
|
715
|
+
* <p>The unique identifier of the accessor.</p>
|
|
716
|
+
*/
|
|
717
|
+
AccessorId: string | undefined;
|
|
718
|
+
}
|
|
719
|
+
export interface GetAccessorOutput {
|
|
720
|
+
/**
|
|
721
|
+
* <p>The properties of the accessor.</p>
|
|
722
|
+
*/
|
|
723
|
+
Accessor?: Accessor;
|
|
724
|
+
}
|
|
582
725
|
export interface GetMemberInput {
|
|
583
726
|
/**
|
|
584
727
|
* <p>The unique identifier of the network to which the member belongs.</p>
|
|
@@ -654,7 +797,7 @@ export interface Member {
|
|
|
654
797
|
* <ul>
|
|
655
798
|
* <li>
|
|
656
799
|
* <p>
|
|
657
|
-
* <code>CREATING</code> - The
|
|
800
|
+
* <code>CREATING</code> - The Amazon Web Services account is in the process of creating a member.</p>
|
|
658
801
|
* </li>
|
|
659
802
|
* <li>
|
|
660
803
|
* <p>
|
|
@@ -662,7 +805,7 @@ export interface Member {
|
|
|
662
805
|
* </li>
|
|
663
806
|
* <li>
|
|
664
807
|
* <p>
|
|
665
|
-
* <code>CREATE_FAILED</code> - The
|
|
808
|
+
* <code>CREATE_FAILED</code> - The Amazon Web Services account attempted to create a member and creation failed.</p>
|
|
666
809
|
* </li>
|
|
667
810
|
* <li>
|
|
668
811
|
* <p>
|
|
@@ -670,18 +813,18 @@ export interface Member {
|
|
|
670
813
|
* </li>
|
|
671
814
|
* <li>
|
|
672
815
|
* <p>
|
|
673
|
-
* <code>DELETING</code> - The member and all associated resources are in the process of being deleted. Either the
|
|
816
|
+
* <code>DELETING</code> - The member and all associated resources are in the process of being deleted. Either the Amazon Web Services account that owns the member deleted it, or the member is being deleted as the result of an <code>APPROVED</code>
|
|
674
817
|
* <code>PROPOSAL</code> to remove the member.</p>
|
|
675
818
|
* </li>
|
|
676
819
|
* <li>
|
|
677
820
|
* <p>
|
|
678
|
-
* <code>DELETED</code> - The member can no longer participate on the network and all associated resources are deleted. Either the
|
|
821
|
+
* <code>DELETED</code> - The member can no longer participate on the network and all associated resources are deleted. Either the Amazon Web Services account that owns the member deleted it, or the member is being deleted as the result of an <code>APPROVED</code>
|
|
679
822
|
* <code>PROPOSAL</code> to remove the member.</p>
|
|
680
823
|
* </li>
|
|
681
824
|
* <li>
|
|
682
825
|
* <p>
|
|
683
|
-
* <code>INACCESSIBLE_ENCRYPTION_KEY</code> - The member is impaired and might not function as expected because it cannot access the specified customer managed key in
|
|
684
|
-
* <p>The effect of disabling or deleting a key
|
|
826
|
+
* <code>INACCESSIBLE_ENCRYPTION_KEY</code> - The member is impaired and might not function as expected because it cannot access the specified customer managed key in KMS for encryption at rest. Either the KMS key was disabled or deleted, or the grants on the key were revoked.</p>
|
|
827
|
+
* <p>The effect of disabling or deleting a key or of revoking a grant isn't immediate. It might take some time for the member resource to discover that the key is inaccessible. When a resource is in this state, we recommend deleting and recreating the resource.</p>
|
|
685
828
|
* </li>
|
|
686
829
|
* </ul>
|
|
687
830
|
*/
|
|
@@ -695,11 +838,12 @@ export interface Member {
|
|
|
695
838
|
*/
|
|
696
839
|
Tags?: Record<string, string>;
|
|
697
840
|
/**
|
|
698
|
-
* <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>
|
|
841
|
+
* <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>
|
|
699
842
|
*/
|
|
700
843
|
Arn?: string;
|
|
701
844
|
/**
|
|
702
|
-
* <p>The Amazon Resource Name (ARN) of the customer managed key in
|
|
845
|
+
* <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>
|
|
846
|
+
* <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>
|
|
703
847
|
*/
|
|
704
848
|
KmsKeyArn?: string;
|
|
705
849
|
}
|
|
@@ -821,7 +965,7 @@ export interface Network {
|
|
|
821
965
|
*/
|
|
822
966
|
Tags?: Record<string, string>;
|
|
823
967
|
/**
|
|
824
|
-
* <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>
|
|
968
|
+
* <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>
|
|
825
969
|
*/
|
|
826
970
|
Arn?: string;
|
|
827
971
|
}
|
|
@@ -851,7 +995,7 @@ export interface GetNodeInput {
|
|
|
851
995
|
*/
|
|
852
996
|
export interface NodeEthereumAttributes {
|
|
853
997
|
/**
|
|
854
|
-
* <p>The endpoint on which the Ethereum node listens to run Ethereum
|
|
998
|
+
* <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>
|
|
855
999
|
*/
|
|
856
1000
|
HttpEndpoint?: string;
|
|
857
1001
|
/**
|
|
@@ -939,7 +1083,7 @@ export interface Node {
|
|
|
939
1083
|
* <ul>
|
|
940
1084
|
* <li>
|
|
941
1085
|
* <p>
|
|
942
|
-
* <code>CREATING</code> - The
|
|
1086
|
+
* <code>CREATING</code> - The Amazon Web Services account is in the process of creating a node.</p>
|
|
943
1087
|
* </li>
|
|
944
1088
|
* <li>
|
|
945
1089
|
* <p>
|
|
@@ -951,7 +1095,7 @@ export interface Node {
|
|
|
951
1095
|
* </li>
|
|
952
1096
|
* <li>
|
|
953
1097
|
* <p>
|
|
954
|
-
* <code>CREATE_FAILED</code> - The
|
|
1098
|
+
* <code>CREATE_FAILED</code> - The Amazon Web Services account attempted to create a node and creation failed.</p>
|
|
955
1099
|
* </li>
|
|
956
1100
|
* <li>
|
|
957
1101
|
* <p>
|
|
@@ -971,8 +1115,8 @@ export interface Node {
|
|
|
971
1115
|
* </li>
|
|
972
1116
|
* <li>
|
|
973
1117
|
* <p>
|
|
974
|
-
* <code>INACCESSIBLE_ENCRYPTION_KEY</code> - The node is impaired and might not function as expected because it cannot access the specified customer managed key in
|
|
975
|
-
* <p>The effect of disabling or deleting a key
|
|
1118
|
+
* <code>INACCESSIBLE_ENCRYPTION_KEY</code> - The node is impaired and might not function as expected because it cannot access the specified customer managed key in KMS for encryption at rest. Either the KMS key was disabled or deleted, or the grants on the key were revoked.</p>
|
|
1119
|
+
* <p>The effect of disabling or deleting a key or of revoking a grant isn't immediate. It might take some time for the node resource to discover that the key is inaccessible. When a resource is in this state, we recommend deleting and recreating the resource.</p>
|
|
976
1120
|
* </li>
|
|
977
1121
|
* </ul>
|
|
978
1122
|
*/
|
|
@@ -987,11 +1131,12 @@ export interface Node {
|
|
|
987
1131
|
*/
|
|
988
1132
|
Tags?: Record<string, string>;
|
|
989
1133
|
/**
|
|
990
|
-
* <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>
|
|
1134
|
+
* <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>
|
|
991
1135
|
*/
|
|
992
1136
|
Arn?: string;
|
|
993
1137
|
/**
|
|
994
|
-
* <p>The Amazon Resource Name (ARN) of the customer managed key in
|
|
1138
|
+
* <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>
|
|
1139
|
+
* <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>
|
|
995
1140
|
* <p>Applies only to Hyperledger Fabric.</p>
|
|
996
1141
|
*/
|
|
997
1142
|
KmsKeyArn?: string;
|
|
@@ -1061,15 +1206,15 @@ export interface Proposal {
|
|
|
1061
1206
|
* </li>
|
|
1062
1207
|
* <li>
|
|
1063
1208
|
* <p>
|
|
1064
|
-
* <code>REJECTED</code> - The proposal was rejected with insufficient <code>YES</code> votes among members according to the <code>VotingPolicy</code> specified for the <code>Network</code>. The specified <code>ProposalActions</code>
|
|
1209
|
+
* <code>REJECTED</code> - The proposal was rejected with insufficient <code>YES</code> votes among members according to the <code>VotingPolicy</code> specified for the <code>Network</code>. The specified <code>ProposalActions</code> aren't carried out.</p>
|
|
1065
1210
|
* </li>
|
|
1066
1211
|
* <li>
|
|
1067
1212
|
* <p>
|
|
1068
|
-
* <code>EXPIRED</code> - Members
|
|
1213
|
+
* <code>EXPIRED</code> - Members didn't cast the number of votes required to determine the proposal outcome before the proposal expired. The specified <code>ProposalActions</code> aren't carried out.</p>
|
|
1069
1214
|
* </li>
|
|
1070
1215
|
* <li>
|
|
1071
1216
|
* <p>
|
|
1072
|
-
* <code>ACTION_FAILED</code> - One or more of the specified <code>ProposalActions</code> in a proposal that was approved
|
|
1217
|
+
* <code>ACTION_FAILED</code> - One or more of the specified <code>ProposalActions</code> in a proposal that was approved couldn't be completed because of an error. The <code>ACTION_FAILED</code> status occurs even if only one ProposalAction fails and other actions are successful.</p>
|
|
1073
1218
|
* </li>
|
|
1074
1219
|
* </ul>
|
|
1075
1220
|
*/
|
|
@@ -1082,7 +1227,7 @@ export interface Proposal {
|
|
|
1082
1227
|
CreationDate?: Date;
|
|
1083
1228
|
/**
|
|
1084
1229
|
* <p>
|
|
1085
|
-
* 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
|
|
1230
|
+
* 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.
|
|
1086
1231
|
* </p>
|
|
1087
1232
|
*/
|
|
1088
1233
|
ExpirationDate?: Date;
|
|
@@ -1110,7 +1255,7 @@ export interface Proposal {
|
|
|
1110
1255
|
*/
|
|
1111
1256
|
Tags?: Record<string, string>;
|
|
1112
1257
|
/**
|
|
1113
|
-
* <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>
|
|
1258
|
+
* <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>
|
|
1114
1259
|
*/
|
|
1115
1260
|
Arn?: string;
|
|
1116
1261
|
}
|
|
@@ -1165,7 +1310,7 @@ export interface NetworkSummary {
|
|
|
1165
1310
|
*/
|
|
1166
1311
|
CreationDate?: Date;
|
|
1167
1312
|
/**
|
|
1168
|
-
* <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>
|
|
1313
|
+
* <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>
|
|
1169
1314
|
*/
|
|
1170
1315
|
Arn?: string;
|
|
1171
1316
|
}
|
|
@@ -1177,7 +1322,7 @@ export declare enum InvitationStatus {
|
|
|
1177
1322
|
REJECTED = "REJECTED"
|
|
1178
1323
|
}
|
|
1179
1324
|
/**
|
|
1180
|
-
* <p>An invitation to an
|
|
1325
|
+
* <p>An invitation to an Amazon Web Services account to create a member and join the network.</p>
|
|
1181
1326
|
* <p>Applies only to Hyperledger Fabric.</p>
|
|
1182
1327
|
*/
|
|
1183
1328
|
export interface Invitation {
|
|
@@ -1198,11 +1343,11 @@ export interface Invitation {
|
|
|
1198
1343
|
* <ul>
|
|
1199
1344
|
* <li>
|
|
1200
1345
|
* <p>
|
|
1201
|
-
* <code>PENDING</code> - The invitee
|
|
1346
|
+
* <code>PENDING</code> - The invitee hasn't created a member to join the network, and the invitation hasn't yet expired.</p>
|
|
1202
1347
|
* </li>
|
|
1203
1348
|
* <li>
|
|
1204
1349
|
* <p>
|
|
1205
|
-
* <code>ACCEPTING</code> - The invitee has begun creating a member, and creation
|
|
1350
|
+
* <code>ACCEPTING</code> - The invitee has begun creating a member, and creation hasn't yet completed.</p>
|
|
1206
1351
|
* </li>
|
|
1207
1352
|
* <li>
|
|
1208
1353
|
* <p>
|
|
@@ -1224,10 +1369,31 @@ export interface Invitation {
|
|
|
1224
1369
|
*/
|
|
1225
1370
|
NetworkSummary?: NetworkSummary;
|
|
1226
1371
|
/**
|
|
1227
|
-
* <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>
|
|
1372
|
+
* <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>
|
|
1228
1373
|
*/
|
|
1229
1374
|
Arn?: string;
|
|
1230
1375
|
}
|
|
1376
|
+
export interface ListAccessorsInput {
|
|
1377
|
+
/**
|
|
1378
|
+
* <p> The maximum number of accessors to list.</p>
|
|
1379
|
+
*/
|
|
1380
|
+
MaxResults?: number;
|
|
1381
|
+
/**
|
|
1382
|
+
* <p> The pagination token that indicates the next set of results to retrieve. </p>
|
|
1383
|
+
*/
|
|
1384
|
+
NextToken?: string;
|
|
1385
|
+
}
|
|
1386
|
+
export interface ListAccessorsOutput {
|
|
1387
|
+
/**
|
|
1388
|
+
* <p>An array of AccessorSummary objects that contain configuration properties for
|
|
1389
|
+
* each accessor.</p>
|
|
1390
|
+
*/
|
|
1391
|
+
Accessors?: AccessorSummary[];
|
|
1392
|
+
/**
|
|
1393
|
+
* <p> The pagination token that indicates the next set of results to retrieve. </p>
|
|
1394
|
+
*/
|
|
1395
|
+
NextToken?: string;
|
|
1396
|
+
}
|
|
1231
1397
|
export interface ListInvitationsInput {
|
|
1232
1398
|
/**
|
|
1233
1399
|
* <p>The maximum number of invitations to return.</p>
|
|
@@ -1263,7 +1429,7 @@ export interface ListMembersInput {
|
|
|
1263
1429
|
Status?: MemberStatus | string;
|
|
1264
1430
|
/**
|
|
1265
1431
|
* <p>An optional Boolean value. If provided, the request is limited either to
|
|
1266
|
-
* members that the current
|
|
1432
|
+
* members that the current Amazon Web Services account owns (<code>true</code>) or that other Amazon Web Services accountsn
|
|
1267
1433
|
* own (<code>false</code>). If omitted, all members are listed.</p>
|
|
1268
1434
|
*/
|
|
1269
1435
|
IsOwned?: boolean;
|
|
@@ -1298,7 +1464,7 @@ export interface MemberSummary {
|
|
|
1298
1464
|
* <ul>
|
|
1299
1465
|
* <li>
|
|
1300
1466
|
* <p>
|
|
1301
|
-
* <code>CREATING</code> - The
|
|
1467
|
+
* <code>CREATING</code> - The Amazon Web Services account is in the process of creating a member.</p>
|
|
1302
1468
|
* </li>
|
|
1303
1469
|
* <li>
|
|
1304
1470
|
* <p>
|
|
@@ -1306,7 +1472,7 @@ export interface MemberSummary {
|
|
|
1306
1472
|
* </li>
|
|
1307
1473
|
* <li>
|
|
1308
1474
|
* <p>
|
|
1309
|
-
* <code>CREATE_FAILED</code> - The
|
|
1475
|
+
* <code>CREATE_FAILED</code> - The Amazon Web Services account attempted to create a member and creation failed.</p>
|
|
1310
1476
|
* </li>
|
|
1311
1477
|
* <li>
|
|
1312
1478
|
* <p>
|
|
@@ -1314,18 +1480,18 @@ export interface MemberSummary {
|
|
|
1314
1480
|
* </li>
|
|
1315
1481
|
* <li>
|
|
1316
1482
|
* <p>
|
|
1317
|
-
* <code>DELETING</code> - The member and all associated resources are in the process of being deleted. Either the
|
|
1483
|
+
* <code>DELETING</code> - The member and all associated resources are in the process of being deleted. Either the Amazon Web Services account that owns the member deleted it, or the member is being deleted as the result of an <code>APPROVED</code>
|
|
1318
1484
|
* <code>PROPOSAL</code> to remove the member.</p>
|
|
1319
1485
|
* </li>
|
|
1320
1486
|
* <li>
|
|
1321
1487
|
* <p>
|
|
1322
|
-
* <code>DELETED</code> - The member can no longer participate on the network and all associated resources are deleted. Either the
|
|
1488
|
+
* <code>DELETED</code> - The member can no longer participate on the network and all associated resources are deleted. Either the Amazon Web Services account that owns the member deleted it, or the member is being deleted as the result of an <code>APPROVED</code>
|
|
1323
1489
|
* <code>PROPOSAL</code> to remove the member.</p>
|
|
1324
1490
|
* </li>
|
|
1325
1491
|
* <li>
|
|
1326
1492
|
* <p>
|
|
1327
|
-
* <code>INACCESSIBLE_ENCRYPTION_KEY</code> - The member is impaired and might not function as expected because it cannot access the specified customer managed key in
|
|
1328
|
-
* <p>The effect of disabling or deleting a key
|
|
1493
|
+
* <code>INACCESSIBLE_ENCRYPTION_KEY</code> - The member is impaired and might not function as expected because it cannot access the specified customer managed key in Key Management Service (KMS) for encryption at rest. Either the KMS key was disabled or deleted, or the grants on the key were revoked.</p>
|
|
1494
|
+
* <p>The effect of disabling or deleting a key or of revoking a grant isn't immediate. It might take some time for the member resource to discover that the key is inaccessible. When a resource is in this state, we recommend deleting and recreating the resource.</p>
|
|
1329
1495
|
* </li>
|
|
1330
1496
|
* </ul>
|
|
1331
1497
|
*/
|
|
@@ -1335,11 +1501,11 @@ export interface MemberSummary {
|
|
|
1335
1501
|
*/
|
|
1336
1502
|
CreationDate?: Date;
|
|
1337
1503
|
/**
|
|
1338
|
-
* <p>An indicator of whether the member is owned by your
|
|
1504
|
+
* <p>An indicator of whether the member is owned by your Amazon Web Services account or a different Amazon Web Services account.</p>
|
|
1339
1505
|
*/
|
|
1340
1506
|
IsOwned?: boolean;
|
|
1341
1507
|
/**
|
|
1342
|
-
* <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>
|
|
1508
|
+
* <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>
|
|
1343
1509
|
*/
|
|
1344
1510
|
Arn?: string;
|
|
1345
1511
|
}
|
|
@@ -1434,7 +1600,7 @@ export interface NodeSummary {
|
|
|
1434
1600
|
*/
|
|
1435
1601
|
InstanceType?: string;
|
|
1436
1602
|
/**
|
|
1437
|
-
* <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>
|
|
1603
|
+
* <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>
|
|
1438
1604
|
*/
|
|
1439
1605
|
Arn?: string;
|
|
1440
1606
|
}
|
|
@@ -1510,15 +1676,15 @@ export interface ProposalSummary {
|
|
|
1510
1676
|
* </li>
|
|
1511
1677
|
* <li>
|
|
1512
1678
|
* <p>
|
|
1513
|
-
* <code>REJECTED</code> - The proposal was rejected with insufficient <code>YES</code> votes among members according to the <code>VotingPolicy</code> specified for the <code>Network</code>. The specified <code>ProposalActions</code>
|
|
1679
|
+
* <code>REJECTED</code> - The proposal was rejected with insufficient <code>YES</code> votes among members according to the <code>VotingPolicy</code> specified for the <code>Network</code>. The specified <code>ProposalActions</code> aren't carried out.</p>
|
|
1514
1680
|
* </li>
|
|
1515
1681
|
* <li>
|
|
1516
1682
|
* <p>
|
|
1517
|
-
* <code>EXPIRED</code> - Members
|
|
1683
|
+
* <code>EXPIRED</code> - Members didn't cast the number of votes required to determine the proposal outcome before the proposal expired. The specified <code>ProposalActions</code> aren't carried out.</p>
|
|
1518
1684
|
* </li>
|
|
1519
1685
|
* <li>
|
|
1520
1686
|
* <p>
|
|
1521
|
-
* <code>ACTION_FAILED</code> - One or more of the specified <code>ProposalActions</code> in a proposal that was approved
|
|
1687
|
+
* <code>ACTION_FAILED</code> - One or more of the specified <code>ProposalActions</code> in a proposal that was approved couldn't be completed because of an error.</p>
|
|
1522
1688
|
* </li>
|
|
1523
1689
|
* </ul>
|
|
1524
1690
|
*/
|
|
@@ -1531,12 +1697,12 @@ export interface ProposalSummary {
|
|
|
1531
1697
|
CreationDate?: Date;
|
|
1532
1698
|
/**
|
|
1533
1699
|
* <p>
|
|
1534
|
-
* 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
|
|
1700
|
+
* 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.
|
|
1535
1701
|
* </p>
|
|
1536
1702
|
*/
|
|
1537
1703
|
ExpirationDate?: Date;
|
|
1538
1704
|
/**
|
|
1539
|
-
* <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>
|
|
1705
|
+
* <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>
|
|
1540
1706
|
*/
|
|
1541
1707
|
Arn?: string;
|
|
1542
1708
|
}
|
|
@@ -1622,7 +1788,7 @@ export interface ListProposalVotesOutput {
|
|
|
1622
1788
|
}
|
|
1623
1789
|
export interface ListTagsForResourceRequest {
|
|
1624
1790
|
/**
|
|
1625
|
-
* <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>
|
|
1791
|
+
* <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>
|
|
1626
1792
|
*/
|
|
1627
1793
|
ResourceArn: string | undefined;
|
|
1628
1794
|
}
|
|
@@ -1642,7 +1808,7 @@ export interface RejectInvitationOutput {
|
|
|
1642
1808
|
}
|
|
1643
1809
|
export interface TagResourceRequest {
|
|
1644
1810
|
/**
|
|
1645
|
-
* <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>
|
|
1811
|
+
* <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>
|
|
1646
1812
|
*/
|
|
1647
1813
|
ResourceArn: string | undefined;
|
|
1648
1814
|
/**
|
|
@@ -1654,7 +1820,7 @@ export interface TagResourceResponse {
|
|
|
1654
1820
|
}
|
|
1655
1821
|
export interface UntagResourceRequest {
|
|
1656
1822
|
/**
|
|
1657
|
-
* <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>
|
|
1823
|
+
* <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>
|
|
1658
1824
|
*/
|
|
1659
1825
|
ResourceArn: string | undefined;
|
|
1660
1826
|
/**
|
|
@@ -1728,10 +1894,26 @@ export interface VoteOnProposalInput {
|
|
|
1728
1894
|
}
|
|
1729
1895
|
export interface VoteOnProposalOutput {
|
|
1730
1896
|
}
|
|
1897
|
+
/**
|
|
1898
|
+
* @internal
|
|
1899
|
+
*/
|
|
1900
|
+
export declare const AccessorFilterSensitiveLog: (obj: Accessor) => any;
|
|
1901
|
+
/**
|
|
1902
|
+
* @internal
|
|
1903
|
+
*/
|
|
1904
|
+
export declare const AccessorSummaryFilterSensitiveLog: (obj: AccessorSummary) => any;
|
|
1731
1905
|
/**
|
|
1732
1906
|
* @internal
|
|
1733
1907
|
*/
|
|
1734
1908
|
export declare const ApprovalThresholdPolicyFilterSensitiveLog: (obj: ApprovalThresholdPolicy) => any;
|
|
1909
|
+
/**
|
|
1910
|
+
* @internal
|
|
1911
|
+
*/
|
|
1912
|
+
export declare const CreateAccessorInputFilterSensitiveLog: (obj: CreateAccessorInput) => any;
|
|
1913
|
+
/**
|
|
1914
|
+
* @internal
|
|
1915
|
+
*/
|
|
1916
|
+
export declare const CreateAccessorOutputFilterSensitiveLog: (obj: CreateAccessorOutput) => any;
|
|
1735
1917
|
/**
|
|
1736
1918
|
* @internal
|
|
1737
1919
|
*/
|
|
@@ -1828,6 +2010,14 @@ export declare const CreateProposalInputFilterSensitiveLog: (obj: CreateProposal
|
|
|
1828
2010
|
* @internal
|
|
1829
2011
|
*/
|
|
1830
2012
|
export declare const CreateProposalOutputFilterSensitiveLog: (obj: CreateProposalOutput) => any;
|
|
2013
|
+
/**
|
|
2014
|
+
* @internal
|
|
2015
|
+
*/
|
|
2016
|
+
export declare const DeleteAccessorInputFilterSensitiveLog: (obj: DeleteAccessorInput) => any;
|
|
2017
|
+
/**
|
|
2018
|
+
* @internal
|
|
2019
|
+
*/
|
|
2020
|
+
export declare const DeleteAccessorOutputFilterSensitiveLog: (obj: DeleteAccessorOutput) => any;
|
|
1831
2021
|
/**
|
|
1832
2022
|
* @internal
|
|
1833
2023
|
*/
|
|
@@ -1844,6 +2034,14 @@ export declare const DeleteNodeInputFilterSensitiveLog: (obj: DeleteNodeInput) =
|
|
|
1844
2034
|
* @internal
|
|
1845
2035
|
*/
|
|
1846
2036
|
export declare const DeleteNodeOutputFilterSensitiveLog: (obj: DeleteNodeOutput) => any;
|
|
2037
|
+
/**
|
|
2038
|
+
* @internal
|
|
2039
|
+
*/
|
|
2040
|
+
export declare const GetAccessorInputFilterSensitiveLog: (obj: GetAccessorInput) => any;
|
|
2041
|
+
/**
|
|
2042
|
+
* @internal
|
|
2043
|
+
*/
|
|
2044
|
+
export declare const GetAccessorOutputFilterSensitiveLog: (obj: GetAccessorOutput) => any;
|
|
1847
2045
|
/**
|
|
1848
2046
|
* @internal
|
|
1849
2047
|
*/
|
|
@@ -1932,6 +2130,14 @@ export declare const NetworkSummaryFilterSensitiveLog: (obj: NetworkSummary) =>
|
|
|
1932
2130
|
* @internal
|
|
1933
2131
|
*/
|
|
1934
2132
|
export declare const InvitationFilterSensitiveLog: (obj: Invitation) => any;
|
|
2133
|
+
/**
|
|
2134
|
+
* @internal
|
|
2135
|
+
*/
|
|
2136
|
+
export declare const ListAccessorsInputFilterSensitiveLog: (obj: ListAccessorsInput) => any;
|
|
2137
|
+
/**
|
|
2138
|
+
* @internal
|
|
2139
|
+
*/
|
|
2140
|
+
export declare const ListAccessorsOutputFilterSensitiveLog: (obj: ListAccessorsOutput) => any;
|
|
1935
2141
|
/**
|
|
1936
2142
|
* @internal
|
|
1937
2143
|
*/
|