Skip to content

Commit 5dd5cd2

Browse files
author
awstools
committed
feat(client-b2bi): Added and updated APIs to support outbound EDI transformations
1 parent 5951f8e commit 5dd5cd2

24 files changed

+3342
-304
lines changed

clients/client-b2bi/README.md

+16
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,14 @@ CreateProfile
236236

237237
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/b2bi/command/CreateProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-b2bi/Interface/CreateProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-b2bi/Interface/CreateProfileCommandOutput/)
238238

239+
</details>
240+
<details>
241+
<summary>
242+
CreateStarterMappingTemplate
243+
</summary>
244+
245+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/b2bi/command/CreateStarterMappingTemplateCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-b2bi/Interface/CreateStarterMappingTemplateCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-b2bi/Interface/CreateStarterMappingTemplateCommandOutput/)
246+
239247
</details>
240248
<details>
241249
<summary>
@@ -372,6 +380,14 @@ TagResource
372380

373381
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/b2bi/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-b2bi/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-b2bi/Interface/TagResourceCommandOutput/)
374382

383+
</details>
384+
<details>
385+
<summary>
386+
TestConversion
387+
</summary>
388+
389+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/b2bi/command/TestConversionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-b2bi/Interface/TestConversionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-b2bi/Interface/TestConversionCommandOutput/)
390+
375391
</details>
376392
<details>
377393
<summary>

clients/client-b2bi/src/B2bi.ts

+43
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ import {
1818
CreateProfileCommandInput,
1919
CreateProfileCommandOutput,
2020
} from "./commands/CreateProfileCommand";
21+
import {
22+
CreateStarterMappingTemplateCommand,
23+
CreateStarterMappingTemplateCommandInput,
24+
CreateStarterMappingTemplateCommandOutput,
25+
} from "./commands/CreateStarterMappingTemplateCommand";
2126
import {
2227
CreateTransformerCommand,
2328
CreateTransformerCommandInput,
@@ -95,6 +100,11 @@ import {
95100
StartTransformerJobCommandOutput,
96101
} from "./commands/StartTransformerJobCommand";
97102
import { TagResourceCommand, TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
103+
import {
104+
TestConversionCommand,
105+
TestConversionCommandInput,
106+
TestConversionCommandOutput,
107+
} from "./commands/TestConversionCommand";
98108
import { TestMappingCommand, TestMappingCommandInput, TestMappingCommandOutput } from "./commands/TestMappingCommand";
99109
import { TestParsingCommand, TestParsingCommandInput, TestParsingCommandOutput } from "./commands/TestParsingCommand";
100110
import {
@@ -127,6 +137,7 @@ const commands = {
127137
CreateCapabilityCommand,
128138
CreatePartnershipCommand,
129139
CreateProfileCommand,
140+
CreateStarterMappingTemplateCommand,
130141
CreateTransformerCommand,
131142
DeleteCapabilityCommand,
132143
DeletePartnershipCommand,
@@ -144,6 +155,7 @@ const commands = {
144155
ListTransformersCommand,
145156
StartTransformerJobCommand,
146157
TagResourceCommand,
158+
TestConversionCommand,
147159
TestMappingCommand,
148160
TestParsingCommand,
149161
UntagResourceCommand,
@@ -199,6 +211,23 @@ export interface B2bi {
199211
cb: (err: any, data?: CreateProfileCommandOutput) => void
200212
): void;
201213

214+
/**
215+
* @see {@link CreateStarterMappingTemplateCommand}
216+
*/
217+
createStarterMappingTemplate(
218+
args: CreateStarterMappingTemplateCommandInput,
219+
options?: __HttpHandlerOptions
220+
): Promise<CreateStarterMappingTemplateCommandOutput>;
221+
createStarterMappingTemplate(
222+
args: CreateStarterMappingTemplateCommandInput,
223+
cb: (err: any, data?: CreateStarterMappingTemplateCommandOutput) => void
224+
): void;
225+
createStarterMappingTemplate(
226+
args: CreateStarterMappingTemplateCommandInput,
227+
options: __HttpHandlerOptions,
228+
cb: (err: any, data?: CreateStarterMappingTemplateCommandOutput) => void
229+
): void;
230+
202231
/**
203232
* @see {@link CreateTransformerCommand}
204233
*/
@@ -456,6 +485,20 @@ export interface B2bi {
456485
cb: (err: any, data?: TagResourceCommandOutput) => void
457486
): void;
458487

488+
/**
489+
* @see {@link TestConversionCommand}
490+
*/
491+
testConversion(
492+
args: TestConversionCommandInput,
493+
options?: __HttpHandlerOptions
494+
): Promise<TestConversionCommandOutput>;
495+
testConversion(args: TestConversionCommandInput, cb: (err: any, data?: TestConversionCommandOutput) => void): void;
496+
testConversion(
497+
args: TestConversionCommandInput,
498+
options: __HttpHandlerOptions,
499+
cb: (err: any, data?: TestConversionCommandOutput) => void
500+
): void;
501+
459502
/**
460503
* @see {@link TestMappingCommand}
461504
*/

clients/client-b2bi/src/B2biClient.ts

+9
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ import {
5656
import { CreateCapabilityCommandInput, CreateCapabilityCommandOutput } from "./commands/CreateCapabilityCommand";
5757
import { CreatePartnershipCommandInput, CreatePartnershipCommandOutput } from "./commands/CreatePartnershipCommand";
5858
import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
59+
import {
60+
CreateStarterMappingTemplateCommandInput,
61+
CreateStarterMappingTemplateCommandOutput,
62+
} from "./commands/CreateStarterMappingTemplateCommand";
5963
import { CreateTransformerCommandInput, CreateTransformerCommandOutput } from "./commands/CreateTransformerCommand";
6064
import { DeleteCapabilityCommandInput, DeleteCapabilityCommandOutput } from "./commands/DeleteCapabilityCommand";
6165
import { DeletePartnershipCommandInput, DeletePartnershipCommandOutput } from "./commands/DeletePartnershipCommand";
@@ -79,6 +83,7 @@ import {
7983
StartTransformerJobCommandOutput,
8084
} from "./commands/StartTransformerJobCommand";
8185
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
86+
import { TestConversionCommandInput, TestConversionCommandOutput } from "./commands/TestConversionCommand";
8287
import { TestMappingCommandInput, TestMappingCommandOutput } from "./commands/TestMappingCommand";
8388
import { TestParsingCommandInput, TestParsingCommandOutput } from "./commands/TestParsingCommand";
8489
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
@@ -104,6 +109,7 @@ export type ServiceInputTypes =
104109
| CreateCapabilityCommandInput
105110
| CreatePartnershipCommandInput
106111
| CreateProfileCommandInput
112+
| CreateStarterMappingTemplateCommandInput
107113
| CreateTransformerCommandInput
108114
| DeleteCapabilityCommandInput
109115
| DeletePartnershipCommandInput
@@ -121,6 +127,7 @@ export type ServiceInputTypes =
121127
| ListTransformersCommandInput
122128
| StartTransformerJobCommandInput
123129
| TagResourceCommandInput
130+
| TestConversionCommandInput
124131
| TestMappingCommandInput
125132
| TestParsingCommandInput
126133
| UntagResourceCommandInput
@@ -136,6 +143,7 @@ export type ServiceOutputTypes =
136143
| CreateCapabilityCommandOutput
137144
| CreatePartnershipCommandOutput
138145
| CreateProfileCommandOutput
146+
| CreateStarterMappingTemplateCommandOutput
139147
| CreateTransformerCommandOutput
140148
| DeleteCapabilityCommandOutput
141149
| DeletePartnershipCommandOutput
@@ -153,6 +161,7 @@ export type ServiceOutputTypes =
153161
| ListTransformersCommandOutput
154162
| StartTransformerJobCommandOutput
155163
| TagResourceCommandOutput
164+
| TestConversionCommandOutput
156165
| TestMappingCommandOutput
157166
| TestParsingCommandOutput
158167
| UntagResourceCommandOutput

clients/client-b2bi/src/commands/CreateCapabilityCommand.ts

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export interface CreateCapabilityCommandOutput extends CreateCapabilityResponse,
4040
* type: "edi", // required
4141
* configuration: { // CapabilityConfiguration Union: only one key present
4242
* edi: { // EdiConfiguration
43+
* capabilityDirection: "INBOUND" || "OUTBOUND",
4344
* type: { // EdiType Union: only one key present
4445
* x12Details: { // X12Details
4546
* transactionSet: "X12_110" || "X12_180" || "X12_204" || "X12_210" || "X12_211" || "X12_214" || "X12_215" || "X12_259" || "X12_260" || "X12_266" || "X12_269" || "X12_270" || "X12_271" || "X12_274" || "X12_275" || "X12_276" || "X12_277" || "X12_278" || "X12_310" || "X12_315" || "X12_322" || "X12_404" || "X12_410" || "X12_417" || "X12_421" || "X12_426" || "X12_810" || "X12_820" || "X12_824" || "X12_830" || "X12_832" || "X12_834" || "X12_835" || "X12_837" || "X12_844" || "X12_846" || "X12_849" || "X12_850" || "X12_852" || "X12_855" || "X12_856" || "X12_860" || "X12_861" || "X12_864" || "X12_865" || "X12_869" || "X12_870" || "X12_940" || "X12_945" || "X12_990" || "X12_997" || "X12_999" || "X12_270_X279" || "X12_271_X279" || "X12_275_X210" || "X12_275_X211" || "X12_276_X212" || "X12_277_X212" || "X12_277_X214" || "X12_277_X364" || "X12_278_X217" || "X12_820_X218" || "X12_820_X306" || "X12_824_X186" || "X12_834_X220" || "X12_834_X307" || "X12_834_X318" || "X12_835_X221" || "X12_837_X222" || "X12_837_X223" || "X12_837_X224" || "X12_837_X291" || "X12_837_X292" || "X12_837_X298" || "X12_999_X231",
@@ -80,6 +81,7 @@ export interface CreateCapabilityCommandOutput extends CreateCapabilityResponse,
8081
* // type: "edi", // required
8182
* // configuration: { // CapabilityConfiguration Union: only one key present
8283
* // edi: { // EdiConfiguration
84+
* // capabilityDirection: "INBOUND" || "OUTBOUND",
8385
* // type: { // EdiType Union: only one key present
8486
* // x12Details: { // X12Details
8587
* // transactionSet: "X12_110" || "X12_180" || "X12_204" || "X12_210" || "X12_211" || "X12_214" || "X12_215" || "X12_259" || "X12_260" || "X12_266" || "X12_269" || "X12_270" || "X12_271" || "X12_274" || "X12_275" || "X12_276" || "X12_277" || "X12_278" || "X12_310" || "X12_315" || "X12_322" || "X12_404" || "X12_410" || "X12_417" || "X12_421" || "X12_426" || "X12_810" || "X12_820" || "X12_824" || "X12_830" || "X12_832" || "X12_834" || "X12_835" || "X12_837" || "X12_844" || "X12_846" || "X12_849" || "X12_850" || "X12_852" || "X12_855" || "X12_856" || "X12_860" || "X12_861" || "X12_864" || "X12_865" || "X12_869" || "X12_870" || "X12_940" || "X12_945" || "X12_990" || "X12_997" || "X12_999" || "X12_270_X279" || "X12_271_X279" || "X12_275_X210" || "X12_275_X211" || "X12_276_X212" || "X12_277_X212" || "X12_277_X214" || "X12_277_X364" || "X12_278_X217" || "X12_820_X218" || "X12_820_X306" || "X12_824_X186" || "X12_834_X220" || "X12_834_X307" || "X12_834_X318" || "X12_835_X221" || "X12_837_X222" || "X12_837_X223" || "X12_837_X224" || "X12_837_X291" || "X12_837_X292" || "X12_837_X298" || "X12_999_X231",

clients/client-b2bi/src/commands/CreatePartnershipCommand.ts

+56
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,34 @@ export interface CreatePartnershipCommandOutput extends CreatePartnershipRespons
4949
* capabilities: [ // PartnershipCapabilities // required
5050
* "STRING_VALUE",
5151
* ],
52+
* capabilityOptions: { // CapabilityOptions
53+
* outboundEdi: { // OutboundEdiOptions Union: only one key present
54+
* x12: { // X12Envelope
55+
* common: { // X12OutboundEdiHeaders
56+
* interchangeControlHeaders: { // X12InterchangeControlHeaders
57+
* senderIdQualifier: "STRING_VALUE",
58+
* senderId: "STRING_VALUE",
59+
* receiverIdQualifier: "STRING_VALUE",
60+
* receiverId: "STRING_VALUE",
61+
* repetitionSeparator: "STRING_VALUE",
62+
* acknowledgmentRequestedCode: "STRING_VALUE",
63+
* usageIndicatorCode: "STRING_VALUE",
64+
* },
65+
* functionalGroupHeaders: { // X12FunctionalGroupHeaders
66+
* applicationSenderCode: "STRING_VALUE",
67+
* applicationReceiverCode: "STRING_VALUE",
68+
* responsibleAgencyCode: "STRING_VALUE",
69+
* },
70+
* delimiters: { // X12Delimiters
71+
* componentSeparator: "STRING_VALUE",
72+
* dataElementSeparator: "STRING_VALUE",
73+
* segmentTerminator: "STRING_VALUE",
74+
* },
75+
* validateEdi: true || false,
76+
* },
77+
* },
78+
* },
79+
* },
5280
* clientToken: "STRING_VALUE",
5381
* tags: [ // TagList
5482
* { // Tag
@@ -69,6 +97,34 @@ export interface CreatePartnershipCommandOutput extends CreatePartnershipRespons
6997
* // capabilities: [ // PartnershipCapabilities
7098
* // "STRING_VALUE",
7199
* // ],
100+
* // capabilityOptions: { // CapabilityOptions
101+
* // outboundEdi: { // OutboundEdiOptions Union: only one key present
102+
* // x12: { // X12Envelope
103+
* // common: { // X12OutboundEdiHeaders
104+
* // interchangeControlHeaders: { // X12InterchangeControlHeaders
105+
* // senderIdQualifier: "STRING_VALUE",
106+
* // senderId: "STRING_VALUE",
107+
* // receiverIdQualifier: "STRING_VALUE",
108+
* // receiverId: "STRING_VALUE",
109+
* // repetitionSeparator: "STRING_VALUE",
110+
* // acknowledgmentRequestedCode: "STRING_VALUE",
111+
* // usageIndicatorCode: "STRING_VALUE",
112+
* // },
113+
* // functionalGroupHeaders: { // X12FunctionalGroupHeaders
114+
* // applicationSenderCode: "STRING_VALUE",
115+
* // applicationReceiverCode: "STRING_VALUE",
116+
* // responsibleAgencyCode: "STRING_VALUE",
117+
* // },
118+
* // delimiters: { // X12Delimiters
119+
* // componentSeparator: "STRING_VALUE",
120+
* // dataElementSeparator: "STRING_VALUE",
121+
* // segmentTerminator: "STRING_VALUE",
122+
* // },
123+
* // validateEdi: true || false,
124+
* // },
125+
* // },
126+
* // },
127+
* // },
72128
* // tradingPartnerId: "STRING_VALUE",
73129
* // createdAt: new Date("TIMESTAMP"), // required
74130
* // };
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
// smithy-typescript generated code
2+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
3+
import { getSerdePlugin } from "@smithy/middleware-serde";
4+
import { Command as $Command } from "@smithy/smithy-client";
5+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
6+
7+
import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient";
8+
import { commonParams } from "../endpoint/EndpointParameters";
9+
import { CreateStarterMappingTemplateRequest, CreateStarterMappingTemplateResponse } from "../models/models_0";
10+
import {
11+
de_CreateStarterMappingTemplateCommand,
12+
se_CreateStarterMappingTemplateCommand,
13+
} from "../protocols/Aws_json1_0";
14+
15+
/**
16+
* @public
17+
*/
18+
export type { __MetadataBearer };
19+
export { $Command };
20+
/**
21+
* @public
22+
*
23+
* The input for {@link CreateStarterMappingTemplateCommand}.
24+
*/
25+
export interface CreateStarterMappingTemplateCommandInput extends CreateStarterMappingTemplateRequest {}
26+
/**
27+
* @public
28+
*
29+
* The output of {@link CreateStarterMappingTemplateCommand}.
30+
*/
31+
export interface CreateStarterMappingTemplateCommandOutput
32+
extends CreateStarterMappingTemplateResponse,
33+
__MetadataBearer {}
34+
35+
/**
36+
* <p>Amazon Web Services B2B Data Interchange uses a mapping template in JSONata or XSLT format to transform a customer input file into a JSON or XML file that can be converted to EDI.</p>
37+
* <p>If you provide a sample EDI file with the same structure as the EDI files that you wish to generate, then the service can generate a mapping template.
38+
* The starter template contains placeholder values which you can replace with JSONata or XSLT expressions to take data from your input file and insert it
39+
* into the JSON or XML file that is used to generate the EDI.</p>
40+
* <p>If you do not provide a sample EDI file, then the service can generate a mapping template based on the EDI settings in the <code>templateDetails</code> parameter.
41+
* </p>
42+
* <p> Currently, we only support generating a template that can generate the input to produce an Outbound X12 EDI file.</p>
43+
* @example
44+
* Use a bare-bones client and the command you need to make an API call.
45+
* ```javascript
46+
* import { B2biClient, CreateStarterMappingTemplateCommand } from "@aws-sdk/client-b2bi"; // ES Modules import
47+
* // const { B2biClient, CreateStarterMappingTemplateCommand } = require("@aws-sdk/client-b2bi"); // CommonJS import
48+
* const client = new B2biClient(config);
49+
* const input = { // CreateStarterMappingTemplateRequest
50+
* outputSampleLocation: { // S3Location
51+
* bucketName: "STRING_VALUE",
52+
* key: "STRING_VALUE",
53+
* },
54+
* mappingType: "JSONATA" || "XSLT", // required
55+
* templateDetails: { // TemplateDetails Union: only one key present
56+
* x12: { // X12Details
57+
* transactionSet: "X12_110" || "X12_180" || "X12_204" || "X12_210" || "X12_211" || "X12_214" || "X12_215" || "X12_259" || "X12_260" || "X12_266" || "X12_269" || "X12_270" || "X12_271" || "X12_274" || "X12_275" || "X12_276" || "X12_277" || "X12_278" || "X12_310" || "X12_315" || "X12_322" || "X12_404" || "X12_410" || "X12_417" || "X12_421" || "X12_426" || "X12_810" || "X12_820" || "X12_824" || "X12_830" || "X12_832" || "X12_834" || "X12_835" || "X12_837" || "X12_844" || "X12_846" || "X12_849" || "X12_850" || "X12_852" || "X12_855" || "X12_856" || "X12_860" || "X12_861" || "X12_864" || "X12_865" || "X12_869" || "X12_870" || "X12_940" || "X12_945" || "X12_990" || "X12_997" || "X12_999" || "X12_270_X279" || "X12_271_X279" || "X12_275_X210" || "X12_275_X211" || "X12_276_X212" || "X12_277_X212" || "X12_277_X214" || "X12_277_X364" || "X12_278_X217" || "X12_820_X218" || "X12_820_X306" || "X12_824_X186" || "X12_834_X220" || "X12_834_X307" || "X12_834_X318" || "X12_835_X221" || "X12_837_X222" || "X12_837_X223" || "X12_837_X224" || "X12_837_X291" || "X12_837_X292" || "X12_837_X298" || "X12_999_X231",
58+
* version: "VERSION_4010" || "VERSION_4030" || "VERSION_5010" || "VERSION_5010_HIPAA",
59+
* },
60+
* },
61+
* };
62+
* const command = new CreateStarterMappingTemplateCommand(input);
63+
* const response = await client.send(command);
64+
* // { // CreateStarterMappingTemplateResponse
65+
* // mappingTemplate: "STRING_VALUE", // required
66+
* // };
67+
*
68+
* ```
69+
*
70+
* @param CreateStarterMappingTemplateCommandInput - {@link CreateStarterMappingTemplateCommandInput}
71+
* @returns {@link CreateStarterMappingTemplateCommandOutput}
72+
* @see {@link CreateStarterMappingTemplateCommandInput} for command's `input` shape.
73+
* @see {@link CreateStarterMappingTemplateCommandOutput} for command's `response` shape.
74+
* @see {@link B2biClientResolvedConfig | config} for B2biClient's `config` shape.
75+
*
76+
* @throws {@link AccessDeniedException} (client fault)
77+
* <p>You do not have sufficient access to perform this action.</p>
78+
*
79+
* @throws {@link InternalServerException} (server fault)
80+
* <p>This exception is thrown when an error occurs in the Amazon Web Services B2B Data Interchange service.</p>
81+
*
82+
* @throws {@link ResourceNotFoundException} (client fault)
83+
* <p>Occurs when the requested resource does not exist, or cannot be found. In some cases, the resource exists in a region other than the region specified in the API call.</p>
84+
*
85+
* @throws {@link ValidationException} (client fault)
86+
* <p>Occurs when a B2BI object cannot be validated against a request from another object.</p>
87+
*
88+
* @throws {@link B2biServiceException}
89+
* <p>Base exception class for all service exceptions from B2bi service.</p>
90+
*
91+
* @public
92+
*/
93+
export class CreateStarterMappingTemplateCommand extends $Command
94+
.classBuilder<
95+
CreateStarterMappingTemplateCommandInput,
96+
CreateStarterMappingTemplateCommandOutput,
97+
B2biClientResolvedConfig,
98+
ServiceInputTypes,
99+
ServiceOutputTypes
100+
>()
101+
.ep(commonParams)
102+
.m(function (this: any, Command: any, cs: any, config: B2biClientResolvedConfig, o: any) {
103+
return [
104+
getSerdePlugin(config, this.serialize, this.deserialize),
105+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
106+
];
107+
})
108+
.s("B2BI", "CreateStarterMappingTemplate", {})
109+
.n("B2biClient", "CreateStarterMappingTemplateCommand")
110+
.f(void 0, void 0)
111+
.ser(se_CreateStarterMappingTemplateCommand)
112+
.de(de_CreateStarterMappingTemplateCommand)
113+
.build() {
114+
/** @internal type navigation helper, not in runtime. */
115+
protected declare static __types: {
116+
api: {
117+
input: CreateStarterMappingTemplateRequest;
118+
output: CreateStarterMappingTemplateResponse;
119+
};
120+
sdk: {
121+
input: CreateStarterMappingTemplateCommandInput;
122+
output: CreateStarterMappingTemplateCommandOutput;
123+
};
124+
};
125+
}

0 commit comments

Comments
 (0)