@aws-sdk/client-pipes 3.529.1 → 3.535.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/Pipes.d.ts +2 -1
- package/dist-types/PipesClient.d.ts +1 -1
- package/dist-types/commands/CreatePipeCommand.d.ts +2 -1
- package/dist-types/commands/DeletePipeCommand.d.ts +2 -1
- package/dist-types/commands/DescribePipeCommand.d.ts +2 -1
- package/dist-types/commands/ListPipesCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/StartPipeCommand.d.ts +2 -1
- package/dist-types/commands/StopPipeCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdatePipeCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +419 -419
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/Pipes.d.ts +1 -0
- package/dist-types/ts3.4/commands/CreatePipeCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeletePipeCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribePipeCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListPipesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartPipeCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StopPipeCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdatePipeCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
package/dist-types/Pipes.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export interface Pipes {
|
|
|
32
32
|
/**
|
|
33
33
|
* @see {@link ListPipesCommand}
|
|
34
34
|
*/
|
|
35
|
+
listPipes(): Promise<ListPipesCommandOutput>;
|
|
35
36
|
listPipes(args: ListPipesCommandInput, options?: __HttpHandlerOptions): Promise<ListPipesCommandOutput>;
|
|
36
37
|
listPipes(args: ListPipesCommandInput, cb: (err: any, data?: ListPipesCommandOutput) => void): void;
|
|
37
38
|
listPipes(args: ListPipesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipesCommandOutput) => void): void;
|
|
@@ -73,10 +74,10 @@ export interface Pipes {
|
|
|
73
74
|
updatePipe(args: UpdatePipeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePipeCommandOutput) => void): void;
|
|
74
75
|
}
|
|
75
76
|
/**
|
|
76
|
-
* @public
|
|
77
77
|
* <p>Amazon EventBridge Pipes connects event sources to targets. Pipes reduces the need for specialized knowledge and integration code when developing
|
|
78
78
|
* event driven architectures. This helps ensures consistency across your company’s applications. With Pipes, the target can be any available EventBridge target.
|
|
79
79
|
* To set up a pipe, you select the event source, add optional event filtering, define optional enrichment, and select the target for the event data. </p>
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class Pipes extends PipesClient implements Pipes {
|
|
82
83
|
}
|
|
@@ -161,10 +161,10 @@ export type PipesClientResolvedConfigType = __SmithyResolvedConfiguration<__Http
|
|
|
161
161
|
export interface PipesClientResolvedConfig extends PipesClientResolvedConfigType {
|
|
162
162
|
}
|
|
163
163
|
/**
|
|
164
|
-
* @public
|
|
165
164
|
* <p>Amazon EventBridge Pipes connects event sources to targets. Pipes reduces the need for specialized knowledge and integration code when developing
|
|
166
165
|
* event driven architectures. This helps ensures consistency across your company’s applications. With Pipes, the target can be any available EventBridge target.
|
|
167
166
|
* To set up a pipe, you select the event source, add optional event filtering, define optional enrichment, and select the target for the event data. </p>
|
|
167
|
+
* @public
|
|
168
168
|
*/
|
|
169
169
|
export declare class PipesClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, PipesClientResolvedConfig> {
|
|
170
170
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreatePipeCommand_base: {
|
|
24
24
|
new (input: CreatePipeCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePipeCommandInput, CreatePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreatePipeCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePipeCommandInput, CreatePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Create a pipe. Amazon EventBridge Pipes connect event sources to targets and reduces the need for specialized knowledge and integration code.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -394,6 +394,7 @@ declare const CreatePipeCommand_base: {
|
|
|
394
394
|
* @throws {@link PipesServiceException}
|
|
395
395
|
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
396
396
|
*
|
|
397
|
+
* @public
|
|
397
398
|
*/
|
|
398
399
|
export declare class CreatePipeCommand extends CreatePipeCommand_base {
|
|
399
400
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeletePipeCommandOutput extends DeletePipeResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeletePipeCommand_base: {
|
|
24
24
|
new (input: DeletePipeCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePipeCommandInput, DeletePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeletePipeCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePipeCommandInput, DeletePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Delete an existing pipe. For more information about pipes, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html">Amazon EventBridge Pipes</a> in the Amazon EventBridge User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -73,6 +73,7 @@ declare const DeletePipeCommand_base: {
|
|
|
73
73
|
* @throws {@link PipesServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class DeletePipeCommand extends DeletePipeCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribePipeCommandOutput extends DescribePipeResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribePipeCommand_base: {
|
|
24
24
|
new (input: DescribePipeCommandInput): import("@smithy/smithy-client").CommandImpl<DescribePipeCommandInput, DescribePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribePipeCommandInput): import("@smithy/smithy-client").CommandImpl<DescribePipeCommandInput, DescribePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get the information about an existing pipe. For more information about pipes, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html">Amazon EventBridge Pipes</a> in the Amazon EventBridge User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -388,6 +388,7 @@ declare const DescribePipeCommand_base: {
|
|
|
388
388
|
* @throws {@link PipesServiceException}
|
|
389
389
|
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
390
390
|
*
|
|
391
|
+
* @public
|
|
391
392
|
*/
|
|
392
393
|
export declare class DescribePipeCommand extends DescribePipeCommand_base {
|
|
393
394
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListPipesCommandOutput extends ListPipesResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListPipesCommand_base: {
|
|
24
24
|
new (input: ListPipesCommandInput): import("@smithy/smithy-client").CommandImpl<ListPipesCommandInput, ListPipesCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListPipesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListPipesCommandInput, ListPipesCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get the pipes associated with this account. For more information about pipes, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html">Amazon EventBridge Pipes</a> in the Amazon EventBridge User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const ListPipesCommand_base: {
|
|
|
82
82
|
* @throws {@link PipesServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class ListPipesCommand extends ListPipesCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays the tags associated with a pipe.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link PipesServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartPipeCommandOutput extends StartPipeResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartPipeCommand_base: {
|
|
24
24
|
new (input: StartPipeCommandInput): import("@smithy/smithy-client").CommandImpl<StartPipeCommandInput, StartPipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartPipeCommandInput): import("@smithy/smithy-client").CommandImpl<StartPipeCommandInput, StartPipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Start an existing pipe.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -73,6 +73,7 @@ declare const StartPipeCommand_base: {
|
|
|
73
73
|
* @throws {@link PipesServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class StartPipeCommand extends StartPipeCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface StopPipeCommandOutput extends StopPipeResponse, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const StopPipeCommand_base: {
|
|
24
24
|
new (input: StopPipeCommandInput): import("@smithy/smithy-client").CommandImpl<StopPipeCommandInput, StopPipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StopPipeCommandInput): import("@smithy/smithy-client").CommandImpl<StopPipeCommandInput, StopPipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Stop an existing pipe.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -73,6 +73,7 @@ declare const StopPipeCommand_base: {
|
|
|
73
73
|
* @throws {@link PipesServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class StopPipeCommand extends StopPipeCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Assigns one or more tags (key-value pairs) to the specified pipe. Tags can
|
|
30
30
|
* help you organize and categorize your resources. You can also use them to scope user
|
|
31
31
|
* permissions by granting a user permission to access or change only resources with certain tag
|
|
@@ -73,6 +73,7 @@ declare const TagResourceCommand_base: {
|
|
|
73
73
|
* @throws {@link PipesServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes one or more tags from the specified pipes.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const UntagResourceCommand_base: {
|
|
|
63
63
|
* @throws {@link PipesServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdatePipeCommand_base: {
|
|
24
24
|
new (input: UpdatePipeCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePipeCommandInput, UpdatePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdatePipeCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePipeCommandInput, UpdatePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Update an existing pipe. When you call <code>UpdatePipe</code>, EventBridge only the updates fields you have specified in the request; the rest remain unchanged.
|
|
30
30
|
* The exception to this is if you modify any Amazon Web Services-service specific fields in the <code>SourceParameters</code>, <code>EnrichmentParameters</code>, or
|
|
31
31
|
* <code>TargetParameters</code> objects. For example, <code>DynamoDBStreamParameters</code> or <code>EventBridgeEventBusParameters</code>.
|
|
@@ -378,6 +378,7 @@ declare const UpdatePipeCommand_base: {
|
|
|
378
378
|
* @throws {@link PipesServiceException}
|
|
379
379
|
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
380
380
|
*
|
|
381
|
+
* @public
|
|
381
382
|
*/
|
|
382
383
|
export declare class UpdatePipeCommand extends UpdatePipeCommand_base {
|
|
383
384
|
}
|