@aws-sdk/client-simspaceweaver 3.405.0 → 3.409.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSimulationCommand.d.ts +4 -4
- package/dist-types/commands/StartSimulationCommand.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +3 -3
- package/dist-types/ts3.4/models/models_0.d.ts +3 -3
- package/package.json +12 -12
|
@@ -88,7 +88,7 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotOutput, __Met
|
|
|
88
88
|
* const input = { // CreateSnapshotInput
|
|
89
89
|
* Simulation: "STRING_VALUE", // required
|
|
90
90
|
* Destination: { // S3Destination
|
|
91
|
-
* BucketName: "STRING_VALUE",
|
|
91
|
+
* BucketName: "STRING_VALUE", // required
|
|
92
92
|
* ObjectKeyPrefix: "STRING_VALUE",
|
|
93
93
|
* },
|
|
94
94
|
* };
|
|
@@ -45,8 +45,8 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
|
|
|
45
45
|
* // Status: "STRING_VALUE",
|
|
46
46
|
* // TargetStatus: "STRING_VALUE",
|
|
47
47
|
* // SchemaS3Location: { // S3Location
|
|
48
|
-
* // BucketName: "STRING_VALUE",
|
|
49
|
-
* // ObjectKey: "STRING_VALUE",
|
|
48
|
+
* // BucketName: "STRING_VALUE", // required
|
|
49
|
+
* // ObjectKey: "STRING_VALUE", // required
|
|
50
50
|
* // },
|
|
51
51
|
* // SchemaError: "STRING_VALUE",
|
|
52
52
|
* // LoggingConfiguration: { // LoggingConfiguration
|
|
@@ -74,8 +74,8 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
|
|
|
74
74
|
* // },
|
|
75
75
|
* // MaximumDuration: "STRING_VALUE",
|
|
76
76
|
* // SnapshotS3Location: {
|
|
77
|
-
* // BucketName: "STRING_VALUE",
|
|
78
|
-
* // ObjectKey: "STRING_VALUE",
|
|
77
|
+
* // BucketName: "STRING_VALUE", // required
|
|
78
|
+
* // ObjectKey: "STRING_VALUE", // required
|
|
79
79
|
* // },
|
|
80
80
|
* // StartError: "STRING_VALUE",
|
|
81
81
|
* // };
|
|
@@ -41,16 +41,16 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
|
|
|
41
41
|
* Description: "STRING_VALUE",
|
|
42
42
|
* RoleArn: "STRING_VALUE", // required
|
|
43
43
|
* SchemaS3Location: { // S3Location
|
|
44
|
-
* BucketName: "STRING_VALUE",
|
|
45
|
-
* ObjectKey: "STRING_VALUE",
|
|
44
|
+
* BucketName: "STRING_VALUE", // required
|
|
45
|
+
* ObjectKey: "STRING_VALUE", // required
|
|
46
46
|
* },
|
|
47
47
|
* MaximumDuration: "STRING_VALUE",
|
|
48
48
|
* Tags: { // TagMap
|
|
49
49
|
* "<keys>": "STRING_VALUE",
|
|
50
50
|
* },
|
|
51
51
|
* SnapshotS3Location: {
|
|
52
|
-
* BucketName: "STRING_VALUE",
|
|
53
|
-
* ObjectKey: "STRING_VALUE",
|
|
52
|
+
* BucketName: "STRING_VALUE", // required
|
|
53
|
+
* ObjectKey: "STRING_VALUE", // required
|
|
54
54
|
* },
|
|
55
55
|
* };
|
|
56
56
|
* const command = new StartSimulationCommand(input);
|
|
@@ -101,7 +101,7 @@ export interface S3Destination {
|
|
|
101
101
|
* configuring, and working with Amazon S3 buckets</a> in the <i>Amazon Simple Storage Service User
|
|
102
102
|
* Guide</i>.</p>
|
|
103
103
|
*/
|
|
104
|
-
BucketName
|
|
104
|
+
BucketName: string | undefined;
|
|
105
105
|
/**
|
|
106
106
|
* @public
|
|
107
107
|
* <p>A string prefix for an Amazon S3 object key. It's usually a folder name.
|
|
@@ -475,7 +475,7 @@ export interface S3Location {
|
|
|
475
475
|
* configuring, and working with Amazon S3 buckets</a> in the <i>Amazon Simple Storage Service User
|
|
476
476
|
* Guide</i>.</p>
|
|
477
477
|
*/
|
|
478
|
-
BucketName
|
|
478
|
+
BucketName: string | undefined;
|
|
479
479
|
/**
|
|
480
480
|
* @public
|
|
481
481
|
* <p>The key name of an object in Amazon S3. For more information about Amazon S3 objects and object
|
|
@@ -483,7 +483,7 @@ export interface S3Location {
|
|
|
483
483
|
* downloading, and working with objects in Amazon S3</a> in the <i>Amazon Simple Storage Service User
|
|
484
484
|
* Guide</i>.</p>
|
|
485
485
|
*/
|
|
486
|
-
ObjectKey
|
|
486
|
+
ObjectKey: string | undefined;
|
|
487
487
|
}
|
|
488
488
|
/**
|
|
489
489
|
* @public
|
|
@@ -37,7 +37,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
37
37
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
38
38
|
}
|
|
39
39
|
export interface S3Destination {
|
|
40
|
-
BucketName
|
|
40
|
+
BucketName: string | undefined;
|
|
41
41
|
ObjectKeyPrefix?: string;
|
|
42
42
|
}
|
|
43
43
|
export interface CreateSnapshotInput {
|
|
@@ -148,8 +148,8 @@ export interface LoggingConfiguration {
|
|
|
148
148
|
Destinations?: LogDestination[];
|
|
149
149
|
}
|
|
150
150
|
export interface S3Location {
|
|
151
|
-
BucketName
|
|
152
|
-
ObjectKey
|
|
151
|
+
BucketName: string | undefined;
|
|
152
|
+
ObjectKey: string | undefined;
|
|
153
153
|
}
|
|
154
154
|
export declare const SimulationStatus: {
|
|
155
155
|
readonly DELETED: "DELETED";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-simspaceweaver",
|
|
3
3
|
"description": "AWS SDK for JavaScript Simspaceweaver Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.409.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.409.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.409.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.408.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.408.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.408.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.408.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.408.0",
|
|
31
|
+
"@aws-sdk/types": "3.408.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.408.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.408.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.408.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^2.0.5",
|
|
37
37
|
"@smithy/hash-node": "^2.0.5",
|