@aws-sdk/client-pipes 3.587.0 → 3.590.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/README.md +6 -3
- package/dist-cjs/index.js +28 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-types/Pipes.d.ts +6 -3
- package/dist-types/PipesClient.d.ts +10 -7
- package/dist-types/commands/CreatePipeCommand.d.ts +35 -1
- package/dist-types/commands/DescribePipeCommand.d.ts +33 -0
- package/dist-types/commands/TagResourceCommand.d.ts +8 -8
- package/dist-types/commands/UpdatePipeCommand.d.ts +44 -6
- package/dist-types/index.d.ts +6 -3
- package/dist-types/models/models_0.d.ts +625 -282
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/PipesClient.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +56 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +5 -5
|
@@ -18,8 +18,8 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
-
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
22
21
|
region: string | import("@smithy/types").Provider<any>;
|
|
22
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
24
24
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
25
25
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -130,8 +130,8 @@ export interface ClientDefaults
|
|
|
130
130
|
serviceId?: string;
|
|
131
131
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
132
132
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
133
|
-
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
134
133
|
region?: string | __Provider<string>;
|
|
134
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
135
135
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
136
136
|
maxAttempts?: number | __Provider<number>;
|
|
137
137
|
retryMode?: string | __Provider<string>;
|
|
@@ -488,6 +488,61 @@ export interface PipeTargetSqsQueueParameters {
|
|
|
488
488
|
export interface PipeTargetStateMachineParameters {
|
|
489
489
|
InvocationType?: PipeTargetInvocationType;
|
|
490
490
|
}
|
|
491
|
+
export declare const DimensionValueType: {
|
|
492
|
+
readonly VARCHAR: "VARCHAR";
|
|
493
|
+
};
|
|
494
|
+
export type DimensionValueType =
|
|
495
|
+
(typeof DimensionValueType)[keyof typeof DimensionValueType];
|
|
496
|
+
export interface DimensionMapping {
|
|
497
|
+
DimensionValue: string | undefined;
|
|
498
|
+
DimensionValueType: DimensionValueType | undefined;
|
|
499
|
+
DimensionName: string | undefined;
|
|
500
|
+
}
|
|
501
|
+
export declare const EpochTimeUnit: {
|
|
502
|
+
readonly MICROSECONDS: "MICROSECONDS";
|
|
503
|
+
readonly MILLISECONDS: "MILLISECONDS";
|
|
504
|
+
readonly NANOSECONDS: "NANOSECONDS";
|
|
505
|
+
readonly SECONDS: "SECONDS";
|
|
506
|
+
};
|
|
507
|
+
export type EpochTimeUnit = (typeof EpochTimeUnit)[keyof typeof EpochTimeUnit];
|
|
508
|
+
export declare const MeasureValueType: {
|
|
509
|
+
readonly BIGINT: "BIGINT";
|
|
510
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
511
|
+
readonly DOUBLE: "DOUBLE";
|
|
512
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
513
|
+
readonly VARCHAR: "VARCHAR";
|
|
514
|
+
};
|
|
515
|
+
export type MeasureValueType =
|
|
516
|
+
(typeof MeasureValueType)[keyof typeof MeasureValueType];
|
|
517
|
+
export interface MultiMeasureAttributeMapping {
|
|
518
|
+
MeasureValue: string | undefined;
|
|
519
|
+
MeasureValueType: MeasureValueType | undefined;
|
|
520
|
+
MultiMeasureAttributeName: string | undefined;
|
|
521
|
+
}
|
|
522
|
+
export interface MultiMeasureMapping {
|
|
523
|
+
MultiMeasureName: string | undefined;
|
|
524
|
+
MultiMeasureAttributeMappings: MultiMeasureAttributeMapping[] | undefined;
|
|
525
|
+
}
|
|
526
|
+
export interface SingleMeasureMapping {
|
|
527
|
+
MeasureValue: string | undefined;
|
|
528
|
+
MeasureValueType: MeasureValueType | undefined;
|
|
529
|
+
MeasureName: string | undefined;
|
|
530
|
+
}
|
|
531
|
+
export declare const TimeFieldType: {
|
|
532
|
+
readonly EPOCH: "EPOCH";
|
|
533
|
+
readonly TIMESTAMP_FORMAT: "TIMESTAMP_FORMAT";
|
|
534
|
+
};
|
|
535
|
+
export type TimeFieldType = (typeof TimeFieldType)[keyof typeof TimeFieldType];
|
|
536
|
+
export interface PipeTargetTimestreamParameters {
|
|
537
|
+
TimeValue: string | undefined;
|
|
538
|
+
EpochTimeUnit?: EpochTimeUnit;
|
|
539
|
+
TimeFieldType?: TimeFieldType;
|
|
540
|
+
TimestampFormat?: string;
|
|
541
|
+
VersionValue: string | undefined;
|
|
542
|
+
DimensionMappings: DimensionMapping[] | undefined;
|
|
543
|
+
SingleMeasureMappings?: SingleMeasureMapping[];
|
|
544
|
+
MultiMeasureMappings?: MultiMeasureMapping[];
|
|
545
|
+
}
|
|
491
546
|
export interface PipeTargetParameters {
|
|
492
547
|
InputTemplate?: string;
|
|
493
548
|
LambdaFunctionParameters?: PipeTargetLambdaFunctionParameters;
|
|
@@ -501,6 +556,7 @@ export interface PipeTargetParameters {
|
|
|
501
556
|
SageMakerPipelineParameters?: PipeTargetSageMakerPipelineParameters;
|
|
502
557
|
EventBridgeEventBusParameters?: PipeTargetEventBridgeEventBusParameters;
|
|
503
558
|
CloudWatchLogsParameters?: PipeTargetCloudWatchLogsParameters;
|
|
559
|
+
TimestreamParameters?: PipeTargetTimestreamParameters;
|
|
504
560
|
}
|
|
505
561
|
export interface CreatePipeRequest {
|
|
506
562
|
Name: string | undefined;
|
|
@@ -20,10 +20,10 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
23
24
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
24
25
|
import("@smithy/types").UserAgent
|
|
25
26
|
>;
|
|
26
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
27
27
|
credentialDefaultProvider: (
|
|
28
28
|
input: any
|
|
29
29
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pipes",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pipes Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.590.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-pipes",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.590.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.590.0",
|
|
25
|
+
"@aws-sdk/core": "3.588.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.590.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|