@aws-sdk/client-partnercentral-account 3.942.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/LICENSE +201 -0
- package/README.md +421 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1701 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +41 -0
- package/dist-es/PartnerCentralAccount.js +61 -0
- package/dist-es/PartnerCentralAccountClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AcceptConnectionInvitationCommand.js +16 -0
- package/dist-es/commands/AssociateAwsTrainingCertificationEmailDomainCommand.js +16 -0
- package/dist-es/commands/CancelConnectionCommand.js +16 -0
- package/dist-es/commands/CancelConnectionInvitationCommand.js +16 -0
- package/dist-es/commands/CancelProfileUpdateTaskCommand.js +16 -0
- package/dist-es/commands/CreateConnectionInvitationCommand.js +16 -0
- package/dist-es/commands/CreatePartnerCommand.js +16 -0
- package/dist-es/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.js +16 -0
- package/dist-es/commands/GetAllianceLeadContactCommand.js +16 -0
- package/dist-es/commands/GetConnectionCommand.js +16 -0
- package/dist-es/commands/GetConnectionInvitationCommand.js +16 -0
- package/dist-es/commands/GetConnectionPreferencesCommand.js +16 -0
- package/dist-es/commands/GetPartnerCommand.js +16 -0
- package/dist-es/commands/GetProfileUpdateTaskCommand.js +16 -0
- package/dist-es/commands/GetProfileVisibilityCommand.js +16 -0
- package/dist-es/commands/ListConnectionInvitationsCommand.js +16 -0
- package/dist-es/commands/ListConnectionsCommand.js +16 -0
- package/dist-es/commands/ListPartnersCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/PutAllianceLeadContactCommand.js +16 -0
- package/dist-es/commands/PutProfileVisibilityCommand.js +16 -0
- package/dist-es/commands/RejectConnectionInvitationCommand.js +16 -0
- package/dist-es/commands/SendEmailVerificationCodeCommand.js +16 -0
- package/dist-es/commands/StartProfileUpdateTaskCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateConnectionPreferencesCommand.js +16 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/PartnerCentralAccountServiceException.js +8 -0
- package/dist-es/models/enums.js +144 -0
- package/dist-es/models/errors.js +117 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListConnectionInvitationsPaginator.js +4 -0
- package/dist-es/pagination/ListConnectionsPaginator.js +4 -0
- package/dist-es/pagination/ListPartnersPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +37 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +900 -0
- package/dist-types/PartnerCentralAccount.d.ts +199 -0
- package/dist-types/PartnerCentralAccountClient.d.ts +223 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AcceptConnectionInvitationCommand.d.ts +123 -0
- package/dist-types/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +94 -0
- package/dist-types/commands/CancelConnectionCommand.d.ts +123 -0
- package/dist-types/commands/CancelConnectionInvitationCommand.d.ts +107 -0
- package/dist-types/commands/CancelProfileUpdateTaskCommand.d.ts +128 -0
- package/dist-types/commands/CreateConnectionInvitationCommand.d.ts +111 -0
- package/dist-types/commands/CreatePartnerCommand.d.ts +142 -0
- package/dist-types/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +90 -0
- package/dist-types/commands/GetAllianceLeadContactCommand.d.ts +98 -0
- package/dist-types/commands/GetConnectionCommand.d.ts +117 -0
- package/dist-types/commands/GetConnectionInvitationCommand.d.ts +103 -0
- package/dist-types/commands/GetConnectionPreferencesCommand.d.ts +93 -0
- package/dist-types/commands/GetPartnerCommand.d.ts +121 -0
- package/dist-types/commands/GetProfileUpdateTaskCommand.d.ts +123 -0
- package/dist-types/commands/GetProfileVisibilityCommand.d.ts +94 -0
- package/dist-types/commands/ListConnectionInvitationsCommand.d.ts +109 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +119 -0
- package/dist-types/commands/ListPartnersCommand.d.ts +96 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +95 -0
- package/dist-types/commands/PutAllianceLeadContactCommand.d.ts +105 -0
- package/dist-types/commands/PutProfileVisibilityCommand.d.ts +95 -0
- package/dist-types/commands/RejectConnectionInvitationCommand.d.ts +108 -0
- package/dist-types/commands/SendEmailVerificationCodeCommand.d.ts +88 -0
- package/dist-types/commands/StartProfileUpdateTaskCommand.d.ts +147 -0
- package/dist-types/commands/TagResourceCommand.d.ts +96 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
- package/dist-types/commands/UpdateConnectionPreferencesCommand.d.ts +101 -0
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/PartnerCentralAccountServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +280 -0
- package/dist-types/models/errors.d.ts +137 -0
- package/dist-types/models/models_0.d.ts +2083 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListConnectionInvitationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConnectionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPartnersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +51 -0
- package/dist-types/runtimeConfig.d.ts +51 -0
- package/dist-types/runtimeConfig.native.d.ts +50 -0
- package/dist-types/runtimeConfig.shared.d.ts +22 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +126 -0
- package/dist-types/ts3.4/PartnerCentralAccount.d.ts +478 -0
- package/dist-types/ts3.4/PartnerCentralAccountClient.d.ts +288 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AcceptConnectionInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CancelConnectionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CancelConnectionInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CancelProfileUpdateTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateConnectionInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreatePartnerCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetAllianceLeadContactCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetConnectionInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConnectionPreferencesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPartnerCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetProfileUpdateTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetProfileVisibilityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConnectionInvitationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListPartnersCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutAllianceLeadContactCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutProfileVisibilityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RejectConnectionInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SendEmailVerificationCodeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartProfileUpdateTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateConnectionPreferencesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -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/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +11 -0
- package/dist-types/ts3.4/models/PartnerCentralAccountServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +177 -0
- package/dist-types/ts3.4/models/errors.d.ts +74 -0
- package/dist-types/ts3.4/models/models_0.d.ts +544 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListConnectionInvitationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPartnersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +133 -0
- package/package.json +99 -0
|
@@ -0,0 +1,2083 @@
|
|
|
1
|
+
import { AccessType, BusinessValidationCode, ConnectionType, ConnectionTypeStatus, FieldValidationCode, IndustrySegment, InvitationStatus, ParticipantType, PrimarySolutionType, ProfileTaskStatus, ProfileValidationErrorReason, ProfileVisibility } from "./enums";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface AcceptConnectionInvitationRequest {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The catalog identifier where the connection invitation exists.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
Catalog: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>The unique identifier of the connection invitation to accept.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
Identifier: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
ClientToken?: string | undefined;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* <p>Summary information about an AWS account.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export interface AccountSummary {
|
|
27
|
+
/**
|
|
28
|
+
* <p>The name associated with the AWS account.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
Name: string | undefined;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* <p>A summary view of a partner profile containing basic identifying information.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
export interface PartnerProfileSummary {
|
|
38
|
+
/**
|
|
39
|
+
* <p>The unique identifier of the partner profile.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
Id: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The display name of the partner.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
Name: string | undefined;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* <p>A summary view of a seller profile containing basic identifying information.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export interface SellerProfileSummary {
|
|
54
|
+
/**
|
|
55
|
+
* <p>The unique identifier of the seller profile.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
Id: string | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* <p>The display name of the seller.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
Name: string | undefined;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* <p>Represents a participant in a partner connection, containing their profile and account information.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
export type Participant = Participant.AccountMember | Participant.PartnerProfileMember | Participant.SellerProfileMember | Participant.$UnknownMember;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export declare namespace Participant {
|
|
74
|
+
/**
|
|
75
|
+
* <p>The partner profile information for the participant.</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
interface PartnerProfileMember {
|
|
79
|
+
PartnerProfile: PartnerProfileSummary;
|
|
80
|
+
SellerProfile?: never;
|
|
81
|
+
Account?: never;
|
|
82
|
+
$unknown?: never;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* <p>The seller profile information for the participant.</p>
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
interface SellerProfileMember {
|
|
89
|
+
PartnerProfile?: never;
|
|
90
|
+
SellerProfile: SellerProfileSummary;
|
|
91
|
+
Account?: never;
|
|
92
|
+
$unknown?: never;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* <p>The AWS account information for the participant.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
interface AccountMember {
|
|
99
|
+
PartnerProfile?: never;
|
|
100
|
+
SellerProfile?: never;
|
|
101
|
+
Account: AccountSummary;
|
|
102
|
+
$unknown?: never;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
interface $UnknownMember {
|
|
108
|
+
PartnerProfile?: never;
|
|
109
|
+
SellerProfile?: never;
|
|
110
|
+
Account?: never;
|
|
111
|
+
$unknown: [string, any];
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* @deprecated unused in schema-serde mode.
|
|
115
|
+
*
|
|
116
|
+
*/
|
|
117
|
+
interface Visitor<T> {
|
|
118
|
+
PartnerProfile: (value: PartnerProfileSummary) => T;
|
|
119
|
+
SellerProfile: (value: SellerProfileSummary) => T;
|
|
120
|
+
Account: (value: AccountSummary) => T;
|
|
121
|
+
_: (name: string, value: any) => T;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* <p>Detailed information about a specific connection type within a connection.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
export interface ConnectionTypeDetail {
|
|
129
|
+
/**
|
|
130
|
+
* <p>The timestamp when this connection type was created.</p>
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
CreatedAt: Date | undefined;
|
|
134
|
+
/**
|
|
135
|
+
* <p>The email address of the person who initiated this connection type.</p>
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
InviterEmail: string | undefined;
|
|
139
|
+
/**
|
|
140
|
+
* <p>The name of the person who initiated this connection type.</p>
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
InviterName: string | undefined;
|
|
144
|
+
/**
|
|
145
|
+
* <p>The current status of this connection type.</p>
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
Status: ConnectionTypeStatus | undefined;
|
|
149
|
+
/**
|
|
150
|
+
* <p>The timestamp when this connection type was cancelled, if applicable.</p>
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
CanceledAt?: Date | undefined;
|
|
154
|
+
/**
|
|
155
|
+
* <p>The AWS account ID of the participant who cancelled this connection type.</p>
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
CanceledBy?: string | undefined;
|
|
159
|
+
/**
|
|
160
|
+
* <p>Information about the other participant in this connection type.</p>
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
OtherParticipant: Participant | undefined;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* <p>Base structure containing common connection properties.</p>
|
|
167
|
+
* @public
|
|
168
|
+
*/
|
|
169
|
+
export interface Connection {
|
|
170
|
+
/**
|
|
171
|
+
* <p>The catalog identifier that the connection belongs to.</p>
|
|
172
|
+
* @public
|
|
173
|
+
*/
|
|
174
|
+
Catalog: string | undefined;
|
|
175
|
+
/**
|
|
176
|
+
* <p>The unique identifier of the connection.</p>
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
Id: string | undefined;
|
|
180
|
+
/**
|
|
181
|
+
* <p>The AWS Resource Name (ARN) of the connection.</p>
|
|
182
|
+
* @public
|
|
183
|
+
*/
|
|
184
|
+
Arn: string | undefined;
|
|
185
|
+
/**
|
|
186
|
+
* <p>The AWS account ID of the other participant in the connection.</p>
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
OtherParticipantAccountId: string | undefined;
|
|
190
|
+
/**
|
|
191
|
+
* <p>The timestamp when the connection was last updated.</p>
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
194
|
+
UpdatedAt: Date | undefined;
|
|
195
|
+
/**
|
|
196
|
+
* <p>The type of connection.</p>
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
ConnectionTypes: Partial<Record<ConnectionType, ConnectionTypeDetail>> | undefined;
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* @public
|
|
203
|
+
*/
|
|
204
|
+
export interface AcceptConnectionInvitationResponse {
|
|
205
|
+
/**
|
|
206
|
+
* <p>The details of the accepted connection between the two partners.</p>
|
|
207
|
+
* @public
|
|
208
|
+
*/
|
|
209
|
+
Connection: Connection | undefined;
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* <p>Contains information about a business rule validation error that occurred during an operation.</p>
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
export interface BusinessValidationError {
|
|
216
|
+
/**
|
|
217
|
+
* <p>A description of the business validation error.</p>
|
|
218
|
+
* @public
|
|
219
|
+
*/
|
|
220
|
+
Message: string | undefined;
|
|
221
|
+
/**
|
|
222
|
+
* <p>A code identifying the specific business validation error.</p>
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
Code: BusinessValidationCode | undefined;
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* <p>Contains information about a field-level validation error that occurred during an operation.</p>
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
231
|
+
export interface FieldValidationError {
|
|
232
|
+
/**
|
|
233
|
+
* <p>The name of the field that failed validation.</p>
|
|
234
|
+
* @public
|
|
235
|
+
*/
|
|
236
|
+
Name: string | undefined;
|
|
237
|
+
/**
|
|
238
|
+
* <p>A description of the field validation error.</p>
|
|
239
|
+
* @public
|
|
240
|
+
*/
|
|
241
|
+
Message: string | undefined;
|
|
242
|
+
/**
|
|
243
|
+
* <p>A code identifying the specific field validation error.</p>
|
|
244
|
+
* @public
|
|
245
|
+
*/
|
|
246
|
+
Code: FieldValidationCode | undefined;
|
|
247
|
+
}
|
|
248
|
+
/**
|
|
249
|
+
* <p>Contains information about a validation error, which can be either a field-level or business rule validation error.</p>
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
export type ValidationError = ValidationError.BusinessValidationErrorMember | ValidationError.FieldValidationErrorMember | ValidationError.$UnknownMember;
|
|
253
|
+
/**
|
|
254
|
+
* @public
|
|
255
|
+
*/
|
|
256
|
+
export declare namespace ValidationError {
|
|
257
|
+
/**
|
|
258
|
+
* <p>Details about a field-level validation error, if applicable.</p>
|
|
259
|
+
* @public
|
|
260
|
+
*/
|
|
261
|
+
interface FieldValidationErrorMember {
|
|
262
|
+
FieldValidationError: FieldValidationError;
|
|
263
|
+
BusinessValidationError?: never;
|
|
264
|
+
$unknown?: never;
|
|
265
|
+
}
|
|
266
|
+
/**
|
|
267
|
+
* <p>Details about a business rule validation error, if applicable.</p>
|
|
268
|
+
* @public
|
|
269
|
+
*/
|
|
270
|
+
interface BusinessValidationErrorMember {
|
|
271
|
+
FieldValidationError?: never;
|
|
272
|
+
BusinessValidationError: BusinessValidationError;
|
|
273
|
+
$unknown?: never;
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
interface $UnknownMember {
|
|
279
|
+
FieldValidationError?: never;
|
|
280
|
+
BusinessValidationError?: never;
|
|
281
|
+
$unknown: [string, any];
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* @deprecated unused in schema-serde mode.
|
|
285
|
+
*
|
|
286
|
+
*/
|
|
287
|
+
interface Visitor<T> {
|
|
288
|
+
FieldValidationError: (value: FieldValidationError) => T;
|
|
289
|
+
BusinessValidationError: (value: BusinessValidationError) => T;
|
|
290
|
+
_: (name: string, value: any) => T;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* <p>Contains contact information for the primary alliance lead responsible for partnership activities.</p>
|
|
295
|
+
* @public
|
|
296
|
+
*/
|
|
297
|
+
export interface AllianceLeadContact {
|
|
298
|
+
/**
|
|
299
|
+
* <p>The first name of the alliance lead contact person.</p>
|
|
300
|
+
* @public
|
|
301
|
+
*/
|
|
302
|
+
FirstName: string | undefined;
|
|
303
|
+
/**
|
|
304
|
+
* <p>The last name of the alliance lead contact person.</p>
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
LastName: string | undefined;
|
|
308
|
+
/**
|
|
309
|
+
* <p>The email address of the alliance lead contact person.</p>
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
Email: string | undefined;
|
|
313
|
+
/**
|
|
314
|
+
* <p>The business title or role of the alliance lead contact person.</p>
|
|
315
|
+
* @public
|
|
316
|
+
*/
|
|
317
|
+
BusinessTitle: string | undefined;
|
|
318
|
+
}
|
|
319
|
+
/**
|
|
320
|
+
* @public
|
|
321
|
+
*/
|
|
322
|
+
export interface AssociateAwsTrainingCertificationEmailDomainRequest {
|
|
323
|
+
/**
|
|
324
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
Catalog: string | undefined;
|
|
328
|
+
/**
|
|
329
|
+
* <p>The unique identifier of the partner account.</p>
|
|
330
|
+
* @public
|
|
331
|
+
*/
|
|
332
|
+
Identifier: string | undefined;
|
|
333
|
+
/**
|
|
334
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
335
|
+
* @public
|
|
336
|
+
*/
|
|
337
|
+
ClientToken?: string | undefined;
|
|
338
|
+
/**
|
|
339
|
+
* <p>The email address used to verify domain ownership for AWS training and certification association.</p>
|
|
340
|
+
* @public
|
|
341
|
+
*/
|
|
342
|
+
Email: string | undefined;
|
|
343
|
+
/**
|
|
344
|
+
* <p>The verification code sent to the email address to confirm domain ownership.</p>
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
EmailVerificationCode: string | undefined;
|
|
348
|
+
}
|
|
349
|
+
/**
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
export interface AssociateAwsTrainingCertificationEmailDomainResponse {
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
357
|
+
export interface CancelConnectionRequest {
|
|
358
|
+
/**
|
|
359
|
+
* <p>The catalog identifier where the connection exists.</p>
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
362
|
+
Catalog: string | undefined;
|
|
363
|
+
/**
|
|
364
|
+
* <p>The unique identifier of the connection to cancel.</p>
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
Identifier: string | undefined;
|
|
368
|
+
/**
|
|
369
|
+
* <p>The type of connection to cancel (e.g., reseller, distributor, technology partner).</p>
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
372
|
+
ConnectionType: ConnectionType | undefined;
|
|
373
|
+
/**
|
|
374
|
+
* <p>The reason for canceling the connection, providing context for the termination.</p>
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
Reason: string | undefined;
|
|
378
|
+
/**
|
|
379
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
380
|
+
* @public
|
|
381
|
+
*/
|
|
382
|
+
ClientToken?: string | undefined;
|
|
383
|
+
}
|
|
384
|
+
/**
|
|
385
|
+
* @public
|
|
386
|
+
*/
|
|
387
|
+
export interface CancelConnectionResponse {
|
|
388
|
+
/**
|
|
389
|
+
* <p>The catalog identifier where the connection was canceled.</p>
|
|
390
|
+
* @public
|
|
391
|
+
*/
|
|
392
|
+
Catalog: string | undefined;
|
|
393
|
+
/**
|
|
394
|
+
* <p>The unique identifier of the canceled connection.</p>
|
|
395
|
+
* @public
|
|
396
|
+
*/
|
|
397
|
+
Id: string | undefined;
|
|
398
|
+
/**
|
|
399
|
+
* <p>The Amazon Resource Name (ARN) of the canceled connection.</p>
|
|
400
|
+
* @public
|
|
401
|
+
*/
|
|
402
|
+
Arn: string | undefined;
|
|
403
|
+
/**
|
|
404
|
+
* <p>The AWS account ID of the other participant in the canceled connection.</p>
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
OtherParticipantAccountId: string | undefined;
|
|
408
|
+
/**
|
|
409
|
+
* <p>The timestamp when the connection was last updated (canceled).</p>
|
|
410
|
+
* @public
|
|
411
|
+
*/
|
|
412
|
+
UpdatedAt: Date | undefined;
|
|
413
|
+
/**
|
|
414
|
+
* <p>The list of connection types that were active before cancellation.</p>
|
|
415
|
+
* @public
|
|
416
|
+
*/
|
|
417
|
+
ConnectionTypes: Partial<Record<ConnectionType, ConnectionTypeDetail>> | undefined;
|
|
418
|
+
}
|
|
419
|
+
/**
|
|
420
|
+
* @public
|
|
421
|
+
*/
|
|
422
|
+
export interface CancelConnectionInvitationRequest {
|
|
423
|
+
/**
|
|
424
|
+
* <p>The catalog identifier where the connection invitation exists.</p>
|
|
425
|
+
* @public
|
|
426
|
+
*/
|
|
427
|
+
Catalog: string | undefined;
|
|
428
|
+
/**
|
|
429
|
+
* <p>The unique identifier of the connection invitation to cancel.</p>
|
|
430
|
+
* @public
|
|
431
|
+
*/
|
|
432
|
+
Identifier: string | undefined;
|
|
433
|
+
/**
|
|
434
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
435
|
+
* @public
|
|
436
|
+
*/
|
|
437
|
+
ClientToken?: string | undefined;
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* @public
|
|
441
|
+
*/
|
|
442
|
+
export interface CancelConnectionInvitationResponse {
|
|
443
|
+
/**
|
|
444
|
+
* <p>The catalog identifier where the connection invitation was canceled.</p>
|
|
445
|
+
* @public
|
|
446
|
+
*/
|
|
447
|
+
Catalog: string | undefined;
|
|
448
|
+
/**
|
|
449
|
+
* <p>The unique identifier of the canceled connection invitation.</p>
|
|
450
|
+
* @public
|
|
451
|
+
*/
|
|
452
|
+
Id: string | undefined;
|
|
453
|
+
/**
|
|
454
|
+
* <p>The Amazon Resource Name (ARN) of the canceled connection invitation.</p>
|
|
455
|
+
* @public
|
|
456
|
+
*/
|
|
457
|
+
Arn: string | undefined;
|
|
458
|
+
/**
|
|
459
|
+
* <p>The identifier of the connection associated with the canceled invitation.</p>
|
|
460
|
+
* @public
|
|
461
|
+
*/
|
|
462
|
+
ConnectionId?: string | undefined;
|
|
463
|
+
/**
|
|
464
|
+
* <p>The type of connection that was being invited for.</p>
|
|
465
|
+
* @public
|
|
466
|
+
*/
|
|
467
|
+
ConnectionType: ConnectionType | undefined;
|
|
468
|
+
/**
|
|
469
|
+
* <p>The timestamp when the connection invitation was originally created.</p>
|
|
470
|
+
* @public
|
|
471
|
+
*/
|
|
472
|
+
CreatedAt: Date | undefined;
|
|
473
|
+
/**
|
|
474
|
+
* <p>The timestamp when the connection invitation was last updated (canceled).</p>
|
|
475
|
+
* @public
|
|
476
|
+
*/
|
|
477
|
+
UpdatedAt: Date | undefined;
|
|
478
|
+
/**
|
|
479
|
+
* <p>The timestamp when the connection invitation would have expired if not canceled.</p>
|
|
480
|
+
* @public
|
|
481
|
+
*/
|
|
482
|
+
ExpiresAt?: Date | undefined;
|
|
483
|
+
/**
|
|
484
|
+
* <p>The identifier of the other participant who was invited to connect.</p>
|
|
485
|
+
* @public
|
|
486
|
+
*/
|
|
487
|
+
OtherParticipantIdentifier: string | undefined;
|
|
488
|
+
/**
|
|
489
|
+
* <p>The type of participant (inviter or invitee) in the connection invitation.</p>
|
|
490
|
+
* @public
|
|
491
|
+
*/
|
|
492
|
+
ParticipantType: ParticipantType | undefined;
|
|
493
|
+
/**
|
|
494
|
+
* <p>The current status of the connection invitation (canceled).</p>
|
|
495
|
+
* @public
|
|
496
|
+
*/
|
|
497
|
+
Status: InvitationStatus | undefined;
|
|
498
|
+
/**
|
|
499
|
+
* <p>The message that was included with the original connection invitation.</p>
|
|
500
|
+
* @public
|
|
501
|
+
*/
|
|
502
|
+
InvitationMessage: string | undefined;
|
|
503
|
+
/**
|
|
504
|
+
* <p>The email address of the person who sent the connection invitation.</p>
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
507
|
+
InviterEmail: string | undefined;
|
|
508
|
+
/**
|
|
509
|
+
* <p>The name of the person who sent the connection invitation.</p>
|
|
510
|
+
* @public
|
|
511
|
+
*/
|
|
512
|
+
InviterName: string | undefined;
|
|
513
|
+
}
|
|
514
|
+
/**
|
|
515
|
+
* @public
|
|
516
|
+
*/
|
|
517
|
+
export interface CancelProfileUpdateTaskRequest {
|
|
518
|
+
/**
|
|
519
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
520
|
+
* @public
|
|
521
|
+
*/
|
|
522
|
+
Catalog: string | undefined;
|
|
523
|
+
/**
|
|
524
|
+
* <p>The unique identifier of the partner account.</p>
|
|
525
|
+
* @public
|
|
526
|
+
*/
|
|
527
|
+
Identifier: string | undefined;
|
|
528
|
+
/**
|
|
529
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
530
|
+
* @public
|
|
531
|
+
*/
|
|
532
|
+
ClientToken?: string | undefined;
|
|
533
|
+
/**
|
|
534
|
+
* <p>The unique identifier of the profile update task to cancel.</p>
|
|
535
|
+
* @public
|
|
536
|
+
*/
|
|
537
|
+
TaskId: string | undefined;
|
|
538
|
+
}
|
|
539
|
+
/**
|
|
540
|
+
* <p>Contains detailed information about an error that occurred during an operation.</p>
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
export interface ErrorDetail {
|
|
544
|
+
/**
|
|
545
|
+
* <p>The locale or language code for the error message.</p>
|
|
546
|
+
* @public
|
|
547
|
+
*/
|
|
548
|
+
Locale: string | undefined;
|
|
549
|
+
/**
|
|
550
|
+
* <p>A human-readable description of the error.</p>
|
|
551
|
+
* @public
|
|
552
|
+
*/
|
|
553
|
+
Message: string | undefined;
|
|
554
|
+
/**
|
|
555
|
+
* <p>A machine-readable code or reason for the error.</p>
|
|
556
|
+
* @public
|
|
557
|
+
*/
|
|
558
|
+
Reason: ProfileValidationErrorReason | undefined;
|
|
559
|
+
}
|
|
560
|
+
/**
|
|
561
|
+
* <p>Contains localized content for a partner profile in a specific language or locale.</p>
|
|
562
|
+
* @public
|
|
563
|
+
*/
|
|
564
|
+
export interface LocalizedContent {
|
|
565
|
+
/**
|
|
566
|
+
* <p>The localized display name for the partner.</p>
|
|
567
|
+
* @public
|
|
568
|
+
*/
|
|
569
|
+
DisplayName: string | undefined;
|
|
570
|
+
/**
|
|
571
|
+
* <p>The localized description of the partner's business and services.</p>
|
|
572
|
+
* @public
|
|
573
|
+
*/
|
|
574
|
+
Description: string | undefined;
|
|
575
|
+
/**
|
|
576
|
+
* <p>The localized website URL for the partner.</p>
|
|
577
|
+
* @public
|
|
578
|
+
*/
|
|
579
|
+
WebsiteUrl: string | undefined;
|
|
580
|
+
/**
|
|
581
|
+
* <p>The URL to the partner's logo image for this locale.</p>
|
|
582
|
+
* @public
|
|
583
|
+
*/
|
|
584
|
+
LogoUrl: string | undefined;
|
|
585
|
+
/**
|
|
586
|
+
* <p>The locale or language code for the localized content.</p>
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
589
|
+
Locale: string | undefined;
|
|
590
|
+
}
|
|
591
|
+
/**
|
|
592
|
+
* <p>Contains detailed information about a profile update task including the changes to be made.</p>
|
|
593
|
+
* @public
|
|
594
|
+
*/
|
|
595
|
+
export interface TaskDetails {
|
|
596
|
+
/**
|
|
597
|
+
* <p>The updated display name for the partner profile.</p>
|
|
598
|
+
* @public
|
|
599
|
+
*/
|
|
600
|
+
DisplayName: string | undefined;
|
|
601
|
+
/**
|
|
602
|
+
* <p>The updated description for the partner profile.</p>
|
|
603
|
+
* @public
|
|
604
|
+
*/
|
|
605
|
+
Description: string | undefined;
|
|
606
|
+
/**
|
|
607
|
+
* <p>The updated website URL for the partner profile.</p>
|
|
608
|
+
* @public
|
|
609
|
+
*/
|
|
610
|
+
WebsiteUrl: string | undefined;
|
|
611
|
+
/**
|
|
612
|
+
* <p>The updated logo URL for the partner profile.</p>
|
|
613
|
+
* @public
|
|
614
|
+
*/
|
|
615
|
+
LogoUrl: string | undefined;
|
|
616
|
+
/**
|
|
617
|
+
* <p>The updated primary solution type for the partner profile.</p>
|
|
618
|
+
* @public
|
|
619
|
+
*/
|
|
620
|
+
PrimarySolutionType: PrimarySolutionType | undefined;
|
|
621
|
+
/**
|
|
622
|
+
* <p>The updated industry segments for the partner profile.</p>
|
|
623
|
+
* @public
|
|
624
|
+
*/
|
|
625
|
+
IndustrySegments: IndustrySegment[] | undefined;
|
|
626
|
+
/**
|
|
627
|
+
* <p>The updated translation source locale for the partner profile.</p>
|
|
628
|
+
* @public
|
|
629
|
+
*/
|
|
630
|
+
TranslationSourceLocale: string | undefined;
|
|
631
|
+
/**
|
|
632
|
+
* <p>The updated localized content for the partner profile.</p>
|
|
633
|
+
* @public
|
|
634
|
+
*/
|
|
635
|
+
LocalizedContents?: LocalizedContent[] | undefined;
|
|
636
|
+
}
|
|
637
|
+
/**
|
|
638
|
+
* @public
|
|
639
|
+
*/
|
|
640
|
+
export interface CancelProfileUpdateTaskResponse {
|
|
641
|
+
/**
|
|
642
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
643
|
+
* @public
|
|
644
|
+
*/
|
|
645
|
+
Catalog: string | undefined;
|
|
646
|
+
/**
|
|
647
|
+
* <p>The Amazon Resource Name (ARN) of the canceled profile update task.</p>
|
|
648
|
+
* @public
|
|
649
|
+
*/
|
|
650
|
+
Arn: string | undefined;
|
|
651
|
+
/**
|
|
652
|
+
* <p>The unique identifier of the partner account.</p>
|
|
653
|
+
* @public
|
|
654
|
+
*/
|
|
655
|
+
Id: string | undefined;
|
|
656
|
+
/**
|
|
657
|
+
* <p>The unique identifier of the canceled profile update task.</p>
|
|
658
|
+
* @public
|
|
659
|
+
*/
|
|
660
|
+
TaskId: string | undefined;
|
|
661
|
+
/**
|
|
662
|
+
* <p>The details of the profile update task that was canceled.</p>
|
|
663
|
+
* @public
|
|
664
|
+
*/
|
|
665
|
+
TaskDetails: TaskDetails | undefined;
|
|
666
|
+
/**
|
|
667
|
+
* <p>The timestamp when the profile update task was started.</p>
|
|
668
|
+
* @public
|
|
669
|
+
*/
|
|
670
|
+
StartedAt: Date | undefined;
|
|
671
|
+
/**
|
|
672
|
+
* <p>The current status of the profile update task (canceled).</p>
|
|
673
|
+
* @public
|
|
674
|
+
*/
|
|
675
|
+
Status: ProfileTaskStatus | undefined;
|
|
676
|
+
/**
|
|
677
|
+
* <p>The timestamp when the profile update task was ended (canceled).</p>
|
|
678
|
+
* @public
|
|
679
|
+
*/
|
|
680
|
+
EndedAt?: Date | undefined;
|
|
681
|
+
/**
|
|
682
|
+
* <p>A list of error details if any errors occurred during the profile update task.</p>
|
|
683
|
+
* @public
|
|
684
|
+
*/
|
|
685
|
+
ErrorDetailList?: ErrorDetail[] | undefined;
|
|
686
|
+
}
|
|
687
|
+
/**
|
|
688
|
+
* @public
|
|
689
|
+
*/
|
|
690
|
+
export interface CreateConnectionInvitationRequest {
|
|
691
|
+
/**
|
|
692
|
+
* <p>The catalog identifier where the connection invitation will be created.</p>
|
|
693
|
+
* @public
|
|
694
|
+
*/
|
|
695
|
+
Catalog: string | undefined;
|
|
696
|
+
/**
|
|
697
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
698
|
+
* @public
|
|
699
|
+
*/
|
|
700
|
+
ClientToken?: string | undefined;
|
|
701
|
+
/**
|
|
702
|
+
* <p>The type of connection being requested (e.g., reseller, distributor, technology partner).</p>
|
|
703
|
+
* @public
|
|
704
|
+
*/
|
|
705
|
+
ConnectionType: ConnectionType | undefined;
|
|
706
|
+
/**
|
|
707
|
+
* <p>The email address of the person to send the connection invitation to.</p>
|
|
708
|
+
* @public
|
|
709
|
+
*/
|
|
710
|
+
Email: string | undefined;
|
|
711
|
+
/**
|
|
712
|
+
* <p>A custom message to include with the connection invitation.</p>
|
|
713
|
+
* @public
|
|
714
|
+
*/
|
|
715
|
+
Message: string | undefined;
|
|
716
|
+
/**
|
|
717
|
+
* <p>The name of the person sending the connection invitation.</p>
|
|
718
|
+
* @public
|
|
719
|
+
*/
|
|
720
|
+
Name: string | undefined;
|
|
721
|
+
/**
|
|
722
|
+
* <p>The identifier of the organization or partner to invite for connection.</p>
|
|
723
|
+
* @public
|
|
724
|
+
*/
|
|
725
|
+
ReceiverIdentifier: string | undefined;
|
|
726
|
+
}
|
|
727
|
+
/**
|
|
728
|
+
* @public
|
|
729
|
+
*/
|
|
730
|
+
export interface CreateConnectionInvitationResponse {
|
|
731
|
+
/**
|
|
732
|
+
* <p>The catalog identifier where the connection invitation was created.</p>
|
|
733
|
+
* @public
|
|
734
|
+
*/
|
|
735
|
+
Catalog: string | undefined;
|
|
736
|
+
/**
|
|
737
|
+
* <p>The unique identifier of the created connection invitation.</p>
|
|
738
|
+
* @public
|
|
739
|
+
*/
|
|
740
|
+
Id: string | undefined;
|
|
741
|
+
/**
|
|
742
|
+
* <p>The Amazon Resource Name (ARN) of the created connection invitation.</p>
|
|
743
|
+
* @public
|
|
744
|
+
*/
|
|
745
|
+
Arn: string | undefined;
|
|
746
|
+
/**
|
|
747
|
+
* <p>The identifier of the connection associated with this invitation.</p>
|
|
748
|
+
* @public
|
|
749
|
+
*/
|
|
750
|
+
ConnectionId?: string | undefined;
|
|
751
|
+
/**
|
|
752
|
+
* <p>The type of connection being requested in the invitation.</p>
|
|
753
|
+
* @public
|
|
754
|
+
*/
|
|
755
|
+
ConnectionType: ConnectionType | undefined;
|
|
756
|
+
/**
|
|
757
|
+
* <p>The timestamp when the connection invitation was created.</p>
|
|
758
|
+
* @public
|
|
759
|
+
*/
|
|
760
|
+
CreatedAt: Date | undefined;
|
|
761
|
+
/**
|
|
762
|
+
* <p>The timestamp when the connection invitation was last updated.</p>
|
|
763
|
+
* @public
|
|
764
|
+
*/
|
|
765
|
+
UpdatedAt: Date | undefined;
|
|
766
|
+
/**
|
|
767
|
+
* <p>The timestamp when the connection invitation will expire if not responded to.</p>
|
|
768
|
+
* @public
|
|
769
|
+
*/
|
|
770
|
+
ExpiresAt?: Date | undefined;
|
|
771
|
+
/**
|
|
772
|
+
* <p>The identifier of the organization or partner being invited.</p>
|
|
773
|
+
* @public
|
|
774
|
+
*/
|
|
775
|
+
OtherParticipantIdentifier: string | undefined;
|
|
776
|
+
/**
|
|
777
|
+
* <p>The type of participant (inviter or invitee) in the connection invitation.</p>
|
|
778
|
+
* @public
|
|
779
|
+
*/
|
|
780
|
+
ParticipantType: ParticipantType | undefined;
|
|
781
|
+
/**
|
|
782
|
+
* <p>The current status of the connection invitation (pending, accepted, rejected, etc.).</p>
|
|
783
|
+
* @public
|
|
784
|
+
*/
|
|
785
|
+
Status: InvitationStatus | undefined;
|
|
786
|
+
/**
|
|
787
|
+
* <p>The custom message included with the connection invitation.</p>
|
|
788
|
+
* @public
|
|
789
|
+
*/
|
|
790
|
+
InvitationMessage: string | undefined;
|
|
791
|
+
/**
|
|
792
|
+
* <p>The email address of the person who sent the connection invitation.</p>
|
|
793
|
+
* @public
|
|
794
|
+
*/
|
|
795
|
+
InviterEmail: string | undefined;
|
|
796
|
+
/**
|
|
797
|
+
* <p>The name of the person who sent the connection invitation.</p>
|
|
798
|
+
* @public
|
|
799
|
+
*/
|
|
800
|
+
InviterName: string | undefined;
|
|
801
|
+
}
|
|
802
|
+
/**
|
|
803
|
+
* @public
|
|
804
|
+
*/
|
|
805
|
+
export interface GetConnectionInvitationRequest {
|
|
806
|
+
/**
|
|
807
|
+
* <p>The catalog identifier where the connection invitation exists.</p>
|
|
808
|
+
* @public
|
|
809
|
+
*/
|
|
810
|
+
Catalog: string | undefined;
|
|
811
|
+
/**
|
|
812
|
+
* <p>The unique identifier of the connection invitation to retrieve.</p>
|
|
813
|
+
* @public
|
|
814
|
+
*/
|
|
815
|
+
Identifier: string | undefined;
|
|
816
|
+
}
|
|
817
|
+
/**
|
|
818
|
+
* @public
|
|
819
|
+
*/
|
|
820
|
+
export interface GetConnectionInvitationResponse {
|
|
821
|
+
/**
|
|
822
|
+
* <p>The catalog identifier where the connection invitation exists.</p>
|
|
823
|
+
* @public
|
|
824
|
+
*/
|
|
825
|
+
Catalog: string | undefined;
|
|
826
|
+
/**
|
|
827
|
+
* <p>The unique identifier of the connection invitation.</p>
|
|
828
|
+
* @public
|
|
829
|
+
*/
|
|
830
|
+
Id: string | undefined;
|
|
831
|
+
/**
|
|
832
|
+
* <p>The Amazon Resource Name (ARN) of the connection invitation.</p>
|
|
833
|
+
* @public
|
|
834
|
+
*/
|
|
835
|
+
Arn: string | undefined;
|
|
836
|
+
/**
|
|
837
|
+
* <p>The identifier of the connection associated with this invitation.</p>
|
|
838
|
+
* @public
|
|
839
|
+
*/
|
|
840
|
+
ConnectionId?: string | undefined;
|
|
841
|
+
/**
|
|
842
|
+
* <p>The type of connection being requested in the invitation.</p>
|
|
843
|
+
* @public
|
|
844
|
+
*/
|
|
845
|
+
ConnectionType: ConnectionType | undefined;
|
|
846
|
+
/**
|
|
847
|
+
* <p>The timestamp when the connection invitation was created.</p>
|
|
848
|
+
* @public
|
|
849
|
+
*/
|
|
850
|
+
CreatedAt: Date | undefined;
|
|
851
|
+
/**
|
|
852
|
+
* <p>The timestamp when the connection invitation was last updated.</p>
|
|
853
|
+
* @public
|
|
854
|
+
*/
|
|
855
|
+
UpdatedAt: Date | undefined;
|
|
856
|
+
/**
|
|
857
|
+
* <p>The timestamp when the connection invitation will expire.</p>
|
|
858
|
+
* @public
|
|
859
|
+
*/
|
|
860
|
+
ExpiresAt?: Date | undefined;
|
|
861
|
+
/**
|
|
862
|
+
* <p>The identifier of the other participant in the connection invitation.</p>
|
|
863
|
+
* @public
|
|
864
|
+
*/
|
|
865
|
+
OtherParticipantIdentifier: string | undefined;
|
|
866
|
+
/**
|
|
867
|
+
* <p>The type of participant (inviter or invitee) in the connection invitation.</p>
|
|
868
|
+
* @public
|
|
869
|
+
*/
|
|
870
|
+
ParticipantType: ParticipantType | undefined;
|
|
871
|
+
/**
|
|
872
|
+
* <p>The current status of the connection invitation.</p>
|
|
873
|
+
* @public
|
|
874
|
+
*/
|
|
875
|
+
Status: InvitationStatus | undefined;
|
|
876
|
+
/**
|
|
877
|
+
* <p>The custom message included with the connection invitation.</p>
|
|
878
|
+
* @public
|
|
879
|
+
*/
|
|
880
|
+
InvitationMessage: string | undefined;
|
|
881
|
+
/**
|
|
882
|
+
* <p>The email address of the person who sent the connection invitation.</p>
|
|
883
|
+
* @public
|
|
884
|
+
*/
|
|
885
|
+
InviterEmail: string | undefined;
|
|
886
|
+
/**
|
|
887
|
+
* <p>The name of the person who sent the connection invitation.</p>
|
|
888
|
+
* @public
|
|
889
|
+
*/
|
|
890
|
+
InviterName: string | undefined;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* @public
|
|
894
|
+
*/
|
|
895
|
+
export interface ListConnectionInvitationsRequest {
|
|
896
|
+
/**
|
|
897
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
898
|
+
* @public
|
|
899
|
+
*/
|
|
900
|
+
Catalog: string | undefined;
|
|
901
|
+
/**
|
|
902
|
+
* <p>The token for retrieving the next page of results in paginated responses.</p>
|
|
903
|
+
* @public
|
|
904
|
+
*/
|
|
905
|
+
NextToken?: string | undefined;
|
|
906
|
+
/**
|
|
907
|
+
* <p>Filter results by connection type (e.g., reseller, distributor, technology partner).</p>
|
|
908
|
+
* @public
|
|
909
|
+
*/
|
|
910
|
+
ConnectionType?: ConnectionType | undefined;
|
|
911
|
+
/**
|
|
912
|
+
* <p>The maximum number of connection invitations to return in a single response.</p>
|
|
913
|
+
* @public
|
|
914
|
+
*/
|
|
915
|
+
MaxResults?: number | undefined;
|
|
916
|
+
/**
|
|
917
|
+
* <p>Filter results by specific participant identifiers.</p>
|
|
918
|
+
* @public
|
|
919
|
+
*/
|
|
920
|
+
OtherParticipantIdentifiers?: string[] | undefined;
|
|
921
|
+
/**
|
|
922
|
+
* <p>Filter results by participant type (inviter or invitee).</p>
|
|
923
|
+
* @public
|
|
924
|
+
*/
|
|
925
|
+
ParticipantType?: ParticipantType | undefined;
|
|
926
|
+
/**
|
|
927
|
+
* <p>Filter results by invitation status (pending, accepted, rejected, canceled, expired).</p>
|
|
928
|
+
* @public
|
|
929
|
+
*/
|
|
930
|
+
Status?: InvitationStatus | undefined;
|
|
931
|
+
}
|
|
932
|
+
/**
|
|
933
|
+
* <p>A summary view of a connection invitation containing key information without full details.</p>
|
|
934
|
+
* @public
|
|
935
|
+
*/
|
|
936
|
+
export interface ConnectionInvitationSummary {
|
|
937
|
+
/**
|
|
938
|
+
* <p>The catalog identifier where the connection invitation exists.</p>
|
|
939
|
+
* @public
|
|
940
|
+
*/
|
|
941
|
+
Catalog: string | undefined;
|
|
942
|
+
/**
|
|
943
|
+
* <p>The unique identifier of the connection invitation.</p>
|
|
944
|
+
* @public
|
|
945
|
+
*/
|
|
946
|
+
Id: string | undefined;
|
|
947
|
+
/**
|
|
948
|
+
* <p>The Amazon Resource Name (ARN) of the connection invitation.</p>
|
|
949
|
+
* @public
|
|
950
|
+
*/
|
|
951
|
+
Arn: string | undefined;
|
|
952
|
+
/**
|
|
953
|
+
* <p>The identifier of the connection associated with this invitation.</p>
|
|
954
|
+
* @public
|
|
955
|
+
*/
|
|
956
|
+
ConnectionId?: string | undefined;
|
|
957
|
+
/**
|
|
958
|
+
* <p>The type of connection being requested in the invitation.</p>
|
|
959
|
+
* @public
|
|
960
|
+
*/
|
|
961
|
+
ConnectionType: ConnectionType | undefined;
|
|
962
|
+
/**
|
|
963
|
+
* <p>The timestamp when the connection invitation was created.</p>
|
|
964
|
+
* @public
|
|
965
|
+
*/
|
|
966
|
+
CreatedAt: Date | undefined;
|
|
967
|
+
/**
|
|
968
|
+
* <p>The timestamp when the connection invitation was last updated.</p>
|
|
969
|
+
* @public
|
|
970
|
+
*/
|
|
971
|
+
UpdatedAt: Date | undefined;
|
|
972
|
+
/**
|
|
973
|
+
* <p>The timestamp when the connection invitation will expire.</p>
|
|
974
|
+
* @public
|
|
975
|
+
*/
|
|
976
|
+
ExpiresAt?: Date | undefined;
|
|
977
|
+
/**
|
|
978
|
+
* <p>The identifier of the other participant in the connection invitation.</p>
|
|
979
|
+
* @public
|
|
980
|
+
*/
|
|
981
|
+
OtherParticipantIdentifier: string | undefined;
|
|
982
|
+
/**
|
|
983
|
+
* <p>The type of participant (inviter or invitee) in the connection invitation.</p>
|
|
984
|
+
* @public
|
|
985
|
+
*/
|
|
986
|
+
ParticipantType: ParticipantType | undefined;
|
|
987
|
+
/**
|
|
988
|
+
* <p>The current status of the connection invitation.</p>
|
|
989
|
+
* @public
|
|
990
|
+
*/
|
|
991
|
+
Status: InvitationStatus | undefined;
|
|
992
|
+
}
|
|
993
|
+
/**
|
|
994
|
+
* @public
|
|
995
|
+
*/
|
|
996
|
+
export interface ListConnectionInvitationsResponse {
|
|
997
|
+
/**
|
|
998
|
+
* <p>A list of connection invitation summaries matching the specified criteria.</p>
|
|
999
|
+
* @public
|
|
1000
|
+
*/
|
|
1001
|
+
ConnectionInvitationSummaries: ConnectionInvitationSummary[] | undefined;
|
|
1002
|
+
/**
|
|
1003
|
+
* <p>The token for retrieving the next page of results if more results are available.</p>
|
|
1004
|
+
* @public
|
|
1005
|
+
*/
|
|
1006
|
+
NextToken?: string | undefined;
|
|
1007
|
+
}
|
|
1008
|
+
/**
|
|
1009
|
+
* @public
|
|
1010
|
+
*/
|
|
1011
|
+
export interface RejectConnectionInvitationRequest {
|
|
1012
|
+
/**
|
|
1013
|
+
* <p>The catalog identifier where the connection invitation exists.</p>
|
|
1014
|
+
* @public
|
|
1015
|
+
*/
|
|
1016
|
+
Catalog: string | undefined;
|
|
1017
|
+
/**
|
|
1018
|
+
* <p>The unique identifier of the connection invitation to reject.</p>
|
|
1019
|
+
* @public
|
|
1020
|
+
*/
|
|
1021
|
+
Identifier: string | undefined;
|
|
1022
|
+
/**
|
|
1023
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
1024
|
+
* @public
|
|
1025
|
+
*/
|
|
1026
|
+
ClientToken?: string | undefined;
|
|
1027
|
+
/**
|
|
1028
|
+
* <p>The reason for rejecting the connection invitation.</p>
|
|
1029
|
+
* @public
|
|
1030
|
+
*/
|
|
1031
|
+
Reason?: string | undefined;
|
|
1032
|
+
}
|
|
1033
|
+
/**
|
|
1034
|
+
* @public
|
|
1035
|
+
*/
|
|
1036
|
+
export interface RejectConnectionInvitationResponse {
|
|
1037
|
+
/**
|
|
1038
|
+
* <p>The catalog identifier where the connection invitation was rejected.</p>
|
|
1039
|
+
* @public
|
|
1040
|
+
*/
|
|
1041
|
+
Catalog: string | undefined;
|
|
1042
|
+
/**
|
|
1043
|
+
* <p>The unique identifier of the rejected connection invitation.</p>
|
|
1044
|
+
* @public
|
|
1045
|
+
*/
|
|
1046
|
+
Id: string | undefined;
|
|
1047
|
+
/**
|
|
1048
|
+
* <p>The Amazon Resource Name (ARN) of the rejected connection invitation.</p>
|
|
1049
|
+
* @public
|
|
1050
|
+
*/
|
|
1051
|
+
Arn: string | undefined;
|
|
1052
|
+
/**
|
|
1053
|
+
* <p>The identifier of the connection associated with the rejected invitation.</p>
|
|
1054
|
+
* @public
|
|
1055
|
+
*/
|
|
1056
|
+
ConnectionId?: string | undefined;
|
|
1057
|
+
/**
|
|
1058
|
+
* <p>The type of connection that was being invited for.</p>
|
|
1059
|
+
* @public
|
|
1060
|
+
*/
|
|
1061
|
+
ConnectionType: ConnectionType | undefined;
|
|
1062
|
+
/**
|
|
1063
|
+
* <p>The timestamp when the connection invitation was originally created.</p>
|
|
1064
|
+
* @public
|
|
1065
|
+
*/
|
|
1066
|
+
CreatedAt: Date | undefined;
|
|
1067
|
+
/**
|
|
1068
|
+
* <p>The timestamp when the connection invitation was last updated (rejected).</p>
|
|
1069
|
+
* @public
|
|
1070
|
+
*/
|
|
1071
|
+
UpdatedAt: Date | undefined;
|
|
1072
|
+
/**
|
|
1073
|
+
* <p>The timestamp when the connection invitation would have expired.</p>
|
|
1074
|
+
* @public
|
|
1075
|
+
*/
|
|
1076
|
+
ExpiresAt?: Date | undefined;
|
|
1077
|
+
/**
|
|
1078
|
+
* <p>The identifier of the other participant who sent the invitation.</p>
|
|
1079
|
+
* @public
|
|
1080
|
+
*/
|
|
1081
|
+
OtherParticipantIdentifier: string | undefined;
|
|
1082
|
+
/**
|
|
1083
|
+
* <p>The type of participant (inviter or invitee) in the connection invitation.</p>
|
|
1084
|
+
* @public
|
|
1085
|
+
*/
|
|
1086
|
+
ParticipantType: ParticipantType | undefined;
|
|
1087
|
+
/**
|
|
1088
|
+
* <p>The current status of the connection invitation (rejected).</p>
|
|
1089
|
+
* @public
|
|
1090
|
+
*/
|
|
1091
|
+
Status: InvitationStatus | undefined;
|
|
1092
|
+
/**
|
|
1093
|
+
* <p>The message that was included with the original connection invitation.</p>
|
|
1094
|
+
* @public
|
|
1095
|
+
*/
|
|
1096
|
+
InvitationMessage: string | undefined;
|
|
1097
|
+
/**
|
|
1098
|
+
* <p>The email address of the person who sent the connection invitation.</p>
|
|
1099
|
+
* @public
|
|
1100
|
+
*/
|
|
1101
|
+
InviterEmail: string | undefined;
|
|
1102
|
+
/**
|
|
1103
|
+
* <p>The name of the person who sent the connection invitation.</p>
|
|
1104
|
+
* @public
|
|
1105
|
+
*/
|
|
1106
|
+
InviterName: string | undefined;
|
|
1107
|
+
}
|
|
1108
|
+
/**
|
|
1109
|
+
* @public
|
|
1110
|
+
*/
|
|
1111
|
+
export interface GetConnectionPreferencesRequest {
|
|
1112
|
+
/**
|
|
1113
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1114
|
+
* @public
|
|
1115
|
+
*/
|
|
1116
|
+
Catalog: string | undefined;
|
|
1117
|
+
}
|
|
1118
|
+
/**
|
|
1119
|
+
* @public
|
|
1120
|
+
*/
|
|
1121
|
+
export interface GetConnectionPreferencesResponse {
|
|
1122
|
+
/**
|
|
1123
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1124
|
+
* @public
|
|
1125
|
+
*/
|
|
1126
|
+
Catalog: string | undefined;
|
|
1127
|
+
/**
|
|
1128
|
+
* <p>The Amazon Resource Name (ARN) of the connection preferences.</p>
|
|
1129
|
+
* @public
|
|
1130
|
+
*/
|
|
1131
|
+
Arn: string | undefined;
|
|
1132
|
+
/**
|
|
1133
|
+
* <p>The access type setting for connections (e.g., open, restricted, invitation-only).</p>
|
|
1134
|
+
* @public
|
|
1135
|
+
*/
|
|
1136
|
+
AccessType: AccessType | undefined;
|
|
1137
|
+
/**
|
|
1138
|
+
* <p>A list of participant IDs that are excluded from connection requests or interactions.</p>
|
|
1139
|
+
* @public
|
|
1140
|
+
*/
|
|
1141
|
+
ExcludedParticipantIds?: string[] | undefined;
|
|
1142
|
+
/**
|
|
1143
|
+
* <p>The timestamp when the connection preferences were last updated.</p>
|
|
1144
|
+
* @public
|
|
1145
|
+
*/
|
|
1146
|
+
UpdatedAt: Date | undefined;
|
|
1147
|
+
/**
|
|
1148
|
+
* <p>The revision number of the connection preferences for optimistic locking.</p>
|
|
1149
|
+
* @public
|
|
1150
|
+
*/
|
|
1151
|
+
Revision: number | undefined;
|
|
1152
|
+
}
|
|
1153
|
+
/**
|
|
1154
|
+
* @public
|
|
1155
|
+
*/
|
|
1156
|
+
export interface UpdateConnectionPreferencesRequest {
|
|
1157
|
+
/**
|
|
1158
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1159
|
+
* @public
|
|
1160
|
+
*/
|
|
1161
|
+
Catalog: string | undefined;
|
|
1162
|
+
/**
|
|
1163
|
+
* <p>The revision number of the connection preferences for optimistic locking.</p>
|
|
1164
|
+
* @public
|
|
1165
|
+
*/
|
|
1166
|
+
Revision: number | undefined;
|
|
1167
|
+
/**
|
|
1168
|
+
* <p>The access type setting for connections (e.g., open, restricted, invitation-only).</p>
|
|
1169
|
+
* @public
|
|
1170
|
+
*/
|
|
1171
|
+
AccessType: AccessType | undefined;
|
|
1172
|
+
/**
|
|
1173
|
+
* <p>The updated list of participant identifiers to exclude from connections.</p>
|
|
1174
|
+
* @public
|
|
1175
|
+
*/
|
|
1176
|
+
ExcludedParticipantIdentifiers?: string[] | undefined;
|
|
1177
|
+
}
|
|
1178
|
+
/**
|
|
1179
|
+
* @public
|
|
1180
|
+
*/
|
|
1181
|
+
export interface UpdateConnectionPreferencesResponse {
|
|
1182
|
+
/**
|
|
1183
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1184
|
+
* @public
|
|
1185
|
+
*/
|
|
1186
|
+
Catalog: string | undefined;
|
|
1187
|
+
/**
|
|
1188
|
+
* <p>The Amazon Resource Name (ARN) of the updated connection preferences.</p>
|
|
1189
|
+
* @public
|
|
1190
|
+
*/
|
|
1191
|
+
Arn: string | undefined;
|
|
1192
|
+
/**
|
|
1193
|
+
* <p>The updated access type setting for connections.</p>
|
|
1194
|
+
* @public
|
|
1195
|
+
*/
|
|
1196
|
+
AccessType: AccessType | undefined;
|
|
1197
|
+
/**
|
|
1198
|
+
* <p>A list of participant IDs that are excluded from connection requests or interactions.</p>
|
|
1199
|
+
* @public
|
|
1200
|
+
*/
|
|
1201
|
+
ExcludedParticipantIds?: string[] | undefined;
|
|
1202
|
+
/**
|
|
1203
|
+
* <p>The timestamp when the connection preferences were last updated.</p>
|
|
1204
|
+
* @public
|
|
1205
|
+
*/
|
|
1206
|
+
UpdatedAt: Date | undefined;
|
|
1207
|
+
/**
|
|
1208
|
+
* <p>The updated revision number of the connection preferences.</p>
|
|
1209
|
+
* @public
|
|
1210
|
+
*/
|
|
1211
|
+
Revision: number | undefined;
|
|
1212
|
+
}
|
|
1213
|
+
/**
|
|
1214
|
+
* @public
|
|
1215
|
+
*/
|
|
1216
|
+
export interface GetConnectionRequest {
|
|
1217
|
+
/**
|
|
1218
|
+
* <p>The catalog identifier where the connection exists.</p>
|
|
1219
|
+
* @public
|
|
1220
|
+
*/
|
|
1221
|
+
Catalog: string | undefined;
|
|
1222
|
+
/**
|
|
1223
|
+
* <p>The unique identifier of the connection to retrieve.</p>
|
|
1224
|
+
* @public
|
|
1225
|
+
*/
|
|
1226
|
+
Identifier: string | undefined;
|
|
1227
|
+
}
|
|
1228
|
+
/**
|
|
1229
|
+
* @public
|
|
1230
|
+
*/
|
|
1231
|
+
export interface GetConnectionResponse {
|
|
1232
|
+
/**
|
|
1233
|
+
* <p>The catalog identifier where the connection exists.</p>
|
|
1234
|
+
* @public
|
|
1235
|
+
*/
|
|
1236
|
+
Catalog: string | undefined;
|
|
1237
|
+
/**
|
|
1238
|
+
* <p>The unique identifier of the connection.</p>
|
|
1239
|
+
* @public
|
|
1240
|
+
*/
|
|
1241
|
+
Id: string | undefined;
|
|
1242
|
+
/**
|
|
1243
|
+
* <p>The Amazon Resource Name (ARN) of the connection.</p>
|
|
1244
|
+
* @public
|
|
1245
|
+
*/
|
|
1246
|
+
Arn: string | undefined;
|
|
1247
|
+
/**
|
|
1248
|
+
* <p>The AWS account ID of the other participant in the connection.</p>
|
|
1249
|
+
* @public
|
|
1250
|
+
*/
|
|
1251
|
+
OtherParticipantAccountId: string | undefined;
|
|
1252
|
+
/**
|
|
1253
|
+
* <p>The timestamp when the connection was last updated.</p>
|
|
1254
|
+
* @public
|
|
1255
|
+
*/
|
|
1256
|
+
UpdatedAt: Date | undefined;
|
|
1257
|
+
/**
|
|
1258
|
+
* <p>The list of connection types active between the partners.</p>
|
|
1259
|
+
* @public
|
|
1260
|
+
*/
|
|
1261
|
+
ConnectionTypes: Partial<Record<ConnectionType, ConnectionTypeDetail>> | undefined;
|
|
1262
|
+
}
|
|
1263
|
+
/**
|
|
1264
|
+
* @public
|
|
1265
|
+
*/
|
|
1266
|
+
export interface ListConnectionsRequest {
|
|
1267
|
+
/**
|
|
1268
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1269
|
+
* @public
|
|
1270
|
+
*/
|
|
1271
|
+
Catalog: string | undefined;
|
|
1272
|
+
/**
|
|
1273
|
+
* <p>The token for retrieving the next page of results in paginated responses.</p>
|
|
1274
|
+
* @public
|
|
1275
|
+
*/
|
|
1276
|
+
NextToken?: string | undefined;
|
|
1277
|
+
/**
|
|
1278
|
+
* <p>Filter results by connection type (e.g., reseller, distributor, technology partner).</p>
|
|
1279
|
+
* @public
|
|
1280
|
+
*/
|
|
1281
|
+
ConnectionType?: string | undefined;
|
|
1282
|
+
/**
|
|
1283
|
+
* <p>The maximum number of connections to return in a single response.</p>
|
|
1284
|
+
* @public
|
|
1285
|
+
*/
|
|
1286
|
+
MaxResults?: number | undefined;
|
|
1287
|
+
/**
|
|
1288
|
+
* <p>Filter results by specific participant identifiers.</p>
|
|
1289
|
+
* @public
|
|
1290
|
+
*/
|
|
1291
|
+
OtherParticipantIdentifiers?: string[] | undefined;
|
|
1292
|
+
}
|
|
1293
|
+
/**
|
|
1294
|
+
* <p>Summary information about a specific connection type between partners.</p>
|
|
1295
|
+
* @public
|
|
1296
|
+
*/
|
|
1297
|
+
export interface ConnectionTypeSummary {
|
|
1298
|
+
/**
|
|
1299
|
+
* <p>The current status of this connection type (active, canceled, etc.).</p>
|
|
1300
|
+
* @public
|
|
1301
|
+
*/
|
|
1302
|
+
Status: ConnectionTypeStatus | undefined;
|
|
1303
|
+
/**
|
|
1304
|
+
* <p>Information about the other participant in this connection type.</p>
|
|
1305
|
+
* @public
|
|
1306
|
+
*/
|
|
1307
|
+
OtherParticipant: Participant | undefined;
|
|
1308
|
+
}
|
|
1309
|
+
/**
|
|
1310
|
+
* <p>A summary view of an active connection between partners containing key information.</p>
|
|
1311
|
+
* @public
|
|
1312
|
+
*/
|
|
1313
|
+
export interface ConnectionSummary {
|
|
1314
|
+
/**
|
|
1315
|
+
* <p>The catalog identifier where the connection exists.</p>
|
|
1316
|
+
* @public
|
|
1317
|
+
*/
|
|
1318
|
+
Catalog: string | undefined;
|
|
1319
|
+
/**
|
|
1320
|
+
* <p>The unique identifier of the connection.</p>
|
|
1321
|
+
* @public
|
|
1322
|
+
*/
|
|
1323
|
+
Id: string | undefined;
|
|
1324
|
+
/**
|
|
1325
|
+
* <p>The Amazon Resource Name (ARN) of the connection.</p>
|
|
1326
|
+
* @public
|
|
1327
|
+
*/
|
|
1328
|
+
Arn: string | undefined;
|
|
1329
|
+
/**
|
|
1330
|
+
* <p>The AWS account ID of the other participant in the connection.</p>
|
|
1331
|
+
* @public
|
|
1332
|
+
*/
|
|
1333
|
+
OtherParticipantAccountId: string | undefined;
|
|
1334
|
+
/**
|
|
1335
|
+
* <p>The timestamp when the connection was last updated.</p>
|
|
1336
|
+
* @public
|
|
1337
|
+
*/
|
|
1338
|
+
UpdatedAt: Date | undefined;
|
|
1339
|
+
/**
|
|
1340
|
+
* <p>A map of connection types and their summary information for this connection.</p>
|
|
1341
|
+
* @public
|
|
1342
|
+
*/
|
|
1343
|
+
ConnectionTypes: Partial<Record<ConnectionType, ConnectionTypeSummary>> | undefined;
|
|
1344
|
+
}
|
|
1345
|
+
/**
|
|
1346
|
+
* @public
|
|
1347
|
+
*/
|
|
1348
|
+
export interface ListConnectionsResponse {
|
|
1349
|
+
/**
|
|
1350
|
+
* <p>A list of connection summaries matching the specified criteria.</p>
|
|
1351
|
+
* @public
|
|
1352
|
+
*/
|
|
1353
|
+
ConnectionSummaries: ConnectionSummary[] | undefined;
|
|
1354
|
+
/**
|
|
1355
|
+
* <p>The token for retrieving the next page of results if more results are available.</p>
|
|
1356
|
+
* @public
|
|
1357
|
+
*/
|
|
1358
|
+
NextToken?: string | undefined;
|
|
1359
|
+
}
|
|
1360
|
+
/**
|
|
1361
|
+
* <p>A key-value pair used to associate metadata with AWS Partner Central Account resources.</p>
|
|
1362
|
+
* @public
|
|
1363
|
+
*/
|
|
1364
|
+
export interface Tag {
|
|
1365
|
+
/**
|
|
1366
|
+
* <p>The key name of the tag. Tag keys are case-sensitive.</p>
|
|
1367
|
+
* @public
|
|
1368
|
+
*/
|
|
1369
|
+
Key: string | undefined;
|
|
1370
|
+
/**
|
|
1371
|
+
* <p>The value associated with the tag key. Tag values are case-sensitive.</p>
|
|
1372
|
+
* @public
|
|
1373
|
+
*/
|
|
1374
|
+
Value: string | undefined;
|
|
1375
|
+
}
|
|
1376
|
+
/**
|
|
1377
|
+
* @public
|
|
1378
|
+
*/
|
|
1379
|
+
export interface CreatePartnerRequest {
|
|
1380
|
+
/**
|
|
1381
|
+
* <p>The catalog identifier where the partner account will be created.</p>
|
|
1382
|
+
* @public
|
|
1383
|
+
*/
|
|
1384
|
+
Catalog: string | undefined;
|
|
1385
|
+
/**
|
|
1386
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
1387
|
+
* @public
|
|
1388
|
+
*/
|
|
1389
|
+
ClientToken?: string | undefined;
|
|
1390
|
+
/**
|
|
1391
|
+
* <p>The legal name of the organization becoming a partner.</p>
|
|
1392
|
+
* @public
|
|
1393
|
+
*/
|
|
1394
|
+
LegalName: string | undefined;
|
|
1395
|
+
/**
|
|
1396
|
+
* <p>The primary type of solution or service the partner provides (e.g., consulting, software, managed services).</p>
|
|
1397
|
+
* @public
|
|
1398
|
+
*/
|
|
1399
|
+
PrimarySolutionType: PrimarySolutionType | undefined;
|
|
1400
|
+
/**
|
|
1401
|
+
* <p>The primary contact person for alliance and partnership matters.</p>
|
|
1402
|
+
* @public
|
|
1403
|
+
*/
|
|
1404
|
+
AllianceLeadContact: AllianceLeadContact | undefined;
|
|
1405
|
+
/**
|
|
1406
|
+
* <p>The verification code sent to the alliance lead contact's email to confirm account creation.</p>
|
|
1407
|
+
* @public
|
|
1408
|
+
*/
|
|
1409
|
+
EmailVerificationCode: string | undefined;
|
|
1410
|
+
/**
|
|
1411
|
+
* <p>A list of tags to associate with the partner account for organization and billing purposes.</p>
|
|
1412
|
+
* @public
|
|
1413
|
+
*/
|
|
1414
|
+
Tags?: Tag[] | undefined;
|
|
1415
|
+
}
|
|
1416
|
+
/**
|
|
1417
|
+
* <p>Represents a verified domain associated with a partner account.</p>
|
|
1418
|
+
* @public
|
|
1419
|
+
*/
|
|
1420
|
+
export interface PartnerDomain {
|
|
1421
|
+
/**
|
|
1422
|
+
* <p>The domain name that has been verified for the partner account.</p>
|
|
1423
|
+
* @public
|
|
1424
|
+
*/
|
|
1425
|
+
DomainName: string | undefined;
|
|
1426
|
+
/**
|
|
1427
|
+
* <p>The timestamp when the domain was registered and verified for the partner account.</p>
|
|
1428
|
+
* @public
|
|
1429
|
+
*/
|
|
1430
|
+
RegisteredAt: Date | undefined;
|
|
1431
|
+
}
|
|
1432
|
+
/**
|
|
1433
|
+
* <p>Contains comprehensive profile information for a partner including public-facing details.</p>
|
|
1434
|
+
* @public
|
|
1435
|
+
*/
|
|
1436
|
+
export interface PartnerProfile {
|
|
1437
|
+
/**
|
|
1438
|
+
* <p>The public display name for the partner organization.</p>
|
|
1439
|
+
* @public
|
|
1440
|
+
*/
|
|
1441
|
+
DisplayName: string | undefined;
|
|
1442
|
+
/**
|
|
1443
|
+
* <p>A description of the partner's business, services, and capabilities.</p>
|
|
1444
|
+
* @public
|
|
1445
|
+
*/
|
|
1446
|
+
Description: string | undefined;
|
|
1447
|
+
/**
|
|
1448
|
+
* <p>The partner's primary website URL.</p>
|
|
1449
|
+
* @public
|
|
1450
|
+
*/
|
|
1451
|
+
WebsiteUrl: string | undefined;
|
|
1452
|
+
/**
|
|
1453
|
+
* <p>The URL to the partner's logo image.</p>
|
|
1454
|
+
* @public
|
|
1455
|
+
*/
|
|
1456
|
+
LogoUrl: string | undefined;
|
|
1457
|
+
/**
|
|
1458
|
+
* <p>The primary type of solution or service the partner provides.</p>
|
|
1459
|
+
* @public
|
|
1460
|
+
*/
|
|
1461
|
+
PrimarySolutionType: PrimarySolutionType | undefined;
|
|
1462
|
+
/**
|
|
1463
|
+
* <p>The industry segments or verticals that the partner serves.</p>
|
|
1464
|
+
* @public
|
|
1465
|
+
*/
|
|
1466
|
+
IndustrySegments: IndustrySegment[] | undefined;
|
|
1467
|
+
/**
|
|
1468
|
+
* <p>The source locale used for automatic translation of profile content.</p>
|
|
1469
|
+
* @public
|
|
1470
|
+
*/
|
|
1471
|
+
TranslationSourceLocale: string | undefined;
|
|
1472
|
+
/**
|
|
1473
|
+
* <p>A list of localized content versions for different languages and regions.</p>
|
|
1474
|
+
* @public
|
|
1475
|
+
*/
|
|
1476
|
+
LocalizedContents?: LocalizedContent[] | undefined;
|
|
1477
|
+
/**
|
|
1478
|
+
* <p>The unique identifier of the partner profile.</p>
|
|
1479
|
+
* @public
|
|
1480
|
+
*/
|
|
1481
|
+
ProfileId?: string | undefined;
|
|
1482
|
+
}
|
|
1483
|
+
/**
|
|
1484
|
+
* @public
|
|
1485
|
+
*/
|
|
1486
|
+
export interface CreatePartnerResponse {
|
|
1487
|
+
/**
|
|
1488
|
+
* <p>The catalog identifier where the partner account was created.</p>
|
|
1489
|
+
* @public
|
|
1490
|
+
*/
|
|
1491
|
+
Catalog: string | undefined;
|
|
1492
|
+
/**
|
|
1493
|
+
* <p>The Amazon Resource Name (ARN) of the created partner account.</p>
|
|
1494
|
+
* @public
|
|
1495
|
+
*/
|
|
1496
|
+
Arn: string | undefined;
|
|
1497
|
+
/**
|
|
1498
|
+
* <p>The unique identifier of the created partner account.</p>
|
|
1499
|
+
* @public
|
|
1500
|
+
*/
|
|
1501
|
+
Id: string | undefined;
|
|
1502
|
+
/**
|
|
1503
|
+
* <p>The legal name of the partner organization.</p>
|
|
1504
|
+
* @public
|
|
1505
|
+
*/
|
|
1506
|
+
LegalName: string | undefined;
|
|
1507
|
+
/**
|
|
1508
|
+
* <p>The timestamp when the partner account was created.</p>
|
|
1509
|
+
* @public
|
|
1510
|
+
*/
|
|
1511
|
+
CreatedAt: Date | undefined;
|
|
1512
|
+
/**
|
|
1513
|
+
* <p>The partner profile information including display name, description, and other public details.</p>
|
|
1514
|
+
* @public
|
|
1515
|
+
*/
|
|
1516
|
+
Profile: PartnerProfile | undefined;
|
|
1517
|
+
/**
|
|
1518
|
+
* <p>The list of verified email domains associated with AWS training and certification credentials for the partner organization.</p>
|
|
1519
|
+
* @public
|
|
1520
|
+
*/
|
|
1521
|
+
AwsTrainingCertificationEmailDomains?: PartnerDomain[] | undefined;
|
|
1522
|
+
/**
|
|
1523
|
+
* <p>The alliance lead contact information for the partner account.</p>
|
|
1524
|
+
* @public
|
|
1525
|
+
*/
|
|
1526
|
+
AllianceLeadContact: AllianceLeadContact | undefined;
|
|
1527
|
+
}
|
|
1528
|
+
/**
|
|
1529
|
+
* @public
|
|
1530
|
+
*/
|
|
1531
|
+
export interface DisassociateAwsTrainingCertificationEmailDomainRequest {
|
|
1532
|
+
/**
|
|
1533
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1534
|
+
* @public
|
|
1535
|
+
*/
|
|
1536
|
+
Catalog: string | undefined;
|
|
1537
|
+
/**
|
|
1538
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1539
|
+
* @public
|
|
1540
|
+
*/
|
|
1541
|
+
Identifier: string | undefined;
|
|
1542
|
+
/**
|
|
1543
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
1544
|
+
* @public
|
|
1545
|
+
*/
|
|
1546
|
+
ClientToken?: string | undefined;
|
|
1547
|
+
/**
|
|
1548
|
+
* <p>The domain name to disassociate from AWS training and certification.</p>
|
|
1549
|
+
* @public
|
|
1550
|
+
*/
|
|
1551
|
+
DomainName: string | undefined;
|
|
1552
|
+
}
|
|
1553
|
+
/**
|
|
1554
|
+
* @public
|
|
1555
|
+
*/
|
|
1556
|
+
export interface DisassociateAwsTrainingCertificationEmailDomainResponse {
|
|
1557
|
+
}
|
|
1558
|
+
/**
|
|
1559
|
+
* @public
|
|
1560
|
+
*/
|
|
1561
|
+
export interface GetAllianceLeadContactRequest {
|
|
1562
|
+
/**
|
|
1563
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1564
|
+
* @public
|
|
1565
|
+
*/
|
|
1566
|
+
Catalog: string | undefined;
|
|
1567
|
+
/**
|
|
1568
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1569
|
+
* @public
|
|
1570
|
+
*/
|
|
1571
|
+
Identifier: string | undefined;
|
|
1572
|
+
}
|
|
1573
|
+
/**
|
|
1574
|
+
* @public
|
|
1575
|
+
*/
|
|
1576
|
+
export interface GetAllianceLeadContactResponse {
|
|
1577
|
+
/**
|
|
1578
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1579
|
+
* @public
|
|
1580
|
+
*/
|
|
1581
|
+
Catalog: string | undefined;
|
|
1582
|
+
/**
|
|
1583
|
+
* <p>The Amazon Resource Name (ARN) of the partner account.</p>
|
|
1584
|
+
* @public
|
|
1585
|
+
*/
|
|
1586
|
+
Arn: string | undefined;
|
|
1587
|
+
/**
|
|
1588
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1589
|
+
* @public
|
|
1590
|
+
*/
|
|
1591
|
+
Id: string | undefined;
|
|
1592
|
+
/**
|
|
1593
|
+
* <p>The alliance lead contact information including name, email, and business title.</p>
|
|
1594
|
+
* @public
|
|
1595
|
+
*/
|
|
1596
|
+
AllianceLeadContact: AllianceLeadContact | undefined;
|
|
1597
|
+
}
|
|
1598
|
+
/**
|
|
1599
|
+
* @public
|
|
1600
|
+
*/
|
|
1601
|
+
export interface GetPartnerRequest {
|
|
1602
|
+
/**
|
|
1603
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1604
|
+
* @public
|
|
1605
|
+
*/
|
|
1606
|
+
Catalog: string | undefined;
|
|
1607
|
+
/**
|
|
1608
|
+
* <p>The unique identifier of the partner account to retrieve.</p>
|
|
1609
|
+
* @public
|
|
1610
|
+
*/
|
|
1611
|
+
Identifier: string | undefined;
|
|
1612
|
+
}
|
|
1613
|
+
/**
|
|
1614
|
+
* @public
|
|
1615
|
+
*/
|
|
1616
|
+
export interface GetPartnerResponse {
|
|
1617
|
+
/**
|
|
1618
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1619
|
+
* @public
|
|
1620
|
+
*/
|
|
1621
|
+
Catalog: string | undefined;
|
|
1622
|
+
/**
|
|
1623
|
+
* <p>The Amazon Resource Name (ARN) of the partner account.</p>
|
|
1624
|
+
* @public
|
|
1625
|
+
*/
|
|
1626
|
+
Arn: string | undefined;
|
|
1627
|
+
/**
|
|
1628
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1629
|
+
* @public
|
|
1630
|
+
*/
|
|
1631
|
+
Id: string | undefined;
|
|
1632
|
+
/**
|
|
1633
|
+
* <p>The legal name of the partner organization.</p>
|
|
1634
|
+
* @public
|
|
1635
|
+
*/
|
|
1636
|
+
LegalName: string | undefined;
|
|
1637
|
+
/**
|
|
1638
|
+
* <p>The timestamp when the partner account was created.</p>
|
|
1639
|
+
* @public
|
|
1640
|
+
*/
|
|
1641
|
+
CreatedAt: Date | undefined;
|
|
1642
|
+
/**
|
|
1643
|
+
* <p>The partner profile information including display name, description, and other public details.</p>
|
|
1644
|
+
* @public
|
|
1645
|
+
*/
|
|
1646
|
+
Profile: PartnerProfile | undefined;
|
|
1647
|
+
/**
|
|
1648
|
+
* <p>The list of verified email domains associated with AWS training and certification credentials for the partner organization.</p>
|
|
1649
|
+
* @public
|
|
1650
|
+
*/
|
|
1651
|
+
AwsTrainingCertificationEmailDomains?: PartnerDomain[] | undefined;
|
|
1652
|
+
}
|
|
1653
|
+
/**
|
|
1654
|
+
* @public
|
|
1655
|
+
*/
|
|
1656
|
+
export interface GetProfileUpdateTaskRequest {
|
|
1657
|
+
/**
|
|
1658
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1659
|
+
* @public
|
|
1660
|
+
*/
|
|
1661
|
+
Catalog: string | undefined;
|
|
1662
|
+
/**
|
|
1663
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1664
|
+
* @public
|
|
1665
|
+
*/
|
|
1666
|
+
Identifier: string | undefined;
|
|
1667
|
+
}
|
|
1668
|
+
/**
|
|
1669
|
+
* @public
|
|
1670
|
+
*/
|
|
1671
|
+
export interface GetProfileUpdateTaskResponse {
|
|
1672
|
+
/**
|
|
1673
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1674
|
+
* @public
|
|
1675
|
+
*/
|
|
1676
|
+
Catalog: string | undefined;
|
|
1677
|
+
/**
|
|
1678
|
+
* <p>The Amazon Resource Name (ARN) of the profile update task.</p>
|
|
1679
|
+
* @public
|
|
1680
|
+
*/
|
|
1681
|
+
Arn: string | undefined;
|
|
1682
|
+
/**
|
|
1683
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1684
|
+
* @public
|
|
1685
|
+
*/
|
|
1686
|
+
Id: string | undefined;
|
|
1687
|
+
/**
|
|
1688
|
+
* <p>The unique identifier of the profile update task.</p>
|
|
1689
|
+
* @public
|
|
1690
|
+
*/
|
|
1691
|
+
TaskId: string | undefined;
|
|
1692
|
+
/**
|
|
1693
|
+
* <p>The details of the profile update task including what changes are being made.</p>
|
|
1694
|
+
* @public
|
|
1695
|
+
*/
|
|
1696
|
+
TaskDetails: TaskDetails | undefined;
|
|
1697
|
+
/**
|
|
1698
|
+
* <p>The timestamp when the profile update task was started.</p>
|
|
1699
|
+
* @public
|
|
1700
|
+
*/
|
|
1701
|
+
StartedAt: Date | undefined;
|
|
1702
|
+
/**
|
|
1703
|
+
* <p>The current status of the profile update task (in progress, completed, failed, etc.).</p>
|
|
1704
|
+
* @public
|
|
1705
|
+
*/
|
|
1706
|
+
Status: ProfileTaskStatus | undefined;
|
|
1707
|
+
/**
|
|
1708
|
+
* <p>The timestamp when the profile update task was completed or failed.</p>
|
|
1709
|
+
* @public
|
|
1710
|
+
*/
|
|
1711
|
+
EndedAt?: Date | undefined;
|
|
1712
|
+
/**
|
|
1713
|
+
* <p>A list of error details if any errors occurred during the profile update task.</p>
|
|
1714
|
+
* @public
|
|
1715
|
+
*/
|
|
1716
|
+
ErrorDetailList?: ErrorDetail[] | undefined;
|
|
1717
|
+
}
|
|
1718
|
+
/**
|
|
1719
|
+
* @public
|
|
1720
|
+
*/
|
|
1721
|
+
export interface GetProfileVisibilityRequest {
|
|
1722
|
+
/**
|
|
1723
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1724
|
+
* @public
|
|
1725
|
+
*/
|
|
1726
|
+
Catalog: string | undefined;
|
|
1727
|
+
/**
|
|
1728
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1729
|
+
* @public
|
|
1730
|
+
*/
|
|
1731
|
+
Identifier: string | undefined;
|
|
1732
|
+
}
|
|
1733
|
+
/**
|
|
1734
|
+
* @public
|
|
1735
|
+
*/
|
|
1736
|
+
export interface GetProfileVisibilityResponse {
|
|
1737
|
+
/**
|
|
1738
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1739
|
+
* @public
|
|
1740
|
+
*/
|
|
1741
|
+
Catalog: string | undefined;
|
|
1742
|
+
/**
|
|
1743
|
+
* <p>The Amazon Resource Name (ARN) of the partner account.</p>
|
|
1744
|
+
* @public
|
|
1745
|
+
*/
|
|
1746
|
+
Arn: string | undefined;
|
|
1747
|
+
/**
|
|
1748
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1749
|
+
* @public
|
|
1750
|
+
*/
|
|
1751
|
+
Id: string | undefined;
|
|
1752
|
+
/**
|
|
1753
|
+
* <p>The visibility setting for the partner profile (public, private, restricted, etc.).</p>
|
|
1754
|
+
* @public
|
|
1755
|
+
*/
|
|
1756
|
+
Visibility: ProfileVisibility | undefined;
|
|
1757
|
+
/**
|
|
1758
|
+
* <p>The unique identifier of the partner profile.</p>
|
|
1759
|
+
* @public
|
|
1760
|
+
*/
|
|
1761
|
+
ProfileId: string | undefined;
|
|
1762
|
+
}
|
|
1763
|
+
/**
|
|
1764
|
+
* @public
|
|
1765
|
+
*/
|
|
1766
|
+
export interface ListPartnersRequest {
|
|
1767
|
+
/**
|
|
1768
|
+
* <p>The catalog identifier to list partners from.</p>
|
|
1769
|
+
* @public
|
|
1770
|
+
*/
|
|
1771
|
+
Catalog: string | undefined;
|
|
1772
|
+
/**
|
|
1773
|
+
* <p>The token for retrieving the next page of results in paginated responses.</p>
|
|
1774
|
+
* @public
|
|
1775
|
+
*/
|
|
1776
|
+
NextToken?: string | undefined;
|
|
1777
|
+
}
|
|
1778
|
+
/**
|
|
1779
|
+
* <p>A summary view of a partner account containing basic information for listing purposes.</p>
|
|
1780
|
+
* @public
|
|
1781
|
+
*/
|
|
1782
|
+
export interface PartnerSummary {
|
|
1783
|
+
/**
|
|
1784
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1785
|
+
* @public
|
|
1786
|
+
*/
|
|
1787
|
+
Catalog: string | undefined;
|
|
1788
|
+
/**
|
|
1789
|
+
* <p>The Amazon Resource Name (ARN) of the partner account.</p>
|
|
1790
|
+
* @public
|
|
1791
|
+
*/
|
|
1792
|
+
Arn: string | undefined;
|
|
1793
|
+
/**
|
|
1794
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1795
|
+
* @public
|
|
1796
|
+
*/
|
|
1797
|
+
Id: string | undefined;
|
|
1798
|
+
/**
|
|
1799
|
+
* <p>The legal name of the partner organization.</p>
|
|
1800
|
+
* @public
|
|
1801
|
+
*/
|
|
1802
|
+
LegalName: string | undefined;
|
|
1803
|
+
/**
|
|
1804
|
+
* <p>The timestamp when the partner account was created.</p>
|
|
1805
|
+
* @public
|
|
1806
|
+
*/
|
|
1807
|
+
CreatedAt: Date | undefined;
|
|
1808
|
+
}
|
|
1809
|
+
/**
|
|
1810
|
+
* @public
|
|
1811
|
+
*/
|
|
1812
|
+
export interface ListPartnersResponse {
|
|
1813
|
+
/**
|
|
1814
|
+
* <p>A list of partner summaries including basic information about each partner account.</p>
|
|
1815
|
+
* @public
|
|
1816
|
+
*/
|
|
1817
|
+
PartnerSummaryList: PartnerSummary[] | undefined;
|
|
1818
|
+
/**
|
|
1819
|
+
* <p>The token for retrieving the next page of results if more results are available.</p>
|
|
1820
|
+
* @public
|
|
1821
|
+
*/
|
|
1822
|
+
NextToken?: string | undefined;
|
|
1823
|
+
}
|
|
1824
|
+
/**
|
|
1825
|
+
* @public
|
|
1826
|
+
*/
|
|
1827
|
+
export interface ListTagsForResourceRequest {
|
|
1828
|
+
/**
|
|
1829
|
+
* <p>The Amazon Resource Name (ARN) of the resource to list tags for.</p>
|
|
1830
|
+
* @public
|
|
1831
|
+
*/
|
|
1832
|
+
ResourceArn: string | undefined;
|
|
1833
|
+
}
|
|
1834
|
+
/**
|
|
1835
|
+
* @public
|
|
1836
|
+
*/
|
|
1837
|
+
export interface ListTagsForResourceResponse {
|
|
1838
|
+
/**
|
|
1839
|
+
* <p>The Amazon Resource Name (ARN) of the resource that the tags are associated with.</p>
|
|
1840
|
+
* @public
|
|
1841
|
+
*/
|
|
1842
|
+
ResourceArn: string | undefined;
|
|
1843
|
+
/**
|
|
1844
|
+
* <p>A list of tags associated with the specified resource.</p>
|
|
1845
|
+
* @public
|
|
1846
|
+
*/
|
|
1847
|
+
Tags?: Tag[] | undefined;
|
|
1848
|
+
}
|
|
1849
|
+
/**
|
|
1850
|
+
* @public
|
|
1851
|
+
*/
|
|
1852
|
+
export interface PutAllianceLeadContactRequest {
|
|
1853
|
+
/**
|
|
1854
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1855
|
+
* @public
|
|
1856
|
+
*/
|
|
1857
|
+
Catalog: string | undefined;
|
|
1858
|
+
/**
|
|
1859
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1860
|
+
* @public
|
|
1861
|
+
*/
|
|
1862
|
+
Identifier: string | undefined;
|
|
1863
|
+
/**
|
|
1864
|
+
* <p>The alliance lead contact information to set for the partner account.</p>
|
|
1865
|
+
* @public
|
|
1866
|
+
*/
|
|
1867
|
+
AllianceLeadContact: AllianceLeadContact | undefined;
|
|
1868
|
+
/**
|
|
1869
|
+
* <p>The verification code sent to the alliance lead contact's email to confirm the update.</p>
|
|
1870
|
+
* @public
|
|
1871
|
+
*/
|
|
1872
|
+
EmailVerificationCode?: string | undefined;
|
|
1873
|
+
}
|
|
1874
|
+
/**
|
|
1875
|
+
* @public
|
|
1876
|
+
*/
|
|
1877
|
+
export interface PutAllianceLeadContactResponse {
|
|
1878
|
+
/**
|
|
1879
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1880
|
+
* @public
|
|
1881
|
+
*/
|
|
1882
|
+
Catalog: string | undefined;
|
|
1883
|
+
/**
|
|
1884
|
+
* <p>The Amazon Resource Name (ARN) of the partner account.</p>
|
|
1885
|
+
* @public
|
|
1886
|
+
*/
|
|
1887
|
+
Arn: string | undefined;
|
|
1888
|
+
/**
|
|
1889
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1890
|
+
* @public
|
|
1891
|
+
*/
|
|
1892
|
+
Id: string | undefined;
|
|
1893
|
+
/**
|
|
1894
|
+
* <p>The updated alliance lead contact information.</p>
|
|
1895
|
+
* @public
|
|
1896
|
+
*/
|
|
1897
|
+
AllianceLeadContact: AllianceLeadContact | undefined;
|
|
1898
|
+
}
|
|
1899
|
+
/**
|
|
1900
|
+
* @public
|
|
1901
|
+
*/
|
|
1902
|
+
export interface PutProfileVisibilityRequest {
|
|
1903
|
+
/**
|
|
1904
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1905
|
+
* @public
|
|
1906
|
+
*/
|
|
1907
|
+
Catalog: string | undefined;
|
|
1908
|
+
/**
|
|
1909
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1910
|
+
* @public
|
|
1911
|
+
*/
|
|
1912
|
+
Identifier: string | undefined;
|
|
1913
|
+
/**
|
|
1914
|
+
* <p>The visibility setting to apply to the partner profile.</p>
|
|
1915
|
+
* @public
|
|
1916
|
+
*/
|
|
1917
|
+
Visibility: ProfileVisibility | undefined;
|
|
1918
|
+
}
|
|
1919
|
+
/**
|
|
1920
|
+
* @public
|
|
1921
|
+
*/
|
|
1922
|
+
export interface PutProfileVisibilityResponse {
|
|
1923
|
+
/**
|
|
1924
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1925
|
+
* @public
|
|
1926
|
+
*/
|
|
1927
|
+
Catalog: string | undefined;
|
|
1928
|
+
/**
|
|
1929
|
+
* <p>The Amazon Resource Name (ARN) of the partner account.</p>
|
|
1930
|
+
* @public
|
|
1931
|
+
*/
|
|
1932
|
+
Arn: string | undefined;
|
|
1933
|
+
/**
|
|
1934
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1935
|
+
* @public
|
|
1936
|
+
*/
|
|
1937
|
+
Id: string | undefined;
|
|
1938
|
+
/**
|
|
1939
|
+
* <p>The updated visibility setting for the partner profile.</p>
|
|
1940
|
+
* @public
|
|
1941
|
+
*/
|
|
1942
|
+
Visibility: ProfileVisibility | undefined;
|
|
1943
|
+
/**
|
|
1944
|
+
* <p>The unique identifier of the partner profile.</p>
|
|
1945
|
+
* @public
|
|
1946
|
+
*/
|
|
1947
|
+
ProfileId: string | undefined;
|
|
1948
|
+
}
|
|
1949
|
+
/**
|
|
1950
|
+
* @public
|
|
1951
|
+
*/
|
|
1952
|
+
export interface StartProfileUpdateTaskRequest {
|
|
1953
|
+
/**
|
|
1954
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1955
|
+
* @public
|
|
1956
|
+
*/
|
|
1957
|
+
Catalog: string | undefined;
|
|
1958
|
+
/**
|
|
1959
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1960
|
+
* @public
|
|
1961
|
+
*/
|
|
1962
|
+
Identifier: string | undefined;
|
|
1963
|
+
/**
|
|
1964
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
1965
|
+
* @public
|
|
1966
|
+
*/
|
|
1967
|
+
ClientToken?: string | undefined;
|
|
1968
|
+
/**
|
|
1969
|
+
* <p>The details of the profile updates to be performed.</p>
|
|
1970
|
+
* @public
|
|
1971
|
+
*/
|
|
1972
|
+
TaskDetails: TaskDetails | undefined;
|
|
1973
|
+
}
|
|
1974
|
+
/**
|
|
1975
|
+
* @public
|
|
1976
|
+
*/
|
|
1977
|
+
export interface StartProfileUpdateTaskResponse {
|
|
1978
|
+
/**
|
|
1979
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
1980
|
+
* @public
|
|
1981
|
+
*/
|
|
1982
|
+
Catalog: string | undefined;
|
|
1983
|
+
/**
|
|
1984
|
+
* <p>The Amazon Resource Name (ARN) of the started profile update task.</p>
|
|
1985
|
+
* @public
|
|
1986
|
+
*/
|
|
1987
|
+
Arn: string | undefined;
|
|
1988
|
+
/**
|
|
1989
|
+
* <p>The unique identifier of the partner account.</p>
|
|
1990
|
+
* @public
|
|
1991
|
+
*/
|
|
1992
|
+
Id: string | undefined;
|
|
1993
|
+
/**
|
|
1994
|
+
* <p>The unique identifier of the started profile update task.</p>
|
|
1995
|
+
* @public
|
|
1996
|
+
*/
|
|
1997
|
+
TaskId: string | undefined;
|
|
1998
|
+
/**
|
|
1999
|
+
* <p>The details of the profile update task that was started.</p>
|
|
2000
|
+
* @public
|
|
2001
|
+
*/
|
|
2002
|
+
TaskDetails: TaskDetails | undefined;
|
|
2003
|
+
/**
|
|
2004
|
+
* <p>The timestamp when the profile update task was started.</p>
|
|
2005
|
+
* @public
|
|
2006
|
+
*/
|
|
2007
|
+
StartedAt: Date | undefined;
|
|
2008
|
+
/**
|
|
2009
|
+
* <p>The current status of the profile update task (in progress).</p>
|
|
2010
|
+
* @public
|
|
2011
|
+
*/
|
|
2012
|
+
Status: ProfileTaskStatus | undefined;
|
|
2013
|
+
/**
|
|
2014
|
+
* <p>The timestamp when the profile update task ended (null for in-progress tasks).</p>
|
|
2015
|
+
* @public
|
|
2016
|
+
*/
|
|
2017
|
+
EndedAt?: Date | undefined;
|
|
2018
|
+
/**
|
|
2019
|
+
* <p>A list of error details if any errors occurred during the profile update task.</p>
|
|
2020
|
+
* @public
|
|
2021
|
+
*/
|
|
2022
|
+
ErrorDetailList?: ErrorDetail[] | undefined;
|
|
2023
|
+
}
|
|
2024
|
+
/**
|
|
2025
|
+
* @public
|
|
2026
|
+
*/
|
|
2027
|
+
export interface SendEmailVerificationCodeRequest {
|
|
2028
|
+
/**
|
|
2029
|
+
* <p>The catalog identifier for the partner account.</p>
|
|
2030
|
+
* @public
|
|
2031
|
+
*/
|
|
2032
|
+
Catalog: string | undefined;
|
|
2033
|
+
/**
|
|
2034
|
+
* <p>The email address to send the verification code to.</p>
|
|
2035
|
+
* @public
|
|
2036
|
+
*/
|
|
2037
|
+
Email: string | undefined;
|
|
2038
|
+
}
|
|
2039
|
+
/**
|
|
2040
|
+
* @public
|
|
2041
|
+
*/
|
|
2042
|
+
export interface SendEmailVerificationCodeResponse {
|
|
2043
|
+
}
|
|
2044
|
+
/**
|
|
2045
|
+
* @public
|
|
2046
|
+
*/
|
|
2047
|
+
export interface TagResourceRequest {
|
|
2048
|
+
/**
|
|
2049
|
+
* <p>The Amazon Resource Name (ARN) of the resource to tag.</p>
|
|
2050
|
+
* @public
|
|
2051
|
+
*/
|
|
2052
|
+
ResourceArn: string | undefined;
|
|
2053
|
+
/**
|
|
2054
|
+
* <p>A list of tags to add or update for the specified resource.</p>
|
|
2055
|
+
* @public
|
|
2056
|
+
*/
|
|
2057
|
+
Tags: Tag[] | undefined;
|
|
2058
|
+
}
|
|
2059
|
+
/**
|
|
2060
|
+
* @public
|
|
2061
|
+
*/
|
|
2062
|
+
export interface TagResourceResponse {
|
|
2063
|
+
}
|
|
2064
|
+
/**
|
|
2065
|
+
* @public
|
|
2066
|
+
*/
|
|
2067
|
+
export interface UntagResourceRequest {
|
|
2068
|
+
/**
|
|
2069
|
+
* <p>The Amazon Resource Name (ARN) of the resource to remove tags from.</p>
|
|
2070
|
+
* @public
|
|
2071
|
+
*/
|
|
2072
|
+
ResourceArn: string | undefined;
|
|
2073
|
+
/**
|
|
2074
|
+
* <p>A list of tag keys to remove from the specified resource.</p>
|
|
2075
|
+
* @public
|
|
2076
|
+
*/
|
|
2077
|
+
TagKeys: string[] | undefined;
|
|
2078
|
+
}
|
|
2079
|
+
/**
|
|
2080
|
+
* @public
|
|
2081
|
+
*/
|
|
2082
|
+
export interface UntagResourceResponse {
|
|
2083
|
+
}
|