@aws-sdk/client-mediaconnect 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/MediaConnect.d.ts +31 -0
  2. package/dist-types/MediaConnectClient.d.ts +24 -4
  3. package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +16 -0
  4. package/dist-types/commands/AddFlowOutputsCommand.d.ts +16 -0
  5. package/dist-types/commands/AddFlowSourcesCommand.d.ts +16 -0
  6. package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateFlowCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteFlowCommand.d.ts +16 -0
  9. package/dist-types/commands/DescribeFlowCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeOfferingCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeReservationCommand.d.ts +16 -0
  12. package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +16 -0
  13. package/dist-types/commands/ListEntitlementsCommand.d.ts +16 -0
  14. package/dist-types/commands/ListFlowsCommand.d.ts +16 -0
  15. package/dist-types/commands/ListOfferingsCommand.d.ts +16 -0
  16. package/dist-types/commands/ListReservationsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  18. package/dist-types/commands/PurchaseOfferingCommand.d.ts +16 -0
  19. package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +16 -0
  20. package/dist-types/commands/RemoveFlowOutputCommand.d.ts +16 -0
  21. package/dist-types/commands/RemoveFlowSourceCommand.d.ts +16 -0
  22. package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +16 -0
  23. package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +16 -0
  24. package/dist-types/commands/StartFlowCommand.d.ts +16 -0
  25. package/dist-types/commands/StopFlowCommand.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/UpdateFlowCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateFlowOutputCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateFlowSourceCommand.d.ts +16 -0
  33. package/dist-types/models/MediaConnectServiceException.d.ts +2 -0
  34. package/dist-types/models/models_0.d.ts +263 -0
  35. package/dist-types/pagination/Interfaces.d.ts +3 -0
  36. package/dist-types/pagination/ListEntitlementsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListFlowsPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListOfferingsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListReservationsPaginator.d.ts +3 -0
  40. package/package.json +30 -30
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
5
  import { RevokeFlowEntitlementRequest, RevokeFlowEntitlementResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RevokeFlowEntitlementCommand}.
8
10
  */
9
11
  export interface RevokeFlowEntitlementCommandInput extends RevokeFlowEntitlementRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RevokeFlowEntitlementCommand}.
13
17
  */
14
18
  export interface RevokeFlowEntitlementCommandOutput extends RevokeFlowEntitlementResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Revokes an entitlement from a flow. Once an entitlement is revoked, the content becomes unavailable to the subscriber and the associated output is removed.
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 RevokeFlowEntitlementCommandOutput extends RevokeFlowEntitlemen
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param RevokeFlowEntitlementCommandInput - {@link RevokeFlowEntitlementCommandInput}
34
+ * @returns {@link RevokeFlowEntitlementCommandOutput}
28
35
  * @see {@link RevokeFlowEntitlementCommandInput} for command's `input` shape.
29
36
  * @see {@link RevokeFlowEntitlementCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
@@ -52,11 +59,20 @@ export interface RevokeFlowEntitlementCommandOutput extends RevokeFlowEntitlemen
52
59
  export declare class RevokeFlowEntitlementCommand extends $Command<RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput, MediaConnectClientResolvedConfig> {
53
60
  readonly input: RevokeFlowEntitlementCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: RevokeFlowEntitlementCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput>;
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 { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
5
  import { StartFlowRequest, StartFlowResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartFlowCommand}.
8
10
  */
9
11
  export interface StartFlowCommandInput extends StartFlowRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartFlowCommand}.
13
17
  */
14
18
  export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Starts a flow.
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 StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartFlowCommandInput - {@link StartFlowCommandInput}
34
+ * @returns {@link StartFlowCommandOutput}
28
35
  * @see {@link StartFlowCommandInput} for command's `input` shape.
29
36
  * @see {@link StartFlowCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
@@ -52,11 +59,20 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
52
59
  export declare class StartFlowCommand extends $Command<StartFlowCommandInput, StartFlowCommandOutput, MediaConnectClientResolvedConfig> {
53
60
  readonly input: StartFlowCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: StartFlowCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartFlowCommandInput, StartFlowCommandOutput>;
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 { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
5
  import { StopFlowRequest, StopFlowResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopFlowCommand}.
8
10
  */
9
11
  export interface StopFlowCommandInput extends StopFlowRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopFlowCommand}.
13
17
  */
14
18
  export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Stops a flow.
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 StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopFlowCommandInput - {@link StopFlowCommandInput}
34
+ * @returns {@link StopFlowCommandOutput}
28
35
  * @see {@link StopFlowCommandInput} for command's `input` shape.
29
36
  * @see {@link StopFlowCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
@@ -52,11 +59,20 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
52
59
  export declare class StopFlowCommand extends $Command<StopFlowCommandInput, StopFlowCommandOutput, MediaConnectClientResolvedConfig> {
53
60
  readonly input: StopFlowCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: StopFlowCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopFlowCommandInput, StopFlowCommandOutput>;
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 { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
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
  * Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they are not changed. When a resource is deleted, the tags associated with that resource are deleted as well.
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 MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
@@ -43,11 +50,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
43
50
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaConnectClientResolvedConfig> {
44
51
  readonly input: TagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: TagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
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
  * Deletes specified tags from a resource.
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 MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
43
50
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaConnectClientResolvedConfig> {
44
51
  readonly input: UntagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UntagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
5
  import { UpdateFlowRequest, UpdateFlowResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateFlowCommand}.
8
10
  */
9
11
  export interface UpdateFlowCommandInput extends UpdateFlowRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateFlowCommand}.
13
17
  */
14
18
  export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Updates flow
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 UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateFlowCommandInput - {@link UpdateFlowCommandInput}
34
+ * @returns {@link UpdateFlowCommandOutput}
28
35
  * @see {@link UpdateFlowCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateFlowCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
52
59
  export declare class UpdateFlowCommand extends $Command<UpdateFlowCommandInput, UpdateFlowCommandOutput, MediaConnectClientResolvedConfig> {
53
60
  readonly input: UpdateFlowCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateFlowCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFlowCommandInput, UpdateFlowCommandOutput>;
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 { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
5
  import { UpdateFlowEntitlementRequest, UpdateFlowEntitlementResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateFlowEntitlementCommand}.
8
10
  */
9
11
  export interface UpdateFlowEntitlementCommandInput extends UpdateFlowEntitlementRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateFlowEntitlementCommand}.
13
17
  */
14
18
  export interface UpdateFlowEntitlementCommandOutput extends UpdateFlowEntitlementResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * You can change an entitlement's description, subscribers, and encryption. If you change the subscribers, the service will remove the outputs that are are used by the subscribers that are removed.
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 UpdateFlowEntitlementCommandOutput extends UpdateFlowEntitlemen
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateFlowEntitlementCommandInput - {@link UpdateFlowEntitlementCommandInput}
34
+ * @returns {@link UpdateFlowEntitlementCommandOutput}
28
35
  * @see {@link UpdateFlowEntitlementCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateFlowEntitlementCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateFlowEntitlementCommandOutput extends UpdateFlowEntitlemen
52
59
  export declare class UpdateFlowEntitlementCommand extends $Command<UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput, MediaConnectClientResolvedConfig> {
53
60
  readonly input: UpdateFlowEntitlementCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateFlowEntitlementCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput>;
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 { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
5
  import { UpdateFlowMediaStreamRequest, UpdateFlowMediaStreamResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateFlowMediaStreamCommand}.
8
10
  */
9
11
  export interface UpdateFlowMediaStreamCommandInput extends UpdateFlowMediaStreamRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateFlowMediaStreamCommand}.
13
17
  */
14
18
  export interface UpdateFlowMediaStreamCommandOutput extends UpdateFlowMediaStreamResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Updates an existing media stream.
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 UpdateFlowMediaStreamCommandOutput extends UpdateFlowMediaStrea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateFlowMediaStreamCommandInput - {@link UpdateFlowMediaStreamCommandInput}
34
+ * @returns {@link UpdateFlowMediaStreamCommandOutput}
28
35
  * @see {@link UpdateFlowMediaStreamCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateFlowMediaStreamCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateFlowMediaStreamCommandOutput extends UpdateFlowMediaStrea
52
59
  export declare class UpdateFlowMediaStreamCommand extends $Command<UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput, MediaConnectClientResolvedConfig> {
53
60
  readonly input: UpdateFlowMediaStreamCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateFlowMediaStreamCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput>;
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 { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
5
  import { UpdateFlowOutputRequest, UpdateFlowOutputResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateFlowOutputCommand}.
8
10
  */
9
11
  export interface UpdateFlowOutputCommandInput extends UpdateFlowOutputRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateFlowOutputCommand}.
13
17
  */
14
18
  export interface UpdateFlowOutputCommandOutput extends UpdateFlowOutputResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Updates an existing flow output.
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 UpdateFlowOutputCommandOutput extends UpdateFlowOutputResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateFlowOutputCommandInput - {@link UpdateFlowOutputCommandInput}
34
+ * @returns {@link UpdateFlowOutputCommandOutput}
28
35
  * @see {@link UpdateFlowOutputCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateFlowOutputCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateFlowOutputCommandOutput extends UpdateFlowOutputResponse,
52
59
  export declare class UpdateFlowOutputCommand extends $Command<UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput, MediaConnectClientResolvedConfig> {
53
60
  readonly input: UpdateFlowOutputCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateFlowOutputCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput>;
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 { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
5
  import { UpdateFlowSourceRequest, UpdateFlowSourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateFlowSourceCommand}.
8
10
  */
9
11
  export interface UpdateFlowSourceCommandInput extends UpdateFlowSourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateFlowSourceCommand}.
13
17
  */
14
18
  export interface UpdateFlowSourceCommandOutput extends UpdateFlowSourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Updates the source of a flow.
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 UpdateFlowSourceCommandOutput extends UpdateFlowSourceResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateFlowSourceCommandInput - {@link UpdateFlowSourceCommandInput}
34
+ * @returns {@link UpdateFlowSourceCommandOutput}
28
35
  * @see {@link UpdateFlowSourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateFlowSourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateFlowSourceCommandOutput extends UpdateFlowSourceResponse,
52
59
  export declare class UpdateFlowSourceCommand extends $Command<UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput, MediaConnectClientResolvedConfig> {
53
60
  readonly input: UpdateFlowSourceCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateFlowSourceCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput>;
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 MediaConnect service.
4
6
  */
5
7
  export declare class MediaConnectServiceException extends __ServiceException {