@aws-sdk/client-customer-profiles 3.825.0 → 3.827.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/README.md +40 -0
- package/dist-cjs/index.js +439 -33
- package/dist-es/CustomerProfiles.js +10 -0
- package/dist-es/commands/CreateDomainLayoutCommand.js +23 -0
- package/dist-es/commands/DeleteDomainLayoutCommand.js +22 -0
- package/dist-es/commands/GetDomainLayoutCommand.js +23 -0
- package/dist-es/commands/ListDomainLayoutsCommand.js +23 -0
- package/dist-es/commands/UpdateDomainLayoutCommand.js +23 -0
- package/dist-es/commands/UpdateProfileCommand.js +1 -1
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +51 -26
- package/dist-es/models/models_1.js +27 -0
- package/dist-es/pagination/ListDomainLayoutsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +240 -2
- package/dist-types/CustomerProfiles.d.ts +35 -0
- package/dist-types/CustomerProfilesClient.d.ts +7 -2
- package/dist-types/commands/BatchGetCalculatedAttributeForProfileCommand.d.ts +1 -0
- package/dist-types/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +23 -4
- package/dist-types/commands/CreateDomainLayoutCommand.d.ts +108 -0
- package/dist-types/commands/DeleteDomainLayoutCommand.d.ts +89 -0
- package/dist-types/commands/DetectProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetCalculatedAttributeDefinitionCommand.d.ts +14 -2
- package/dist-types/commands/GetCalculatedAttributeForProfileCommand.d.ts +1 -0
- package/dist-types/commands/GetDomainLayoutCommand.d.ts +100 -0
- package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/ListCalculatedAttributeDefinitionsCommand.d.ts +2 -0
- package/dist-types/commands/ListCalculatedAttributesForProfileCommand.d.ts +1 -0
- package/dist-types/commands/ListDomainLayoutsCommand.d.ts +104 -0
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +22 -4
- package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +105 -0
- package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +631 -173
- package/dist-types/models/models_1.d.ts +152 -0
- package/dist-types/pagination/ListDomainLayoutsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +85 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateDomainLayoutCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainLayoutCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDomainLayoutCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDomainLayoutsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +153 -35
- package/dist-types/ts3.4/models/models_1.d.ts +34 -0
- package/dist-types/ts3.4/pagination/ListDomainLayoutsPaginator.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 +60 -0
- package/package.json +11 -11
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import { Gender, PartyType, UpdateAddress } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface UpdateProfileRequest {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The unique name of the domain.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
DomainName: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>The unique identifier of a customer profile.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
ProfileId: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>Any additional information relevant to the customer’s profile.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
AdditionalInformation?: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>An account number that you have assigned to the customer.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
AccountNumber?: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The type of profile used to describe the customer.</p>
|
|
28
|
+
*
|
|
29
|
+
* @deprecated
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
PartyType?: PartyType | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The name of the customer’s business.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
BusinessName?: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The customer’s first name.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
FirstName?: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The customer’s middle name.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
MiddleName?: string | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The customer’s last name.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
LastName?: string | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The customer’s birth date. </p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
BirthDate?: string | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* <p>The gender with which the customer identifies. </p>
|
|
60
|
+
*
|
|
61
|
+
* @deprecated
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
Gender?: Gender | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* <p>The customer’s phone number, which has not been specified as a mobile, home, or business
|
|
67
|
+
* number. </p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
PhoneNumber?: string | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The customer’s mobile phone number.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
MobilePhoneNumber?: string | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* <p>The customer’s home phone number.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
HomePhoneNumber?: string | undefined;
|
|
81
|
+
/**
|
|
82
|
+
* <p>The customer’s business phone number.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
BusinessPhoneNumber?: string | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* <p>The customer’s email address, which has not been specified as a personal or business
|
|
88
|
+
* address. </p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
EmailAddress?: string | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The customer’s personal email address.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
PersonalEmailAddress?: string | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* <p>The customer’s business email address.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
BusinessEmailAddress?: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>A generic address associated with the customer that is not mailing, shipping, or
|
|
104
|
+
* billing.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
Address?: UpdateAddress | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>The customer’s shipping address.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
ShippingAddress?: UpdateAddress | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* <p>The customer’s mailing address.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
MailingAddress?: UpdateAddress | undefined;
|
|
118
|
+
/**
|
|
119
|
+
* <p>The customer’s billing address.</p>
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
BillingAddress?: UpdateAddress | undefined;
|
|
123
|
+
/**
|
|
124
|
+
* <p>A key value pair of attributes of a customer profile.</p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
Attributes?: Record<string, string> | undefined;
|
|
128
|
+
/**
|
|
129
|
+
* <p>An alternative to <code>PartyType</code> which accepts any string as input.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
PartyTypeString?: string | undefined;
|
|
133
|
+
/**
|
|
134
|
+
* <p>An alternative to <code>Gender</code> which accepts any string as input.</p>
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
GenderString?: string | undefined;
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
142
|
+
export interface UpdateProfileResponse {
|
|
143
|
+
/**
|
|
144
|
+
* <p>The unique identifier of a customer profile.</p>
|
|
145
|
+
* @public
|
|
146
|
+
*/
|
|
147
|
+
ProfileId: string | undefined;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* @internal
|
|
151
|
+
*/
|
|
152
|
+
export declare const UpdateProfileRequestFilterSensitiveLog: (obj: UpdateProfileRequest) => any;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDomainLayoutsCommandInput, ListDomainLayoutsCommandOutput } from "../commands/ListDomainLayoutsCommand";
|
|
3
|
+
import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDomainLayouts: (config: CustomerProfilesPaginationConfiguration, input: ListDomainLayoutsCommandInput, ...rest: any[]) => Paginator<ListDomainLayoutsCommandOutput>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./GetSimilarProfilesPaginator";
|
|
2
2
|
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListDomainLayoutsPaginator";
|
|
3
4
|
export * from "./ListEventStreamsPaginator";
|
|
4
5
|
export * from "./ListEventTriggersPaginator";
|
|
5
6
|
export * from "./ListObjectTypeAttributesPaginator";
|
|
@@ -5,6 +5,7 @@ import { BatchGetCalculatedAttributeForProfileCommandInput, BatchGetCalculatedAt
|
|
|
5
5
|
import { BatchGetProfileCommandInput, BatchGetProfileCommandOutput } from "../commands/BatchGetProfileCommand";
|
|
6
6
|
import { CreateCalculatedAttributeDefinitionCommandInput, CreateCalculatedAttributeDefinitionCommandOutput } from "../commands/CreateCalculatedAttributeDefinitionCommand";
|
|
7
7
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
|
|
8
|
+
import { CreateDomainLayoutCommandInput, CreateDomainLayoutCommandOutput } from "../commands/CreateDomainLayoutCommand";
|
|
8
9
|
import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from "../commands/CreateEventStreamCommand";
|
|
9
10
|
import { CreateEventTriggerCommandInput, CreateEventTriggerCommandOutput } from "../commands/CreateEventTriggerCommand";
|
|
10
11
|
import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "../commands/CreateIntegrationWorkflowCommand";
|
|
@@ -14,6 +15,7 @@ import { CreateSegmentEstimateCommandInput, CreateSegmentEstimateCommandOutput }
|
|
|
14
15
|
import { CreateSegmentSnapshotCommandInput, CreateSegmentSnapshotCommandOutput } from "../commands/CreateSegmentSnapshotCommand";
|
|
15
16
|
import { DeleteCalculatedAttributeDefinitionCommandInput, DeleteCalculatedAttributeDefinitionCommandOutput } from "../commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
16
17
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
|
|
18
|
+
import { DeleteDomainLayoutCommandInput, DeleteDomainLayoutCommandOutput } from "../commands/DeleteDomainLayoutCommand";
|
|
17
19
|
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "../commands/DeleteEventStreamCommand";
|
|
18
20
|
import { DeleteEventTriggerCommandInput, DeleteEventTriggerCommandOutput } from "../commands/DeleteEventTriggerCommand";
|
|
19
21
|
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "../commands/DeleteIntegrationCommand";
|
|
@@ -28,6 +30,7 @@ import { GetAutoMergingPreviewCommandInput, GetAutoMergingPreviewCommandOutput }
|
|
|
28
30
|
import { GetCalculatedAttributeDefinitionCommandInput, GetCalculatedAttributeDefinitionCommandOutput } from "../commands/GetCalculatedAttributeDefinitionCommand";
|
|
29
31
|
import { GetCalculatedAttributeForProfileCommandInput, GetCalculatedAttributeForProfileCommandOutput } from "../commands/GetCalculatedAttributeForProfileCommand";
|
|
30
32
|
import { GetDomainCommandInput, GetDomainCommandOutput } from "../commands/GetDomainCommand";
|
|
33
|
+
import { GetDomainLayoutCommandInput, GetDomainLayoutCommandOutput } from "../commands/GetDomainLayoutCommand";
|
|
31
34
|
import { GetEventStreamCommandInput, GetEventStreamCommandOutput } from "../commands/GetEventStreamCommand";
|
|
32
35
|
import { GetEventTriggerCommandInput, GetEventTriggerCommandOutput } from "../commands/GetEventTriggerCommand";
|
|
33
36
|
import { GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput } from "../commands/GetIdentityResolutionJobCommand";
|
|
@@ -45,6 +48,7 @@ import { GetWorkflowStepsCommandInput, GetWorkflowStepsCommandOutput } from "../
|
|
|
45
48
|
import { ListAccountIntegrationsCommandInput, ListAccountIntegrationsCommandOutput } from "../commands/ListAccountIntegrationsCommand";
|
|
46
49
|
import { ListCalculatedAttributeDefinitionsCommandInput, ListCalculatedAttributeDefinitionsCommandOutput } from "../commands/ListCalculatedAttributeDefinitionsCommand";
|
|
47
50
|
import { ListCalculatedAttributesForProfileCommandInput, ListCalculatedAttributesForProfileCommandOutput } from "../commands/ListCalculatedAttributesForProfileCommand";
|
|
51
|
+
import { ListDomainLayoutsCommandInput, ListDomainLayoutsCommandOutput } from "../commands/ListDomainLayoutsCommand";
|
|
48
52
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
|
|
49
53
|
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "../commands/ListEventStreamsCommand";
|
|
50
54
|
import { ListEventTriggersCommandInput, ListEventTriggersCommandOutput } from "../commands/ListEventTriggersCommand";
|
|
@@ -68,6 +72,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
|
|
|
68
72
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
69
73
|
import { UpdateCalculatedAttributeDefinitionCommandInput, UpdateCalculatedAttributeDefinitionCommandOutput } from "../commands/UpdateCalculatedAttributeDefinitionCommand";
|
|
70
74
|
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "../commands/UpdateDomainCommand";
|
|
75
|
+
import { UpdateDomainLayoutCommandInput, UpdateDomainLayoutCommandOutput } from "../commands/UpdateDomainLayoutCommand";
|
|
71
76
|
import { UpdateEventTriggerCommandInput, UpdateEventTriggerCommandOutput } from "../commands/UpdateEventTriggerCommand";
|
|
72
77
|
import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "../commands/UpdateProfileCommand";
|
|
73
78
|
/**
|
|
@@ -90,6 +95,10 @@ export declare const se_CreateCalculatedAttributeDefinitionCommand: (input: Crea
|
|
|
90
95
|
* serializeAws_restJson1CreateDomainCommand
|
|
91
96
|
*/
|
|
92
97
|
export declare const se_CreateDomainCommand: (input: CreateDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
+
/**
|
|
99
|
+
* serializeAws_restJson1CreateDomainLayoutCommand
|
|
100
|
+
*/
|
|
101
|
+
export declare const se_CreateDomainLayoutCommand: (input: CreateDomainLayoutCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
102
|
/**
|
|
94
103
|
* serializeAws_restJson1CreateEventStreamCommand
|
|
95
104
|
*/
|
|
@@ -126,6 +135,10 @@ export declare const se_DeleteCalculatedAttributeDefinitionCommand: (input: Dele
|
|
|
126
135
|
* serializeAws_restJson1DeleteDomainCommand
|
|
127
136
|
*/
|
|
128
137
|
export declare const se_DeleteDomainCommand: (input: DeleteDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
|
+
/**
|
|
139
|
+
* serializeAws_restJson1DeleteDomainLayoutCommand
|
|
140
|
+
*/
|
|
141
|
+
export declare const se_DeleteDomainLayoutCommand: (input: DeleteDomainLayoutCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
142
|
/**
|
|
130
143
|
* serializeAws_restJson1DeleteEventStreamCommand
|
|
131
144
|
*/
|
|
@@ -182,6 +195,10 @@ export declare const se_GetCalculatedAttributeForProfileCommand: (input: GetCalc
|
|
|
182
195
|
* serializeAws_restJson1GetDomainCommand
|
|
183
196
|
*/
|
|
184
197
|
export declare const se_GetDomainCommand: (input: GetDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
198
|
+
/**
|
|
199
|
+
* serializeAws_restJson1GetDomainLayoutCommand
|
|
200
|
+
*/
|
|
201
|
+
export declare const se_GetDomainLayoutCommand: (input: GetDomainLayoutCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
185
202
|
/**
|
|
186
203
|
* serializeAws_restJson1GetEventStreamCommand
|
|
187
204
|
*/
|
|
@@ -250,6 +267,10 @@ export declare const se_ListCalculatedAttributeDefinitionsCommand: (input: ListC
|
|
|
250
267
|
* serializeAws_restJson1ListCalculatedAttributesForProfileCommand
|
|
251
268
|
*/
|
|
252
269
|
export declare const se_ListCalculatedAttributesForProfileCommand: (input: ListCalculatedAttributesForProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
270
|
+
/**
|
|
271
|
+
* serializeAws_restJson1ListDomainLayoutsCommand
|
|
272
|
+
*/
|
|
273
|
+
export declare const se_ListDomainLayoutsCommand: (input: ListDomainLayoutsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
253
274
|
/**
|
|
254
275
|
* serializeAws_restJson1ListDomainsCommand
|
|
255
276
|
*/
|
|
@@ -342,6 +363,10 @@ export declare const se_UpdateCalculatedAttributeDefinitionCommand: (input: Upda
|
|
|
342
363
|
* serializeAws_restJson1UpdateDomainCommand
|
|
343
364
|
*/
|
|
344
365
|
export declare const se_UpdateDomainCommand: (input: UpdateDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
366
|
+
/**
|
|
367
|
+
* serializeAws_restJson1UpdateDomainLayoutCommand
|
|
368
|
+
*/
|
|
369
|
+
export declare const se_UpdateDomainLayoutCommand: (input: UpdateDomainLayoutCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
345
370
|
/**
|
|
346
371
|
* serializeAws_restJson1UpdateEventTriggerCommand
|
|
347
372
|
*/
|
|
@@ -370,6 +395,10 @@ export declare const de_CreateCalculatedAttributeDefinitionCommand: (output: __H
|
|
|
370
395
|
* deserializeAws_restJson1CreateDomainCommand
|
|
371
396
|
*/
|
|
372
397
|
export declare const de_CreateDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainCommandOutput>;
|
|
398
|
+
/**
|
|
399
|
+
* deserializeAws_restJson1CreateDomainLayoutCommand
|
|
400
|
+
*/
|
|
401
|
+
export declare const de_CreateDomainLayoutCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainLayoutCommandOutput>;
|
|
373
402
|
/**
|
|
374
403
|
* deserializeAws_restJson1CreateEventStreamCommand
|
|
375
404
|
*/
|
|
@@ -406,6 +435,10 @@ export declare const de_DeleteCalculatedAttributeDefinitionCommand: (output: __H
|
|
|
406
435
|
* deserializeAws_restJson1DeleteDomainCommand
|
|
407
436
|
*/
|
|
408
437
|
export declare const de_DeleteDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainCommandOutput>;
|
|
438
|
+
/**
|
|
439
|
+
* deserializeAws_restJson1DeleteDomainLayoutCommand
|
|
440
|
+
*/
|
|
441
|
+
export declare const de_DeleteDomainLayoutCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainLayoutCommandOutput>;
|
|
409
442
|
/**
|
|
410
443
|
* deserializeAws_restJson1DeleteEventStreamCommand
|
|
411
444
|
*/
|
|
@@ -462,6 +495,10 @@ export declare const de_GetCalculatedAttributeForProfileCommand: (output: __Http
|
|
|
462
495
|
* deserializeAws_restJson1GetDomainCommand
|
|
463
496
|
*/
|
|
464
497
|
export declare const de_GetDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDomainCommandOutput>;
|
|
498
|
+
/**
|
|
499
|
+
* deserializeAws_restJson1GetDomainLayoutCommand
|
|
500
|
+
*/
|
|
501
|
+
export declare const de_GetDomainLayoutCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDomainLayoutCommandOutput>;
|
|
465
502
|
/**
|
|
466
503
|
* deserializeAws_restJson1GetEventStreamCommand
|
|
467
504
|
*/
|
|
@@ -530,6 +567,10 @@ export declare const de_ListCalculatedAttributeDefinitionsCommand: (output: __Ht
|
|
|
530
567
|
* deserializeAws_restJson1ListCalculatedAttributesForProfileCommand
|
|
531
568
|
*/
|
|
532
569
|
export declare const de_ListCalculatedAttributesForProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCalculatedAttributesForProfileCommandOutput>;
|
|
570
|
+
/**
|
|
571
|
+
* deserializeAws_restJson1ListDomainLayoutsCommand
|
|
572
|
+
*/
|
|
573
|
+
export declare const de_ListDomainLayoutsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainLayoutsCommandOutput>;
|
|
533
574
|
/**
|
|
534
575
|
* deserializeAws_restJson1ListDomainsCommand
|
|
535
576
|
*/
|
|
@@ -622,6 +663,10 @@ export declare const de_UpdateCalculatedAttributeDefinitionCommand: (output: __H
|
|
|
622
663
|
* deserializeAws_restJson1UpdateDomainCommand
|
|
623
664
|
*/
|
|
624
665
|
export declare const de_UpdateDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDomainCommandOutput>;
|
|
666
|
+
/**
|
|
667
|
+
* deserializeAws_restJson1UpdateDomainLayoutCommand
|
|
668
|
+
*/
|
|
669
|
+
export declare const de_UpdateDomainLayoutCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDomainLayoutCommandOutput>;
|
|
625
670
|
/**
|
|
626
671
|
* deserializeAws_restJson1UpdateEventTriggerCommand
|
|
627
672
|
*/
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CreateDomainCommandInput,
|
|
20
20
|
CreateDomainCommandOutput,
|
|
21
21
|
} from "./commands/CreateDomainCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateDomainLayoutCommandInput,
|
|
24
|
+
CreateDomainLayoutCommandOutput,
|
|
25
|
+
} from "./commands/CreateDomainLayoutCommand";
|
|
22
26
|
import {
|
|
23
27
|
CreateEventStreamCommandInput,
|
|
24
28
|
CreateEventStreamCommandOutput,
|
|
@@ -55,6 +59,10 @@ import {
|
|
|
55
59
|
DeleteDomainCommandInput,
|
|
56
60
|
DeleteDomainCommandOutput,
|
|
57
61
|
} from "./commands/DeleteDomainCommand";
|
|
62
|
+
import {
|
|
63
|
+
DeleteDomainLayoutCommandInput,
|
|
64
|
+
DeleteDomainLayoutCommandOutput,
|
|
65
|
+
} from "./commands/DeleteDomainLayoutCommand";
|
|
58
66
|
import {
|
|
59
67
|
DeleteEventStreamCommandInput,
|
|
60
68
|
DeleteEventStreamCommandOutput,
|
|
@@ -111,6 +119,10 @@ import {
|
|
|
111
119
|
GetDomainCommandInput,
|
|
112
120
|
GetDomainCommandOutput,
|
|
113
121
|
} from "./commands/GetDomainCommand";
|
|
122
|
+
import {
|
|
123
|
+
GetDomainLayoutCommandInput,
|
|
124
|
+
GetDomainLayoutCommandOutput,
|
|
125
|
+
} from "./commands/GetDomainLayoutCommand";
|
|
114
126
|
import {
|
|
115
127
|
GetEventStreamCommandInput,
|
|
116
128
|
GetEventStreamCommandOutput,
|
|
@@ -179,6 +191,10 @@ import {
|
|
|
179
191
|
ListCalculatedAttributesForProfileCommandInput,
|
|
180
192
|
ListCalculatedAttributesForProfileCommandOutput,
|
|
181
193
|
} from "./commands/ListCalculatedAttributesForProfileCommand";
|
|
194
|
+
import {
|
|
195
|
+
ListDomainLayoutsCommandInput,
|
|
196
|
+
ListDomainLayoutsCommandOutput,
|
|
197
|
+
} from "./commands/ListDomainLayoutsCommand";
|
|
182
198
|
import {
|
|
183
199
|
ListDomainsCommandInput,
|
|
184
200
|
ListDomainsCommandOutput,
|
|
@@ -271,6 +287,10 @@ import {
|
|
|
271
287
|
UpdateDomainCommandInput,
|
|
272
288
|
UpdateDomainCommandOutput,
|
|
273
289
|
} from "./commands/UpdateDomainCommand";
|
|
290
|
+
import {
|
|
291
|
+
UpdateDomainLayoutCommandInput,
|
|
292
|
+
UpdateDomainLayoutCommandOutput,
|
|
293
|
+
} from "./commands/UpdateDomainLayoutCommand";
|
|
274
294
|
import {
|
|
275
295
|
UpdateEventTriggerCommandInput,
|
|
276
296
|
UpdateEventTriggerCommandOutput,
|
|
@@ -358,6 +378,19 @@ export interface CustomerProfiles {
|
|
|
358
378
|
options: __HttpHandlerOptions,
|
|
359
379
|
cb: (err: any, data?: CreateDomainCommandOutput) => void
|
|
360
380
|
): void;
|
|
381
|
+
createDomainLayout(
|
|
382
|
+
args: CreateDomainLayoutCommandInput,
|
|
383
|
+
options?: __HttpHandlerOptions
|
|
384
|
+
): Promise<CreateDomainLayoutCommandOutput>;
|
|
385
|
+
createDomainLayout(
|
|
386
|
+
args: CreateDomainLayoutCommandInput,
|
|
387
|
+
cb: (err: any, data?: CreateDomainLayoutCommandOutput) => void
|
|
388
|
+
): void;
|
|
389
|
+
createDomainLayout(
|
|
390
|
+
args: CreateDomainLayoutCommandInput,
|
|
391
|
+
options: __HttpHandlerOptions,
|
|
392
|
+
cb: (err: any, data?: CreateDomainLayoutCommandOutput) => void
|
|
393
|
+
): void;
|
|
361
394
|
createEventStream(
|
|
362
395
|
args: CreateEventStreamCommandInput,
|
|
363
396
|
options?: __HttpHandlerOptions
|
|
@@ -481,6 +514,19 @@ export interface CustomerProfiles {
|
|
|
481
514
|
options: __HttpHandlerOptions,
|
|
482
515
|
cb: (err: any, data?: DeleteDomainCommandOutput) => void
|
|
483
516
|
): void;
|
|
517
|
+
deleteDomainLayout(
|
|
518
|
+
args: DeleteDomainLayoutCommandInput,
|
|
519
|
+
options?: __HttpHandlerOptions
|
|
520
|
+
): Promise<DeleteDomainLayoutCommandOutput>;
|
|
521
|
+
deleteDomainLayout(
|
|
522
|
+
args: DeleteDomainLayoutCommandInput,
|
|
523
|
+
cb: (err: any, data?: DeleteDomainLayoutCommandOutput) => void
|
|
524
|
+
): void;
|
|
525
|
+
deleteDomainLayout(
|
|
526
|
+
args: DeleteDomainLayoutCommandInput,
|
|
527
|
+
options: __HttpHandlerOptions,
|
|
528
|
+
cb: (err: any, data?: DeleteDomainLayoutCommandOutput) => void
|
|
529
|
+
): void;
|
|
484
530
|
deleteEventStream(
|
|
485
531
|
args: DeleteEventStreamCommandInput,
|
|
486
532
|
options?: __HttpHandlerOptions
|
|
@@ -663,6 +709,19 @@ export interface CustomerProfiles {
|
|
|
663
709
|
options: __HttpHandlerOptions,
|
|
664
710
|
cb: (err: any, data?: GetDomainCommandOutput) => void
|
|
665
711
|
): void;
|
|
712
|
+
getDomainLayout(
|
|
713
|
+
args: GetDomainLayoutCommandInput,
|
|
714
|
+
options?: __HttpHandlerOptions
|
|
715
|
+
): Promise<GetDomainLayoutCommandOutput>;
|
|
716
|
+
getDomainLayout(
|
|
717
|
+
args: GetDomainLayoutCommandInput,
|
|
718
|
+
cb: (err: any, data?: GetDomainLayoutCommandOutput) => void
|
|
719
|
+
): void;
|
|
720
|
+
getDomainLayout(
|
|
721
|
+
args: GetDomainLayoutCommandInput,
|
|
722
|
+
options: __HttpHandlerOptions,
|
|
723
|
+
cb: (err: any, data?: GetDomainLayoutCommandOutput) => void
|
|
724
|
+
): void;
|
|
666
725
|
getEventStream(
|
|
667
726
|
args: GetEventStreamCommandInput,
|
|
668
727
|
options?: __HttpHandlerOptions
|
|
@@ -896,6 +955,19 @@ export interface CustomerProfiles {
|
|
|
896
955
|
data?: ListCalculatedAttributesForProfileCommandOutput
|
|
897
956
|
) => void
|
|
898
957
|
): void;
|
|
958
|
+
listDomainLayouts(
|
|
959
|
+
args: ListDomainLayoutsCommandInput,
|
|
960
|
+
options?: __HttpHandlerOptions
|
|
961
|
+
): Promise<ListDomainLayoutsCommandOutput>;
|
|
962
|
+
listDomainLayouts(
|
|
963
|
+
args: ListDomainLayoutsCommandInput,
|
|
964
|
+
cb: (err: any, data?: ListDomainLayoutsCommandOutput) => void
|
|
965
|
+
): void;
|
|
966
|
+
listDomainLayouts(
|
|
967
|
+
args: ListDomainLayoutsCommandInput,
|
|
968
|
+
options: __HttpHandlerOptions,
|
|
969
|
+
cb: (err: any, data?: ListDomainLayoutsCommandOutput) => void
|
|
970
|
+
): void;
|
|
899
971
|
listDomains(): Promise<ListDomainsCommandOutput>;
|
|
900
972
|
listDomains(
|
|
901
973
|
args: ListDomainsCommandInput,
|
|
@@ -1203,6 +1275,19 @@ export interface CustomerProfiles {
|
|
|
1203
1275
|
options: __HttpHandlerOptions,
|
|
1204
1276
|
cb: (err: any, data?: UpdateDomainCommandOutput) => void
|
|
1205
1277
|
): void;
|
|
1278
|
+
updateDomainLayout(
|
|
1279
|
+
args: UpdateDomainLayoutCommandInput,
|
|
1280
|
+
options?: __HttpHandlerOptions
|
|
1281
|
+
): Promise<UpdateDomainLayoutCommandOutput>;
|
|
1282
|
+
updateDomainLayout(
|
|
1283
|
+
args: UpdateDomainLayoutCommandInput,
|
|
1284
|
+
cb: (err: any, data?: UpdateDomainLayoutCommandOutput) => void
|
|
1285
|
+
): void;
|
|
1286
|
+
updateDomainLayout(
|
|
1287
|
+
args: UpdateDomainLayoutCommandInput,
|
|
1288
|
+
options: __HttpHandlerOptions,
|
|
1289
|
+
cb: (err: any, data?: UpdateDomainLayoutCommandOutput) => void
|
|
1290
|
+
): void;
|
|
1206
1291
|
updateEventTrigger(
|
|
1207
1292
|
args: UpdateEventTriggerCommandInput,
|
|
1208
1293
|
options?: __HttpHandlerOptions
|
|
@@ -65,6 +65,10 @@ import {
|
|
|
65
65
|
CreateDomainCommandInput,
|
|
66
66
|
CreateDomainCommandOutput,
|
|
67
67
|
} from "./commands/CreateDomainCommand";
|
|
68
|
+
import {
|
|
69
|
+
CreateDomainLayoutCommandInput,
|
|
70
|
+
CreateDomainLayoutCommandOutput,
|
|
71
|
+
} from "./commands/CreateDomainLayoutCommand";
|
|
68
72
|
import {
|
|
69
73
|
CreateEventStreamCommandInput,
|
|
70
74
|
CreateEventStreamCommandOutput,
|
|
@@ -101,6 +105,10 @@ import {
|
|
|
101
105
|
DeleteDomainCommandInput,
|
|
102
106
|
DeleteDomainCommandOutput,
|
|
103
107
|
} from "./commands/DeleteDomainCommand";
|
|
108
|
+
import {
|
|
109
|
+
DeleteDomainLayoutCommandInput,
|
|
110
|
+
DeleteDomainLayoutCommandOutput,
|
|
111
|
+
} from "./commands/DeleteDomainLayoutCommand";
|
|
104
112
|
import {
|
|
105
113
|
DeleteEventStreamCommandInput,
|
|
106
114
|
DeleteEventStreamCommandOutput,
|
|
@@ -157,6 +165,10 @@ import {
|
|
|
157
165
|
GetDomainCommandInput,
|
|
158
166
|
GetDomainCommandOutput,
|
|
159
167
|
} from "./commands/GetDomainCommand";
|
|
168
|
+
import {
|
|
169
|
+
GetDomainLayoutCommandInput,
|
|
170
|
+
GetDomainLayoutCommandOutput,
|
|
171
|
+
} from "./commands/GetDomainLayoutCommand";
|
|
160
172
|
import {
|
|
161
173
|
GetEventStreamCommandInput,
|
|
162
174
|
GetEventStreamCommandOutput,
|
|
@@ -225,6 +237,10 @@ import {
|
|
|
225
237
|
ListCalculatedAttributesForProfileCommandInput,
|
|
226
238
|
ListCalculatedAttributesForProfileCommandOutput,
|
|
227
239
|
} from "./commands/ListCalculatedAttributesForProfileCommand";
|
|
240
|
+
import {
|
|
241
|
+
ListDomainLayoutsCommandInput,
|
|
242
|
+
ListDomainLayoutsCommandOutput,
|
|
243
|
+
} from "./commands/ListDomainLayoutsCommand";
|
|
228
244
|
import {
|
|
229
245
|
ListDomainsCommandInput,
|
|
230
246
|
ListDomainsCommandOutput,
|
|
@@ -317,6 +333,10 @@ import {
|
|
|
317
333
|
UpdateDomainCommandInput,
|
|
318
334
|
UpdateDomainCommandOutput,
|
|
319
335
|
} from "./commands/UpdateDomainCommand";
|
|
336
|
+
import {
|
|
337
|
+
UpdateDomainLayoutCommandInput,
|
|
338
|
+
UpdateDomainLayoutCommandOutput,
|
|
339
|
+
} from "./commands/UpdateDomainLayoutCommand";
|
|
320
340
|
import {
|
|
321
341
|
UpdateEventTriggerCommandInput,
|
|
322
342
|
UpdateEventTriggerCommandOutput,
|
|
@@ -338,6 +358,7 @@ export type ServiceInputTypes =
|
|
|
338
358
|
| BatchGetProfileCommandInput
|
|
339
359
|
| CreateCalculatedAttributeDefinitionCommandInput
|
|
340
360
|
| CreateDomainCommandInput
|
|
361
|
+
| CreateDomainLayoutCommandInput
|
|
341
362
|
| CreateEventStreamCommandInput
|
|
342
363
|
| CreateEventTriggerCommandInput
|
|
343
364
|
| CreateIntegrationWorkflowCommandInput
|
|
@@ -347,6 +368,7 @@ export type ServiceInputTypes =
|
|
|
347
368
|
| CreateSegmentSnapshotCommandInput
|
|
348
369
|
| DeleteCalculatedAttributeDefinitionCommandInput
|
|
349
370
|
| DeleteDomainCommandInput
|
|
371
|
+
| DeleteDomainLayoutCommandInput
|
|
350
372
|
| DeleteEventStreamCommandInput
|
|
351
373
|
| DeleteEventTriggerCommandInput
|
|
352
374
|
| DeleteIntegrationCommandInput
|
|
@@ -361,6 +383,7 @@ export type ServiceInputTypes =
|
|
|
361
383
|
| GetCalculatedAttributeDefinitionCommandInput
|
|
362
384
|
| GetCalculatedAttributeForProfileCommandInput
|
|
363
385
|
| GetDomainCommandInput
|
|
386
|
+
| GetDomainLayoutCommandInput
|
|
364
387
|
| GetEventStreamCommandInput
|
|
365
388
|
| GetEventTriggerCommandInput
|
|
366
389
|
| GetIdentityResolutionJobCommandInput
|
|
@@ -378,6 +401,7 @@ export type ServiceInputTypes =
|
|
|
378
401
|
| ListAccountIntegrationsCommandInput
|
|
379
402
|
| ListCalculatedAttributeDefinitionsCommandInput
|
|
380
403
|
| ListCalculatedAttributesForProfileCommandInput
|
|
404
|
+
| ListDomainLayoutsCommandInput
|
|
381
405
|
| ListDomainsCommandInput
|
|
382
406
|
| ListEventStreamsCommandInput
|
|
383
407
|
| ListEventTriggersCommandInput
|
|
@@ -401,6 +425,7 @@ export type ServiceInputTypes =
|
|
|
401
425
|
| UntagResourceCommandInput
|
|
402
426
|
| UpdateCalculatedAttributeDefinitionCommandInput
|
|
403
427
|
| UpdateDomainCommandInput
|
|
428
|
+
| UpdateDomainLayoutCommandInput
|
|
404
429
|
| UpdateEventTriggerCommandInput
|
|
405
430
|
| UpdateProfileCommandInput;
|
|
406
431
|
export type ServiceOutputTypes =
|
|
@@ -409,6 +434,7 @@ export type ServiceOutputTypes =
|
|
|
409
434
|
| BatchGetProfileCommandOutput
|
|
410
435
|
| CreateCalculatedAttributeDefinitionCommandOutput
|
|
411
436
|
| CreateDomainCommandOutput
|
|
437
|
+
| CreateDomainLayoutCommandOutput
|
|
412
438
|
| CreateEventStreamCommandOutput
|
|
413
439
|
| CreateEventTriggerCommandOutput
|
|
414
440
|
| CreateIntegrationWorkflowCommandOutput
|
|
@@ -418,6 +444,7 @@ export type ServiceOutputTypes =
|
|
|
418
444
|
| CreateSegmentSnapshotCommandOutput
|
|
419
445
|
| DeleteCalculatedAttributeDefinitionCommandOutput
|
|
420
446
|
| DeleteDomainCommandOutput
|
|
447
|
+
| DeleteDomainLayoutCommandOutput
|
|
421
448
|
| DeleteEventStreamCommandOutput
|
|
422
449
|
| DeleteEventTriggerCommandOutput
|
|
423
450
|
| DeleteIntegrationCommandOutput
|
|
@@ -432,6 +459,7 @@ export type ServiceOutputTypes =
|
|
|
432
459
|
| GetCalculatedAttributeDefinitionCommandOutput
|
|
433
460
|
| GetCalculatedAttributeForProfileCommandOutput
|
|
434
461
|
| GetDomainCommandOutput
|
|
462
|
+
| GetDomainLayoutCommandOutput
|
|
435
463
|
| GetEventStreamCommandOutput
|
|
436
464
|
| GetEventTriggerCommandOutput
|
|
437
465
|
| GetIdentityResolutionJobCommandOutput
|
|
@@ -449,6 +477,7 @@ export type ServiceOutputTypes =
|
|
|
449
477
|
| ListAccountIntegrationsCommandOutput
|
|
450
478
|
| ListCalculatedAttributeDefinitionsCommandOutput
|
|
451
479
|
| ListCalculatedAttributesForProfileCommandOutput
|
|
480
|
+
| ListDomainLayoutsCommandOutput
|
|
452
481
|
| ListDomainsCommandOutput
|
|
453
482
|
| ListEventStreamsCommandOutput
|
|
454
483
|
| ListEventTriggersCommandOutput
|
|
@@ -472,6 +501,7 @@ export type ServiceOutputTypes =
|
|
|
472
501
|
| UntagResourceCommandOutput
|
|
473
502
|
| UpdateCalculatedAttributeDefinitionCommandOutput
|
|
474
503
|
| UpdateDomainCommandOutput
|
|
504
|
+
| UpdateDomainLayoutCommandOutput
|
|
475
505
|
| UpdateEventTriggerCommandOutput
|
|
476
506
|
| UpdateProfileCommandOutput;
|
|
477
507
|
export interface ClientDefaults
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateDomainLayoutRequest,
|
|
10
|
+
CreateDomainLayoutResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateDomainLayoutCommandInput
|
|
15
|
+
extends CreateDomainLayoutRequest {}
|
|
16
|
+
export interface CreateDomainLayoutCommandOutput
|
|
17
|
+
extends CreateDomainLayoutResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateDomainLayoutCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateDomainLayoutCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateDomainLayoutCommandInput,
|
|
24
|
+
CreateDomainLayoutCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateDomainLayoutCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateDomainLayoutCommandInput,
|
|
33
|
+
CreateDomainLayoutCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateDomainLayoutCommand extends CreateDomainLayoutCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateDomainLayoutRequest;
|
|
44
|
+
output: CreateDomainLayoutResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateDomainLayoutCommandInput;
|
|
48
|
+
output: CreateDomainLayoutCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|