Skip to content

Commit e1bdddf

Browse files
committed
chore: schemas for clients only
1 parent c833e00 commit e1bdddf

File tree

126 files changed

+29960
-236
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+29960
-236
lines changed

private/aws-restjson-server/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"dependencies": {
2121
"@aws-crypto/sha256-browser": "5.2.0",
2222
"@aws-crypto/sha256-js": "5.2.0",
23+
"@aws-sdk/core": "*",
2324
"@aws-sdk/types": "*",
2425
"@aws-smithy/server-common": "1.0.0-alpha.10",
2526
"@smithy/config-resolver": "^4.2.2",

private/aws-restjson-server/src/models/models_0.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5961,6 +5961,12 @@ export interface StreamingTraitsInputOutput {
59615961
blob?: StreamingBlobTypes | undefined;
59625962
}
59635963

5964+
/**
5965+
* @internal
5966+
*/
5967+
export const StreamingTraitsInputOutputFilterSensitiveLog = (obj: StreamingTraitsInputOutput): any => ({
5968+
...obj,
5969+
});
59645970
export namespace StreamingTraitsInputOutput {
59655971
const memberValidators: {
59665972
foo?: __MultiConstraintValidator<string>;
@@ -6007,6 +6013,12 @@ export interface StreamingTraitsRequireLengthInput {
60076013
blob?: StreamingBlobTypes | undefined;
60086014
}
60096015

6016+
/**
6017+
* @internal
6018+
*/
6019+
export const StreamingTraitsRequireLengthInputFilterSensitiveLog = (obj: StreamingTraitsRequireLengthInput): any => ({
6020+
...obj,
6021+
});
60106022
export namespace StreamingTraitsRequireLengthInput {
60116023
const memberValidators: {
60126024
foo?: __MultiConstraintValidator<string>;
@@ -6053,6 +6065,14 @@ export interface StreamingTraitsWithMediaTypeInputOutput {
60536065
blob?: StreamingBlobTypes | undefined;
60546066
}
60556067

6068+
/**
6069+
* @internal
6070+
*/
6071+
export const StreamingTraitsWithMediaTypeInputOutputFilterSensitiveLog = (
6072+
obj: StreamingTraitsWithMediaTypeInputOutput
6073+
): any => ({
6074+
...obj,
6075+
});
60566076
export namespace StreamingTraitsWithMediaTypeInputOutput {
60576077
const memberValidators: {
60586078
foo?: __MultiConstraintValidator<string>;

0 commit comments

Comments
 (0)