Skip to content

Commit ae379b4

Browse files
author
awstools
committed
feat(client-simspaceweaver): BucketName and ObjectKey are now required for the S3Location data type. BucketName is now required for the S3Destination data type.
1 parent 1f1a811 commit ae379b4

File tree

5 files changed

+2792
-2785
lines changed

5 files changed

+2792
-2785
lines changed

clients/client-simspaceweaver/src/commands/CreateSnapshotCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotOutput, __Met
101101
* const input = { // CreateSnapshotInput
102102
* Simulation: "STRING_VALUE", // required
103103
* Destination: { // S3Destination
104-
* BucketName: "STRING_VALUE",
104+
* BucketName: "STRING_VALUE", // required
105105
* ObjectKeyPrefix: "STRING_VALUE",
106106
* },
107107
* };

clients/client-simspaceweaver/src/commands/DescribeSimulationCommand.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
5858
* // Status: "STRING_VALUE",
5959
* // TargetStatus: "STRING_VALUE",
6060
* // SchemaS3Location: { // S3Location
61-
* // BucketName: "STRING_VALUE",
62-
* // ObjectKey: "STRING_VALUE",
61+
* // BucketName: "STRING_VALUE", // required
62+
* // ObjectKey: "STRING_VALUE", // required
6363
* // },
6464
* // SchemaError: "STRING_VALUE",
6565
* // LoggingConfiguration: { // LoggingConfiguration
@@ -87,8 +87,8 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
8787
* // },
8888
* // MaximumDuration: "STRING_VALUE",
8989
* // SnapshotS3Location: {
90-
* // BucketName: "STRING_VALUE",
91-
* // ObjectKey: "STRING_VALUE",
90+
* // BucketName: "STRING_VALUE", // required
91+
* // ObjectKey: "STRING_VALUE", // required
9292
* // },
9393
* // StartError: "STRING_VALUE",
9494
* // };

clients/client-simspaceweaver/src/commands/StartSimulationCommand.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
5858
* Description: "STRING_VALUE",
5959
* RoleArn: "STRING_VALUE", // required
6060
* SchemaS3Location: { // S3Location
61-
* BucketName: "STRING_VALUE",
62-
* ObjectKey: "STRING_VALUE",
61+
* BucketName: "STRING_VALUE", // required
62+
* ObjectKey: "STRING_VALUE", // required
6363
* },
6464
* MaximumDuration: "STRING_VALUE",
6565
* Tags: { // TagMap
6666
* "<keys>": "STRING_VALUE",
6767
* },
6868
* SnapshotS3Location: {
69-
* BucketName: "STRING_VALUE",
70-
* ObjectKey: "STRING_VALUE",
69+
* BucketName: "STRING_VALUE", // required
70+
* ObjectKey: "STRING_VALUE", // required
7171
* },
7272
* };
7373
* const command = new StartSimulationCommand(input);

clients/client-simspaceweaver/src/models/models_0.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export interface S3Destination {
129129
* configuring, and working with Amazon S3 buckets</a> in the <i>Amazon Simple Storage Service User
130130
* Guide</i>.</p>
131131
*/
132-
BucketName?: string;
132+
BucketName: string | undefined;
133133

134134
/**
135135
* @public
@@ -568,7 +568,7 @@ export interface S3Location {
568568
* configuring, and working with Amazon S3 buckets</a> in the <i>Amazon Simple Storage Service User
569569
* Guide</i>.</p>
570570
*/
571-
BucketName?: string;
571+
BucketName: string | undefined;
572572

573573
/**
574574
* @public
@@ -577,7 +577,7 @@ export interface S3Location {
577577
* downloading, and working with objects in Amazon S3</a> in the <i>Amazon Simple Storage Service User
578578
* Guide</i>.</p>
579579
*/
580-
ObjectKey?: string;
580+
ObjectKey: string | undefined;
581581
}
582582

583583
/**

0 commit comments

Comments
 (0)