File tree Expand file tree Collapse file tree 5 files changed +89
-89
lines changed
aws-protocoltests-json-10/src/models
aws-protocoltests-json/src/models
aws-protocoltests-query/src/models
aws-protocoltests-restjson/src/models
aws-protocoltests-restxml/src/models Expand file tree Collapse file tree 5 files changed +89
-89
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,27 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
33
44import { JSONRPC10ServiceException as __BaseException } from "./JSONRPC10ServiceException" ;
55
6+ export interface GreetingStruct {
7+ hi ?: string ;
8+ }
9+
10+ export namespace GreetingStruct {
11+ /**
12+ * @internal
13+ */
14+ export const filterSensitiveLog = ( obj : GreetingStruct ) : any => ( {
15+ ...obj ,
16+ } ) ;
17+ }
18+
19+ export enum FooEnum {
20+ BAR = "Bar" ,
21+ BAZ = "Baz" ,
22+ FOO = "Foo" ,
23+ ONE = "1" ,
24+ ZERO = "0" ,
25+ }
26+
627export interface ComplexNestedErrorData {
728 Foo ?: string ;
829}
@@ -141,27 +162,6 @@ export class InvalidGreeting extends __BaseException {
141162 }
142163}
143164
144- export enum FooEnum {
145- BAR = "Bar" ,
146- BAZ = "Baz" ,
147- FOO = "Foo" ,
148- ONE = "1" ,
149- ZERO = "0" ,
150- }
151-
152- export interface GreetingStruct {
153- hi ?: string ;
154- }
155-
156- export namespace GreetingStruct {
157- /**
158- * @internal
159- */
160- export const filterSensitiveLog = ( obj : GreetingStruct ) : any => ( {
161- ...obj ,
162- } ) ;
163- }
164-
165165/**
166166 * A union with a representative set of types for members.
167167 */
Original file line number Diff line number Diff line change @@ -7,6 +7,27 @@ import { DocumentType as __DocumentType } from "@aws-sdk/types";
77
88import { JsonProtocolServiceException as __BaseException } from "./JsonProtocolServiceException" ;
99
10+ export interface GreetingStruct {
11+ hi ?: string ;
12+ }
13+
14+ export namespace GreetingStruct {
15+ /**
16+ * @internal
17+ */
18+ export const filterSensitiveLog = ( obj : GreetingStruct ) : any => ( {
19+ ...obj ,
20+ } ) ;
21+ }
22+
23+ export enum FooEnum {
24+ BAR = "Bar" ,
25+ BAZ = "Baz" ,
26+ FOO = "Foo" ,
27+ ONE = "1" ,
28+ ZERO = "0" ,
29+ }
30+
1031export interface ComplexNestedErrorData {
1132 Foo ?: string ;
1233}
@@ -163,14 +184,6 @@ export class InvalidGreeting extends __BaseException {
163184 }
164185}
165186
166- export enum FooEnum {
167- BAR = "Bar" ,
168- BAZ = "Baz" ,
169- FOO = "Foo" ,
170- ONE = "1" ,
171- ZERO = "0" ,
172- }
173-
174187export interface JsonEnumsInputOutput {
175188 fooEnum1 ?: FooEnum | string ;
176189 fooEnum2 ?: FooEnum | string ;
@@ -189,19 +202,6 @@ export namespace JsonEnumsInputOutput {
189202 } ) ;
190203}
191204
192- export interface GreetingStruct {
193- hi ?: string ;
194- }
195-
196- export namespace GreetingStruct {
197- /**
198- * @internal
199- */
200- export const filterSensitiveLog = ( obj : GreetingStruct ) : any => ( {
201- ...obj ,
202- } ) ;
203- }
204-
205205/**
206206 * A union with a representative set of types for members.
207207 */
Original file line number Diff line number Diff line change @@ -3,6 +3,27 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
33
44import { QueryProtocolServiceException as __BaseException } from "./QueryProtocolServiceException" ;
55
6+ export interface GreetingStruct {
7+ hi ?: string ;
8+ }
9+
10+ export namespace GreetingStruct {
11+ /**
12+ * @internal
13+ */
14+ export const filterSensitiveLog = ( obj : GreetingStruct ) : any => ( {
15+ ...obj ,
16+ } ) ;
17+ }
18+
19+ export enum FooEnum {
20+ BAR = "Bar" ,
21+ BAZ = "Baz" ,
22+ FOO = "Foo" ,
23+ ONE = "1" ,
24+ ZERO = "0" ,
25+ }
26+
627export interface EmptyInputAndEmptyOutputInput { }
728
829export namespace EmptyInputAndEmptyOutputInput {
@@ -38,14 +59,6 @@ export namespace HostLabelInput {
3859 } ) ;
3960}
4061
41- export enum FooEnum {
42- BAR = "Bar" ,
43- BAZ = "Baz" ,
44- FOO = "Foo" ,
45- ONE = "1" ,
46- ZERO = "0" ,
47- }
48-
4962export interface FlattenedXmlMapOutput {
5063 myMap ?: { [ key : string ] : FooEnum | string } ;
5164}
@@ -221,19 +234,6 @@ export namespace QueryIdempotencyTokenAutoFillInput {
221234 } ) ;
222235}
223236
224- export interface GreetingStruct {
225- hi ?: string ;
226- }
227-
228- export namespace GreetingStruct {
229- /**
230- * @internal
231- */
232- export const filterSensitiveLog = ( obj : GreetingStruct ) : any => ( {
233- ...obj ,
234- } ) ;
235- }
236-
237237export interface NestedStructWithList {
238238 ListArg ?: string [ ] ;
239239}
Original file line number Diff line number Diff line change @@ -8,6 +8,19 @@ import { Readable } from "stream";
88
99import { RestJsonProtocolServiceException as __BaseException } from "./RestJsonProtocolServiceException" ;
1010
11+ export interface GreetingStruct {
12+ hi ?: string ;
13+ }
14+
15+ export namespace GreetingStruct {
16+ /**
17+ * @internal
18+ */
19+ export const filterSensitiveLog = ( obj : GreetingStruct ) : any => ( {
20+ ...obj ,
21+ } ) ;
22+ }
23+
1124export enum FooEnum {
1225 BAR = "Bar" ,
1326 BAZ = "Baz" ,
@@ -112,19 +125,6 @@ export namespace ConstantQueryStringInput {
112125 } ) ;
113126}
114127
115- export interface GreetingStruct {
116- hi ?: string ;
117- }
118-
119- export namespace GreetingStruct {
120- /**
121- * @internal
122- */
123- export const filterSensitiveLog = ( obj : GreetingStruct ) : any => ( {
124- ...obj ,
125- } ) ;
126- }
127-
128128export interface DocumentTypeInputOutput {
129129 stringValue ?: string ;
130130 documentValue ?: __DocumentType ;
Original file line number Diff line number Diff line change @@ -3,6 +3,19 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
33
44import { RestXmlProtocolServiceException as __BaseException } from "./RestXmlProtocolServiceException" ;
55
6+ export interface GreetingStruct {
7+ hi ?: string ;
8+ }
9+
10+ export namespace GreetingStruct {
11+ /**
12+ * @internal
13+ */
14+ export const filterSensitiveLog = ( obj : GreetingStruct ) : any => ( {
15+ ...obj ,
16+ } ) ;
17+ }
18+
619export enum FooEnum {
720 BAR = "Bar" ,
821 BAZ = "Baz" ,
@@ -749,19 +762,6 @@ export namespace XmlListsInputOutput {
749762 } ) ;
750763}
751764
752- export interface GreetingStruct {
753- hi ?: string ;
754- }
755-
756- export namespace GreetingStruct {
757- /**
758- * @internal
759- */
760- export const filterSensitiveLog = ( obj : GreetingStruct ) : any => ( {
761- ...obj ,
762- } ) ;
763- }
764-
765765export interface XmlMapsInputOutput {
766766 myMap ?: { [ key : string ] : GreetingStruct } ;
767767}
You can’t perform that action at this time.
0 commit comments