@aws-sdk/client-dataexchange 3.295.0 → 3.297.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.
Files changed (40) hide show
  1. package/dist-types/DataExchange.d.ts +30 -0
  2. package/dist-types/DataExchangeClient.d.ts +24 -4
  3. package/dist-types/commands/CancelJobCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateDataSetCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateEventActionCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateJobCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateRevisionCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAssetCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteDataSetCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteEventActionCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteRevisionCommand.d.ts +16 -0
  12. package/dist-types/commands/GetAssetCommand.d.ts +16 -0
  13. package/dist-types/commands/GetDataSetCommand.d.ts +16 -0
  14. package/dist-types/commands/GetEventActionCommand.d.ts +16 -0
  15. package/dist-types/commands/GetJobCommand.d.ts +16 -0
  16. package/dist-types/commands/GetRevisionCommand.d.ts +16 -0
  17. package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListDataSetsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListEventActionsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListJobsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListRevisionAssetsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/RevokeRevisionCommand.d.ts +16 -0
  24. package/dist-types/commands/SendApiAssetCommand.d.ts +16 -0
  25. package/dist-types/commands/StartJobCommand.d.ts +16 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateAssetCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateDataSetCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateEventActionCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateRevisionCommand.d.ts +16 -0
  32. package/dist-types/models/DataExchangeServiceException.d.ts +2 -0
  33. package/dist-types/models/models_0.d.ts +267 -1
  34. package/dist-types/pagination/Interfaces.d.ts +3 -0
  35. package/dist-types/pagination/ListDataSetRevisionsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListDataSetsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListEventActionsPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListRevisionAssetsPaginator.d.ts +3 -0
  40. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { RevokeRevisionRequest, RevokeRevisionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RevokeRevisionCommand}.
8
10
  */
9
11
  export interface RevokeRevisionCommandInput extends RevokeRevisionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RevokeRevisionCommand}.
13
17
  */
14
18
  export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation revokes subscribers' access to a revision.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param RevokeRevisionCommandInput - {@link RevokeRevisionCommandInput}
34
+ * @returns {@link RevokeRevisionCommandOutput}
28
35
  * @see {@link RevokeRevisionCommandInput} for command's `input` shape.
29
36
  * @see {@link RevokeRevisionCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -52,11 +59,20 @@ export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __M
52
59
  export declare class RevokeRevisionCommand extends $Command<RevokeRevisionCommandInput, RevokeRevisionCommandOutput, DataExchangeClientResolvedConfig> {
53
60
  readonly input: RevokeRevisionCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: RevokeRevisionCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeRevisionCommandInput, RevokeRevisionCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { SendApiAssetRequest, SendApiAssetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SendApiAssetCommand}.
8
10
  */
9
11
  export interface SendApiAssetCommandInput extends SendApiAssetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SendApiAssetCommand}.
13
17
  */
14
18
  export interface SendApiAssetCommandOutput extends SendApiAssetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation invokes an API Gateway API asset. The request is proxied to the provider’s API Gateway API.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface SendApiAssetCommandOutput extends SendApiAssetResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param SendApiAssetCommandInput - {@link SendApiAssetCommandInput}
34
+ * @returns {@link SendApiAssetCommandOutput}
28
35
  * @see {@link SendApiAssetCommandInput} for command's `input` shape.
29
36
  * @see {@link SendApiAssetCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -49,11 +56,20 @@ export interface SendApiAssetCommandOutput extends SendApiAssetResponse, __Metad
49
56
  export declare class SendApiAssetCommand extends $Command<SendApiAssetCommandInput, SendApiAssetCommandOutput, DataExchangeClientResolvedConfig> {
50
57
  readonly input: SendApiAssetCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: SendApiAssetCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendApiAssetCommandInput, SendApiAssetCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { StartJobRequest, StartJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartJobCommand}.
8
10
  */
9
11
  export interface StartJobCommandInput extends StartJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartJobCommand}.
13
17
  */
14
18
  export interface StartJobCommandOutput extends StartJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation starts a job.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StartJobCommandOutput extends StartJobResponse, __MetadataBeare
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartJobCommandInput - {@link StartJobCommandInput}
34
+ * @returns {@link StartJobCommandOutput}
28
35
  * @see {@link StartJobCommandInput} for command's `input` shape.
29
36
  * @see {@link StartJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -52,11 +59,20 @@ export interface StartJobCommandOutput extends StartJobResponse, __MetadataBeare
52
59
  export declare class StartJobCommand extends $Command<StartJobCommandInput, StartJobCommandOutput, DataExchangeClientResolvedConfig> {
53
60
  readonly input: StartJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: StartJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartJobCommandInput, StartJobCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { TagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation tags a resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -34,11 +41,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
34
41
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DataExchangeClientResolvedConfig> {
35
42
  readonly input: TagResourceCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: TagResourceCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { UntagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation removes one or more tags from a resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -34,11 +41,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
34
41
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DataExchangeClientResolvedConfig> {
35
42
  readonly input: UntagResourceCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: UntagResourceCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { UpdateAssetRequest, UpdateAssetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateAssetCommand}.
8
10
  */
9
11
  export interface UpdateAssetCommandInput extends UpdateAssetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateAssetCommand}.
13
17
  */
14
18
  export interface UpdateAssetCommandOutput extends UpdateAssetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation updates an asset.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateAssetCommandOutput extends UpdateAssetResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateAssetCommandInput - {@link UpdateAssetCommandInput}
34
+ * @returns {@link UpdateAssetCommandOutput}
28
35
  * @see {@link UpdateAssetCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateAssetCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateAssetCommandOutput extends UpdateAssetResponse, __Metadat
52
59
  export declare class UpdateAssetCommand extends $Command<UpdateAssetCommandInput, UpdateAssetCommandOutput, DataExchangeClientResolvedConfig> {
53
60
  readonly input: UpdateAssetCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateAssetCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAssetCommandInput, UpdateAssetCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { UpdateDataSetRequest, UpdateDataSetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateDataSetCommand}.
8
10
  */
9
11
  export interface UpdateDataSetCommandInput extends UpdateDataSetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateDataSetCommand}.
13
17
  */
14
18
  export interface UpdateDataSetCommandOutput extends UpdateDataSetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation updates a data set.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateDataSetCommandOutput extends UpdateDataSetResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateDataSetCommandInput - {@link UpdateDataSetCommandInput}
34
+ * @returns {@link UpdateDataSetCommandOutput}
28
35
  * @see {@link UpdateDataSetCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateDataSetCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UpdateDataSetCommandOutput extends UpdateDataSetResponse, __Met
49
56
  export declare class UpdateDataSetCommand extends $Command<UpdateDataSetCommandInput, UpdateDataSetCommandOutput, DataExchangeClientResolvedConfig> {
50
57
  readonly input: UpdateDataSetCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UpdateDataSetCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDataSetCommandInput, UpdateDataSetCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { UpdateEventActionRequest, UpdateEventActionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateEventActionCommand}.
8
10
  */
9
11
  export interface UpdateEventActionCommandInput extends UpdateEventActionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateEventActionCommand}.
13
17
  */
14
18
  export interface UpdateEventActionCommandOutput extends UpdateEventActionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation updates the event action.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateEventActionCommandOutput extends UpdateEventActionRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateEventActionCommandInput - {@link UpdateEventActionCommandInput}
34
+ * @returns {@link UpdateEventActionCommandOutput}
28
35
  * @see {@link UpdateEventActionCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateEventActionCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UpdateEventActionCommandOutput extends UpdateEventActionRespons
49
56
  export declare class UpdateEventActionCommand extends $Command<UpdateEventActionCommandInput, UpdateEventActionCommandOutput, DataExchangeClientResolvedConfig> {
50
57
  readonly input: UpdateEventActionCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UpdateEventActionCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEventActionCommandInput, UpdateEventActionCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { UpdateRevisionRequest, UpdateRevisionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateRevisionCommand}.
8
10
  */
9
11
  export interface UpdateRevisionCommandInput extends UpdateRevisionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateRevisionCommand}.
13
17
  */
14
18
  export interface UpdateRevisionCommandOutput extends UpdateRevisionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation updates a revision.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateRevisionCommandOutput extends UpdateRevisionResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateRevisionCommandInput - {@link UpdateRevisionCommandInput}
34
+ * @returns {@link UpdateRevisionCommandOutput}
28
35
  * @see {@link UpdateRevisionCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateRevisionCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateRevisionCommandOutput extends UpdateRevisionResponse, __M
52
59
  export declare class UpdateRevisionCommand extends $Command<UpdateRevisionCommandInput, UpdateRevisionCommandOutput, DataExchangeClientResolvedConfig> {
53
60
  readonly input: UpdateRevisionCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateRevisionCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRevisionCommandInput, UpdateRevisionCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from DataExchange service.
4
6
  */
5
7
  export declare class DataExchangeServiceException extends __ServiceException {