Skip to content

Commit

Permalink
feat(client-simspaceweaver): BucketName and ObjectKey are now require…
Browse files Browse the repository at this point in the history
…d for the S3Location data type. BucketName is now required for the S3Destination data type.
  • Loading branch information
awstools committed Sep 7, 2023
1 parent 1f1a811 commit ae379b4
Show file tree
Hide file tree
Showing 5 changed files with 2,792 additions and 2,785 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotOutput, __Met
* const input = { // CreateSnapshotInput
* Simulation: "STRING_VALUE", // required
* Destination: { // S3Destination
* BucketName: "STRING_VALUE",
* BucketName: "STRING_VALUE", // required
* ObjectKeyPrefix: "STRING_VALUE",
* },
* };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
* // Status: "STRING_VALUE",
* // TargetStatus: "STRING_VALUE",
* // SchemaS3Location: { // S3Location
* // BucketName: "STRING_VALUE",
* // ObjectKey: "STRING_VALUE",
* // BucketName: "STRING_VALUE", // required
* // ObjectKey: "STRING_VALUE", // required
* // },
* // SchemaError: "STRING_VALUE",
* // LoggingConfiguration: { // LoggingConfiguration
Expand Down Expand Up @@ -87,8 +87,8 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
* // },
* // MaximumDuration: "STRING_VALUE",
* // SnapshotS3Location: {
* // BucketName: "STRING_VALUE",
* // ObjectKey: "STRING_VALUE",
* // BucketName: "STRING_VALUE", // required
* // ObjectKey: "STRING_VALUE", // required
* // },
* // StartError: "STRING_VALUE",
* // };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,16 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
* Description: "STRING_VALUE",
* RoleArn: "STRING_VALUE", // required
* SchemaS3Location: { // S3Location
* BucketName: "STRING_VALUE",
* ObjectKey: "STRING_VALUE",
* BucketName: "STRING_VALUE", // required
* ObjectKey: "STRING_VALUE", // required
* },
* MaximumDuration: "STRING_VALUE",
* Tags: { // TagMap
* "<keys>": "STRING_VALUE",
* },
* SnapshotS3Location: {
* BucketName: "STRING_VALUE",
* ObjectKey: "STRING_VALUE",
* BucketName: "STRING_VALUE", // required
* ObjectKey: "STRING_VALUE", // required
* },
* };
* const command = new StartSimulationCommand(input);
Expand Down
6 changes: 3 additions & 3 deletions clients/client-simspaceweaver/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export interface S3Destination {
* configuring, and working with Amazon S3 buckets</a> in the <i>Amazon Simple Storage Service User
* Guide</i>.</p>
*/
BucketName?: string;
BucketName: string | undefined;

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

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

/**
Expand Down
Loading

0 comments on commit ae379b4

Please sign in to comment.