Skip to content

Commit 2181d89

Browse files
committed
chore(Java): re-polymorph
1 parent 7f5e0a1 commit 2181d89

32 files changed

+480
-0
lines changed

DynamoDbEncryption/runtimes/java/src/main/smithy-generated/software/amazon/cryptography/dbencryptionsdk/dynamodb/transforms/model/BatchGetItemInputTransformInput.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@
88

99
public class BatchGetItemInputTransformInput {
1010

11+
/**
12+
* <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
13+
*/
1114
private final BatchGetItemRequest sdkInput;
1215

1316
protected BatchGetItemInputTransformInput(BuilderImpl builder) {
1417
this.sdkInput = builder.sdkInput();
1518
}
1619

20+
/**
21+
* @return <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
22+
*/
1723
public BatchGetItemRequest sdkInput() {
1824
return this.sdkInput;
1925
}
@@ -27,8 +33,14 @@ public static Builder builder() {
2733
}
2834

2935
public interface Builder {
36+
/**
37+
* @param sdkInput <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
38+
*/
3039
Builder sdkInput(BatchGetItemRequest sdkInput);
3140

41+
/**
42+
* @return <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
43+
*/
3244
BatchGetItemRequest sdkInput();
3345

3446
BatchGetItemInputTransformInput build();

DynamoDbEncryption/runtimes/java/src/main/smithy-generated/software/amazon/cryptography/dbencryptionsdk/dynamodb/transforms/model/BatchGetItemInputTransformOutput.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@
88

99
public class BatchGetItemInputTransformOutput {
1010

11+
/**
12+
* <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
13+
*/
1114
private final BatchGetItemRequest transformedInput;
1215

1316
protected BatchGetItemInputTransformOutput(BuilderImpl builder) {
1417
this.transformedInput = builder.transformedInput();
1518
}
1619

20+
/**
21+
* @return <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
22+
*/
1723
public BatchGetItemRequest transformedInput() {
1824
return this.transformedInput;
1925
}
@@ -27,8 +33,14 @@ public static Builder builder() {
2733
}
2834

2935
public interface Builder {
36+
/**
37+
* @param transformedInput <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
38+
*/
3039
Builder transformedInput(BatchGetItemRequest transformedInput);
3140

41+
/**
42+
* @return <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
43+
*/
3244
BatchGetItemRequest transformedInput();
3345

3446
BatchGetItemInputTransformOutput build();

DynamoDbEncryption/runtimes/java/src/main/smithy-generated/software/amazon/cryptography/dbencryptionsdk/dynamodb/transforms/model/BatchGetItemOutputTransformInput.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,31 @@
99

1010
public class BatchGetItemOutputTransformInput {
1111

12+
/**
13+
* <p>Represents the output of a <code>BatchGetItem</code> operation.</p>
14+
*/
1215
private final BatchGetItemResponse sdkOutput;
1316

17+
/**
18+
* <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
19+
*/
1420
private final BatchGetItemRequest originalInput;
1521

1622
protected BatchGetItemOutputTransformInput(BuilderImpl builder) {
1723
this.sdkOutput = builder.sdkOutput();
1824
this.originalInput = builder.originalInput();
1925
}
2026

27+
/**
28+
* @return <p>Represents the output of a <code>BatchGetItem</code> operation.</p>
29+
*/
2130
public BatchGetItemResponse sdkOutput() {
2231
return this.sdkOutput;
2332
}
2433

34+
/**
35+
* @return <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
36+
*/
2537
public BatchGetItemRequest originalInput() {
2638
return this.originalInput;
2739
}
@@ -35,12 +47,24 @@ public static Builder builder() {
3547
}
3648

3749
public interface Builder {
50+
/**
51+
* @param sdkOutput <p>Represents the output of a <code>BatchGetItem</code> operation.</p>
52+
*/
3853
Builder sdkOutput(BatchGetItemResponse sdkOutput);
3954

55+
/**
56+
* @return <p>Represents the output of a <code>BatchGetItem</code> operation.</p>
57+
*/
4058
BatchGetItemResponse sdkOutput();
4159

60+
/**
61+
* @param originalInput <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
62+
*/
4263
Builder originalInput(BatchGetItemRequest originalInput);
4364

65+
/**
66+
* @return <p>Represents the input of a <code>BatchGetItem</code> operation.</p>
67+
*/
4468
BatchGetItemRequest originalInput();
4569

4670
BatchGetItemOutputTransformInput build();

DynamoDbEncryption/runtimes/java/src/main/smithy-generated/software/amazon/cryptography/dbencryptionsdk/dynamodb/transforms/model/BatchGetItemOutputTransformOutput.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@
88

99
public class BatchGetItemOutputTransformOutput {
1010

11+
/**
12+
* <p>Represents the output of a <code>BatchGetItem</code> operation.</p>
13+
*/
1114
private final BatchGetItemResponse transformedOutput;
1215

1316
protected BatchGetItemOutputTransformOutput(BuilderImpl builder) {
1417
this.transformedOutput = builder.transformedOutput();
1518
}
1619

20+
/**
21+
* @return <p>Represents the output of a <code>BatchGetItem</code> operation.</p>
22+
*/
1723
public BatchGetItemResponse transformedOutput() {
1824
return this.transformedOutput;
1925
}
@@ -27,8 +33,14 @@ public static Builder builder() {
2733
}
2834

2935
public interface Builder {
36+
/**
37+
* @param transformedOutput <p>Represents the output of a <code>BatchGetItem</code> operation.</p>
38+
*/
3039
Builder transformedOutput(BatchGetItemResponse transformedOutput);
3140

41+
/**
42+
* @return <p>Represents the output of a <code>BatchGetItem</code> operation.</p>
43+
*/
3244
BatchGetItemResponse transformedOutput();
3345

3446
BatchGetItemOutputTransformOutput build();

DynamoDbEncryption/runtimes/java/src/main/smithy-generated/software/amazon/cryptography/dbencryptionsdk/dynamodb/transforms/model/BatchWriteItemInputTransformInput.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@
88

99
public class BatchWriteItemInputTransformInput {
1010

11+
/**
12+
* <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
13+
*/
1114
private final BatchWriteItemRequest sdkInput;
1215

1316
protected BatchWriteItemInputTransformInput(BuilderImpl builder) {
1417
this.sdkInput = builder.sdkInput();
1518
}
1619

20+
/**
21+
* @return <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
22+
*/
1723
public BatchWriteItemRequest sdkInput() {
1824
return this.sdkInput;
1925
}
@@ -27,8 +33,14 @@ public static Builder builder() {
2733
}
2834

2935
public interface Builder {
36+
/**
37+
* @param sdkInput <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
38+
*/
3039
Builder sdkInput(BatchWriteItemRequest sdkInput);
3140

41+
/**
42+
* @return <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
43+
*/
3244
BatchWriteItemRequest sdkInput();
3345

3446
BatchWriteItemInputTransformInput build();

DynamoDbEncryption/runtimes/java/src/main/smithy-generated/software/amazon/cryptography/dbencryptionsdk/dynamodb/transforms/model/BatchWriteItemInputTransformOutput.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@
88

99
public class BatchWriteItemInputTransformOutput {
1010

11+
/**
12+
* <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
13+
*/
1114
private final BatchWriteItemRequest transformedInput;
1215

1316
protected BatchWriteItemInputTransformOutput(BuilderImpl builder) {
1417
this.transformedInput = builder.transformedInput();
1518
}
1619

20+
/**
21+
* @return <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
22+
*/
1723
public BatchWriteItemRequest transformedInput() {
1824
return this.transformedInput;
1925
}
@@ -27,8 +33,14 @@ public static Builder builder() {
2733
}
2834

2935
public interface Builder {
36+
/**
37+
* @param transformedInput <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
38+
*/
3039
Builder transformedInput(BatchWriteItemRequest transformedInput);
3140

41+
/**
42+
* @return <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
43+
*/
3244
BatchWriteItemRequest transformedInput();
3345

3446
BatchWriteItemInputTransformOutput build();

DynamoDbEncryption/runtimes/java/src/main/smithy-generated/software/amazon/cryptography/dbencryptionsdk/dynamodb/transforms/model/BatchWriteItemOutputTransformInput.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,31 @@
99

1010
public class BatchWriteItemOutputTransformInput {
1111

12+
/**
13+
* <p>Represents the output of a <code>BatchWriteItem</code> operation.</p>
14+
*/
1215
private final BatchWriteItemResponse sdkOutput;
1316

17+
/**
18+
* <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
19+
*/
1420
private final BatchWriteItemRequest originalInput;
1521

1622
protected BatchWriteItemOutputTransformInput(BuilderImpl builder) {
1723
this.sdkOutput = builder.sdkOutput();
1824
this.originalInput = builder.originalInput();
1925
}
2026

27+
/**
28+
* @return <p>Represents the output of a <code>BatchWriteItem</code> operation.</p>
29+
*/
2130
public BatchWriteItemResponse sdkOutput() {
2231
return this.sdkOutput;
2332
}
2433

34+
/**
35+
* @return <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
36+
*/
2537
public BatchWriteItemRequest originalInput() {
2638
return this.originalInput;
2739
}
@@ -35,12 +47,24 @@ public static Builder builder() {
3547
}
3648

3749
public interface Builder {
50+
/**
51+
* @param sdkOutput <p>Represents the output of a <code>BatchWriteItem</code> operation.</p>
52+
*/
3853
Builder sdkOutput(BatchWriteItemResponse sdkOutput);
3954

55+
/**
56+
* @return <p>Represents the output of a <code>BatchWriteItem</code> operation.</p>
57+
*/
4058
BatchWriteItemResponse sdkOutput();
4159

60+
/**
61+
* @param originalInput <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
62+
*/
4263
Builder originalInput(BatchWriteItemRequest originalInput);
4364

65+
/**
66+
* @return <p>Represents the input of a <code>BatchWriteItem</code> operation.</p>
67+
*/
4468
BatchWriteItemRequest originalInput();
4569

4670
BatchWriteItemOutputTransformInput build();

DynamoDbEncryption/runtimes/java/src/main/smithy-generated/software/amazon/cryptography/dbencryptionsdk/dynamodb/transforms/model/BatchWriteItemOutputTransformOutput.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@
88

99
public class BatchWriteItemOutputTransformOutput {
1010

11+
/**
12+
* <p>Represents the output of a <code>BatchWriteItem</code> operation.</p>
13+
*/
1114
private final BatchWriteItemResponse transformedOutput;
1215

1316
protected BatchWriteItemOutputTransformOutput(BuilderImpl builder) {
1417
this.transformedOutput = builder.transformedOutput();
1518
}
1619

20+
/**
21+
* @return <p>Represents the output of a <code>BatchWriteItem</code> operation.</p>
22+
*/
1723
public BatchWriteItemResponse transformedOutput() {
1824
return this.transformedOutput;
1925
}
@@ -27,8 +33,14 @@ public static Builder builder() {
2733
}
2834

2935
public interface Builder {
36+
/**
37+
* @param transformedOutput <p>Represents the output of a <code>BatchWriteItem</code> operation.</p>
38+
*/
3039
Builder transformedOutput(BatchWriteItemResponse transformedOutput);
3140

41+
/**
42+
* @return <p>Represents the output of a <code>BatchWriteItem</code> operation.</p>
43+
*/
3244
BatchWriteItemResponse transformedOutput();
3345

3446
BatchWriteItemOutputTransformOutput build();

DynamoDbEncryption/runtimes/java/src/main/smithy-generated/software/amazon/cryptography/dbencryptionsdk/dynamodb/transforms/model/DeleteItemInputTransformInput.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@
88

99
public class DeleteItemInputTransformInput {
1010

11+
/**
12+
* <p>Represents the input of a <code>DeleteItem</code> operation.</p>
13+
*/
1114
private final DeleteItemRequest sdkInput;
1215

1316
protected DeleteItemInputTransformInput(BuilderImpl builder) {
1417
this.sdkInput = builder.sdkInput();
1518
}
1619

20+
/**
21+
* @return <p>Represents the input of a <code>DeleteItem</code> operation.</p>
22+
*/
1723
public DeleteItemRequest sdkInput() {
1824
return this.sdkInput;
1925
}
@@ -27,8 +33,14 @@ public static Builder builder() {
2733
}
2834

2935
public interface Builder {
36+
/**
37+
* @param sdkInput <p>Represents the input of a <code>DeleteItem</code> operation.</p>
38+
*/
3039
Builder sdkInput(DeleteItemRequest sdkInput);
3140

41+
/**
42+
* @return <p>Represents the input of a <code>DeleteItem</code> operation.</p>
43+
*/
3244
DeleteItemRequest sdkInput();
3345

3446
DeleteItemInputTransformInput build();

DynamoDbEncryption/runtimes/java/src/main/smithy-generated/software/amazon/cryptography/dbencryptionsdk/dynamodb/transforms/model/DeleteItemInputTransformOutput.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@
88

99
public class DeleteItemInputTransformOutput {
1010

11+
/**
12+
* <p>Represents the input of a <code>DeleteItem</code> operation.</p>
13+
*/
1114
private final DeleteItemRequest transformedInput;
1215

1316
protected DeleteItemInputTransformOutput(BuilderImpl builder) {
1417
this.transformedInput = builder.transformedInput();
1518
}
1619

20+
/**
21+
* @return <p>Represents the input of a <code>DeleteItem</code> operation.</p>
22+
*/
1723
public DeleteItemRequest transformedInput() {
1824
return this.transformedInput;
1925
}
@@ -27,8 +33,14 @@ public static Builder builder() {
2733
}
2834

2935
public interface Builder {
36+
/**
37+
* @param transformedInput <p>Represents the input of a <code>DeleteItem</code> operation.</p>
38+
*/
3039
Builder transformedInput(DeleteItemRequest transformedInput);
3140

41+
/**
42+
* @return <p>Represents the input of a <code>DeleteItem</code> operation.</p>
43+
*/
3244
DeleteItemRequest transformedInput();
3345

3446
DeleteItemInputTransformOutput build();

0 commit comments

Comments
 (0)