@aws-sdk/client-pipes 3.687.0 → 3.692.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/models/models_0.d.ts +291 -291
- package/dist-types/ts3.4/models/models_0.d.ts +311 -291
- package/package.json +35 -35
|
@@ -31,14 +31,14 @@ export interface AwsVpcConfiguration {
|
|
|
31
31
|
* a security group, the default security group for the VPC is used.</p>
|
|
32
32
|
* @public
|
|
33
33
|
*/
|
|
34
|
-
SecurityGroups?: string[];
|
|
34
|
+
SecurityGroups?: string[] | undefined;
|
|
35
35
|
/**
|
|
36
36
|
* <p>Specifies whether the task's elastic network interface receives a public IP address. You
|
|
37
37
|
* can specify <code>ENABLED</code> only when <code>LaunchType</code> in
|
|
38
38
|
* <code>EcsParameters</code> is set to <code>FARGATE</code>.</p>
|
|
39
39
|
* @public
|
|
40
40
|
*/
|
|
41
|
-
AssignPublicIp?: AssignPublicIp;
|
|
41
|
+
AssignPublicIp?: AssignPublicIp | undefined;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
44
|
* <p>The array properties for the submitted job, such as the size of the array. The array size can be between 2 and 10,000.
|
|
@@ -50,7 +50,7 @@ export interface BatchArrayProperties {
|
|
|
50
50
|
* <p>The size of the array, if this is an array batch job.</p>
|
|
51
51
|
* @public
|
|
52
52
|
*/
|
|
53
|
-
Size?: number;
|
|
53
|
+
Size?: number | undefined;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
56
|
* <p>The environment variables to send to the container. You can add new environment
|
|
@@ -68,13 +68,13 @@ export interface BatchEnvironmentVariable {
|
|
|
68
68
|
* environment variable.</p>
|
|
69
69
|
* @public
|
|
70
70
|
*/
|
|
71
|
-
Name?: string;
|
|
71
|
+
Name?: string | undefined;
|
|
72
72
|
/**
|
|
73
73
|
* <p>The value of the key-value pair. For environment variables, this is the value of the
|
|
74
74
|
* environment variable.</p>
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
|
-
Value?: string;
|
|
77
|
+
Value?: string | undefined;
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
80
|
* @public
|
|
@@ -289,7 +289,7 @@ export interface BatchContainerOverrides {
|
|
|
289
289
|
* image or the task definition.</p>
|
|
290
290
|
* @public
|
|
291
291
|
*/
|
|
292
|
-
Command?: string[];
|
|
292
|
+
Command?: string[] | undefined;
|
|
293
293
|
/**
|
|
294
294
|
* <p>The environment variables to send to the container. You can add new environment
|
|
295
295
|
* variables, which are added to the container at launch, or you can override the existing
|
|
@@ -300,7 +300,7 @@ export interface BatchContainerOverrides {
|
|
|
300
300
|
* </note>
|
|
301
301
|
* @public
|
|
302
302
|
*/
|
|
303
|
-
Environment?: BatchEnvironmentVariable[];
|
|
303
|
+
Environment?: BatchEnvironmentVariable[] | undefined;
|
|
304
304
|
/**
|
|
305
305
|
* <p>The instance type to use for a multi-node parallel job.</p>
|
|
306
306
|
* <note>
|
|
@@ -309,14 +309,14 @@ export interface BatchContainerOverrides {
|
|
|
309
309
|
* </note>
|
|
310
310
|
* @public
|
|
311
311
|
*/
|
|
312
|
-
InstanceType?: string;
|
|
312
|
+
InstanceType?: string | undefined;
|
|
313
313
|
/**
|
|
314
314
|
* <p>The type and amount of resources to assign to a container. This overrides the settings
|
|
315
315
|
* in the job definition. The supported resources include <code>GPU</code>,
|
|
316
316
|
* <code>MEMORY</code>, and <code>VCPU</code>.</p>
|
|
317
317
|
* @public
|
|
318
318
|
*/
|
|
319
|
-
ResourceRequirements?: BatchResourceRequirement[];
|
|
319
|
+
ResourceRequirements?: BatchResourceRequirement[] | undefined;
|
|
320
320
|
}
|
|
321
321
|
/**
|
|
322
322
|
* @public
|
|
@@ -340,12 +340,12 @@ export interface BatchJobDependency {
|
|
|
340
340
|
* dependency.</p>
|
|
341
341
|
* @public
|
|
342
342
|
*/
|
|
343
|
-
JobId?: string;
|
|
343
|
+
JobId?: string | undefined;
|
|
344
344
|
/**
|
|
345
345
|
* <p>The type of the job dependency.</p>
|
|
346
346
|
* @public
|
|
347
347
|
*/
|
|
348
|
-
Type?: BatchJobDependencyType;
|
|
348
|
+
Type?: BatchJobDependencyType | undefined;
|
|
349
349
|
}
|
|
350
350
|
/**
|
|
351
351
|
* <p>The retry strategy that's associated with a job. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/job_retries.html"> Automated job
|
|
@@ -359,7 +359,7 @@ export interface BatchRetryStrategy {
|
|
|
359
359
|
* of attempts as the value.</p>
|
|
360
360
|
* @public
|
|
361
361
|
*/
|
|
362
|
-
Attempts?: number;
|
|
362
|
+
Attempts?: number | undefined;
|
|
363
363
|
}
|
|
364
364
|
/**
|
|
365
365
|
* <p>The details of a capacity provider strategy. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CapacityProviderStrategyItem.html">CapacityProviderStrategyItem</a> in the Amazon ECS API Reference.</p>
|
|
@@ -377,14 +377,14 @@ export interface CapacityProviderStrategyItem {
|
|
|
377
377
|
* consideration after the base value, if defined, is satisfied.</p>
|
|
378
378
|
* @public
|
|
379
379
|
*/
|
|
380
|
-
weight?: number;
|
|
380
|
+
weight?: number | undefined;
|
|
381
381
|
/**
|
|
382
382
|
* <p>The base value designates how many tasks, at a minimum, to run on the specified capacity
|
|
383
383
|
* provider. Only one capacity provider in a capacity provider strategy can have a base
|
|
384
384
|
* defined. If no value is specified, the default value of 0 is used. </p>
|
|
385
385
|
* @public
|
|
386
386
|
*/
|
|
387
|
-
base?: number;
|
|
387
|
+
base?: number | undefined;
|
|
388
388
|
}
|
|
389
389
|
/**
|
|
390
390
|
* <p>The Amazon CloudWatch Logs logging configuration settings for the pipe.</p>
|
|
@@ -395,7 +395,7 @@ export interface CloudwatchLogsLogDestination {
|
|
|
395
395
|
* <p>The Amazon Web Services Resource Name (ARN) for the CloudWatch log group to which EventBridge sends the log records.</p>
|
|
396
396
|
* @public
|
|
397
397
|
*/
|
|
398
|
-
LogGroupArn?: string;
|
|
398
|
+
LogGroupArn?: string | undefined;
|
|
399
399
|
}
|
|
400
400
|
/**
|
|
401
401
|
* <p>The Amazon CloudWatch Logs logging configuration settings for the pipe.</p>
|
|
@@ -454,19 +454,19 @@ export interface PipeEnrichmentHttpParameters {
|
|
|
454
454
|
* <p>The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").</p>
|
|
455
455
|
* @public
|
|
456
456
|
*/
|
|
457
|
-
PathParameterValues?: string[];
|
|
457
|
+
PathParameterValues?: string[] | undefined;
|
|
458
458
|
/**
|
|
459
459
|
* <p>The headers that need to be sent as part of request invoking the API Gateway REST
|
|
460
460
|
* API or EventBridge ApiDestination.</p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
HeaderParameters?: Record<string, string
|
|
463
|
+
HeaderParameters?: Record<string, string> | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* <p>The query string keys/values that need to be sent as part of request invoking the
|
|
466
466
|
* API Gateway REST API or EventBridge ApiDestination.</p>
|
|
467
467
|
* @public
|
|
468
468
|
*/
|
|
469
|
-
QueryStringParameters?: Record<string, string
|
|
469
|
+
QueryStringParameters?: Record<string, string> | undefined;
|
|
470
470
|
}
|
|
471
471
|
/**
|
|
472
472
|
* <p>The parameters required to set up enrichment on your pipe.</p>
|
|
@@ -480,7 +480,7 @@ export interface PipeEnrichmentParameters {
|
|
|
480
480
|
* <p>To remove an input template, specify an empty string.</p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
InputTemplate?: string;
|
|
483
|
+
InputTemplate?: string | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* <p>Contains the HTTP parameters to use when the target is a API Gateway REST
|
|
486
486
|
* endpoint or EventBridge ApiDestination.</p>
|
|
@@ -491,7 +491,7 @@ export interface PipeEnrichmentParameters {
|
|
|
491
491
|
* keys, values from the Connection take precedence.</p>
|
|
492
492
|
* @public
|
|
493
493
|
*/
|
|
494
|
-
HttpParameters?: PipeEnrichmentHttpParameters;
|
|
494
|
+
HttpParameters?: PipeEnrichmentHttpParameters | undefined;
|
|
495
495
|
}
|
|
496
496
|
/**
|
|
497
497
|
* <p>The Amazon Data Firehose logging configuration settings for the pipe.</p>
|
|
@@ -565,7 +565,7 @@ export interface S3LogDestinationParameters {
|
|
|
565
565
|
* <p>EventBridge currently only supports <code>json</code> formatting.</p>
|
|
566
566
|
* @public
|
|
567
567
|
*/
|
|
568
|
-
OutputFormat?: S3OutputFormat;
|
|
568
|
+
OutputFormat?: S3OutputFormat | undefined;
|
|
569
569
|
/**
|
|
570
570
|
* <p>Specifies any prefix text with which to begin Amazon S3 log object names.</p>
|
|
571
571
|
* <p>You can use prefixes to organize the data that you store in Amazon S3 buckets. A
|
|
@@ -575,7 +575,7 @@ export interface S3LogDestinationParameters {
|
|
|
575
575
|
* prefixes</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
|
|
576
576
|
* @public
|
|
577
577
|
*/
|
|
578
|
-
Prefix?: string;
|
|
578
|
+
Prefix?: string | undefined;
|
|
579
579
|
}
|
|
580
580
|
/**
|
|
581
581
|
* <p>Specifies the logging configuration settings for the pipe.</p>
|
|
@@ -601,17 +601,17 @@ export interface PipeLogConfigurationParameters {
|
|
|
601
601
|
* <p>The Amazon S3 logging configuration settings for the pipe.</p>
|
|
602
602
|
* @public
|
|
603
603
|
*/
|
|
604
|
-
S3LogDestination?: S3LogDestinationParameters;
|
|
604
|
+
S3LogDestination?: S3LogDestinationParameters | undefined;
|
|
605
605
|
/**
|
|
606
606
|
* <p>The Amazon Data Firehose logging configuration settings for the pipe.</p>
|
|
607
607
|
* @public
|
|
608
608
|
*/
|
|
609
|
-
FirehoseLogDestination?: FirehoseLogDestinationParameters;
|
|
609
|
+
FirehoseLogDestination?: FirehoseLogDestinationParameters | undefined;
|
|
610
610
|
/**
|
|
611
611
|
* <p>The Amazon CloudWatch Logs logging configuration settings for the pipe.</p>
|
|
612
612
|
* @public
|
|
613
613
|
*/
|
|
614
|
-
CloudwatchLogsLogDestination?: CloudwatchLogsLogDestinationParameters;
|
|
614
|
+
CloudwatchLogsLogDestination?: CloudwatchLogsLogDestinationParameters | undefined;
|
|
615
615
|
/**
|
|
616
616
|
* <p>The level of logging detail to include. This applies to all log destinations for the pipe.</p>
|
|
617
617
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-level">Specifying
|
|
@@ -630,7 +630,7 @@ export interface PipeLogConfigurationParameters {
|
|
|
630
630
|
* <p>By default, execution data is not included.</p>
|
|
631
631
|
* @public
|
|
632
632
|
*/
|
|
633
|
-
IncludeExecutionData?: IncludeExecutionDataOption[];
|
|
633
|
+
IncludeExecutionData?: IncludeExecutionDataOption[] | undefined;
|
|
634
634
|
}
|
|
635
635
|
/**
|
|
636
636
|
* <p>The Secrets Manager secret that stores your broker credentials.</p>
|
|
@@ -681,12 +681,12 @@ export interface PipeSourceActiveMQBrokerParameters {
|
|
|
681
681
|
* <p>The maximum number of records to include in each batch.</p>
|
|
682
682
|
* @public
|
|
683
683
|
*/
|
|
684
|
-
BatchSize?: number;
|
|
684
|
+
BatchSize?: number | undefined;
|
|
685
685
|
/**
|
|
686
686
|
* <p>The maximum length of a time to wait for events.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
689
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
690
690
|
}
|
|
691
691
|
/**
|
|
692
692
|
* <p>A <code>DeadLetterConfig</code> object that contains information about a dead-letter
|
|
@@ -700,7 +700,7 @@ export interface DeadLetterConfig {
|
|
|
700
700
|
* either an Amazon SNS topic or Amazon SQS queue ARN.</p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
Arn?: string;
|
|
703
|
+
Arn?: string | undefined;
|
|
704
704
|
}
|
|
705
705
|
/**
|
|
706
706
|
* @public
|
|
@@ -734,40 +734,40 @@ export interface PipeSourceDynamoDBStreamParameters {
|
|
|
734
734
|
* <p>The maximum number of records to include in each batch.</p>
|
|
735
735
|
* @public
|
|
736
736
|
*/
|
|
737
|
-
BatchSize?: number;
|
|
737
|
+
BatchSize?: number | undefined;
|
|
738
738
|
/**
|
|
739
739
|
* <p>Define the target queue to send dead-letter queue events to.</p>
|
|
740
740
|
* @public
|
|
741
741
|
*/
|
|
742
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
742
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
743
743
|
/**
|
|
744
744
|
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
745
745
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
746
746
|
* @public
|
|
747
747
|
*/
|
|
748
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
748
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | undefined;
|
|
749
749
|
/**
|
|
750
750
|
* <p>The maximum length of a time to wait for events.</p>
|
|
751
751
|
* @public
|
|
752
752
|
*/
|
|
753
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
753
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
754
754
|
/**
|
|
755
755
|
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
756
756
|
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
757
757
|
* @public
|
|
758
758
|
*/
|
|
759
|
-
MaximumRecordAgeInSeconds?: number;
|
|
759
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
760
760
|
/**
|
|
761
761
|
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
762
762
|
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
763
763
|
* @public
|
|
764
764
|
*/
|
|
765
|
-
MaximumRetryAttempts?: number;
|
|
765
|
+
MaximumRetryAttempts?: number | undefined;
|
|
766
766
|
/**
|
|
767
767
|
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
768
768
|
* @public
|
|
769
769
|
*/
|
|
770
|
-
ParallelizationFactor?: number;
|
|
770
|
+
ParallelizationFactor?: number | undefined;
|
|
771
771
|
/**
|
|
772
772
|
* <p>The position in a stream from which to start reading.</p>
|
|
773
773
|
* @public
|
|
@@ -784,7 +784,7 @@ export interface Filter {
|
|
|
784
784
|
* <p>The event pattern.</p>
|
|
785
785
|
* @public
|
|
786
786
|
*/
|
|
787
|
-
Pattern?: string;
|
|
787
|
+
Pattern?: string | undefined;
|
|
788
788
|
}
|
|
789
789
|
/**
|
|
790
790
|
* <p>The collection of event patterns used to filter events.</p>
|
|
@@ -798,7 +798,7 @@ export interface FilterCriteria {
|
|
|
798
798
|
* <p>The event patterns.</p>
|
|
799
799
|
* @public
|
|
800
800
|
*/
|
|
801
|
-
Filters?: Filter[];
|
|
801
|
+
Filters?: Filter[] | undefined;
|
|
802
802
|
}
|
|
803
803
|
/**
|
|
804
804
|
* @public
|
|
@@ -822,40 +822,40 @@ export interface PipeSourceKinesisStreamParameters {
|
|
|
822
822
|
* <p>The maximum number of records to include in each batch.</p>
|
|
823
823
|
* @public
|
|
824
824
|
*/
|
|
825
|
-
BatchSize?: number;
|
|
825
|
+
BatchSize?: number | undefined;
|
|
826
826
|
/**
|
|
827
827
|
* <p>Define the target queue to send dead-letter queue events to.</p>
|
|
828
828
|
* @public
|
|
829
829
|
*/
|
|
830
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
830
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
831
831
|
/**
|
|
832
832
|
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
833
833
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
834
834
|
* @public
|
|
835
835
|
*/
|
|
836
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
836
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | undefined;
|
|
837
837
|
/**
|
|
838
838
|
* <p>The maximum length of a time to wait for events.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
841
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
842
842
|
/**
|
|
843
843
|
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
844
844
|
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
845
845
|
* @public
|
|
846
846
|
*/
|
|
847
|
-
MaximumRecordAgeInSeconds?: number;
|
|
847
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
848
848
|
/**
|
|
849
849
|
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
850
850
|
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
|
-
MaximumRetryAttempts?: number;
|
|
853
|
+
MaximumRetryAttempts?: number | undefined;
|
|
854
854
|
/**
|
|
855
855
|
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
856
856
|
* @public
|
|
857
857
|
*/
|
|
858
|
-
ParallelizationFactor?: number;
|
|
858
|
+
ParallelizationFactor?: number | undefined;
|
|
859
859
|
/**
|
|
860
860
|
* <p>The position in a stream from which to start reading.</p>
|
|
861
861
|
* @public
|
|
@@ -866,7 +866,7 @@ export interface PipeSourceKinesisStreamParameters {
|
|
|
866
866
|
* to start reading, in Unix time seconds.</p>
|
|
867
867
|
* @public
|
|
868
868
|
*/
|
|
869
|
-
StartingPositionTimestamp?: Date;
|
|
869
|
+
StartingPositionTimestamp?: Date | undefined;
|
|
870
870
|
}
|
|
871
871
|
/**
|
|
872
872
|
* <p>The Secrets Manager secret that stores your stream credentials.</p>
|
|
@@ -936,27 +936,27 @@ export interface PipeSourceManagedStreamingKafkaParameters {
|
|
|
936
936
|
* <p>The position in a stream from which to start reading.</p>
|
|
937
937
|
* @public
|
|
938
938
|
*/
|
|
939
|
-
StartingPosition?: MSKStartPosition;
|
|
939
|
+
StartingPosition?: MSKStartPosition | undefined;
|
|
940
940
|
/**
|
|
941
941
|
* <p>The maximum number of records to include in each batch.</p>
|
|
942
942
|
* @public
|
|
943
943
|
*/
|
|
944
|
-
BatchSize?: number;
|
|
944
|
+
BatchSize?: number | undefined;
|
|
945
945
|
/**
|
|
946
946
|
* <p>The maximum length of a time to wait for events.</p>
|
|
947
947
|
* @public
|
|
948
948
|
*/
|
|
949
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
949
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
950
950
|
/**
|
|
951
951
|
* <p>The name of the destination queue to consume.</p>
|
|
952
952
|
* @public
|
|
953
953
|
*/
|
|
954
|
-
ConsumerGroupID?: string;
|
|
954
|
+
ConsumerGroupID?: string | undefined;
|
|
955
955
|
/**
|
|
956
956
|
* <p>The credentials needed to access the resource.</p>
|
|
957
957
|
* @public
|
|
958
958
|
*/
|
|
959
|
-
Credentials?: MSKAccessCredentials;
|
|
959
|
+
Credentials?: MSKAccessCredentials | undefined;
|
|
960
960
|
}
|
|
961
961
|
/**
|
|
962
962
|
* <p>The parameters for using a Rabbit MQ broker as a source.</p>
|
|
@@ -977,17 +977,17 @@ export interface PipeSourceRabbitMQBrokerParameters {
|
|
|
977
977
|
* <p>The name of the virtual host associated with the source broker.</p>
|
|
978
978
|
* @public
|
|
979
979
|
*/
|
|
980
|
-
VirtualHost?: string;
|
|
980
|
+
VirtualHost?: string | undefined;
|
|
981
981
|
/**
|
|
982
982
|
* <p>The maximum number of records to include in each batch.</p>
|
|
983
983
|
* @public
|
|
984
984
|
*/
|
|
985
|
-
BatchSize?: number;
|
|
985
|
+
BatchSize?: number | undefined;
|
|
986
986
|
/**
|
|
987
987
|
* <p>The maximum length of a time to wait for events.</p>
|
|
988
988
|
* @public
|
|
989
989
|
*/
|
|
990
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
990
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
991
991
|
}
|
|
992
992
|
/**
|
|
993
993
|
* <p>The Secrets Manager secret that stores your stream credentials.</p>
|
|
@@ -1084,13 +1084,13 @@ export interface SelfManagedKafkaAccessConfigurationVpc {
|
|
|
1084
1084
|
* VPC. You can specify as many as 16 subnets.</p>
|
|
1085
1085
|
* @public
|
|
1086
1086
|
*/
|
|
1087
|
-
Subnets?: string[];
|
|
1087
|
+
Subnets?: string[] | undefined;
|
|
1088
1088
|
/**
|
|
1089
1089
|
* <p>Specifies the security groups associated with the stream. These security groups must all
|
|
1090
1090
|
* be in the same VPC. You can specify as many as five security groups.</p>
|
|
1091
1091
|
* @public
|
|
1092
1092
|
*/
|
|
1093
|
-
SecurityGroup?: string[];
|
|
1093
|
+
SecurityGroup?: string[] | undefined;
|
|
1094
1094
|
}
|
|
1095
1095
|
/**
|
|
1096
1096
|
* <p>The parameters for using a self-managed Apache Kafka stream as a source.</p>
|
|
@@ -1110,42 +1110,42 @@ export interface PipeSourceSelfManagedKafkaParameters {
|
|
|
1110
1110
|
* <p>The position in a stream from which to start reading.</p>
|
|
1111
1111
|
* @public
|
|
1112
1112
|
*/
|
|
1113
|
-
StartingPosition?: SelfManagedKafkaStartPosition;
|
|
1113
|
+
StartingPosition?: SelfManagedKafkaStartPosition | undefined;
|
|
1114
1114
|
/**
|
|
1115
1115
|
* <p>An array of server URLs.</p>
|
|
1116
1116
|
* @public
|
|
1117
1117
|
*/
|
|
1118
|
-
AdditionalBootstrapServers?: string[];
|
|
1118
|
+
AdditionalBootstrapServers?: string[] | undefined;
|
|
1119
1119
|
/**
|
|
1120
1120
|
* <p>The maximum number of records to include in each batch.</p>
|
|
1121
1121
|
* @public
|
|
1122
1122
|
*/
|
|
1123
|
-
BatchSize?: number;
|
|
1123
|
+
BatchSize?: number | undefined;
|
|
1124
1124
|
/**
|
|
1125
1125
|
* <p>The maximum length of a time to wait for events.</p>
|
|
1126
1126
|
* @public
|
|
1127
1127
|
*/
|
|
1128
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
1128
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
1129
1129
|
/**
|
|
1130
1130
|
* <p>The name of the destination queue to consume.</p>
|
|
1131
1131
|
* @public
|
|
1132
1132
|
*/
|
|
1133
|
-
ConsumerGroupID?: string;
|
|
1133
|
+
ConsumerGroupID?: string | undefined;
|
|
1134
1134
|
/**
|
|
1135
1135
|
* <p>The credentials needed to access the resource.</p>
|
|
1136
1136
|
* @public
|
|
1137
1137
|
*/
|
|
1138
|
-
Credentials?: SelfManagedKafkaAccessConfigurationCredentials;
|
|
1138
|
+
Credentials?: SelfManagedKafkaAccessConfigurationCredentials | undefined;
|
|
1139
1139
|
/**
|
|
1140
1140
|
* <p>The ARN of the Secrets Manager secret used for certification.</p>
|
|
1141
1141
|
* @public
|
|
1142
1142
|
*/
|
|
1143
|
-
ServerRootCaCertificate?: string;
|
|
1143
|
+
ServerRootCaCertificate?: string | undefined;
|
|
1144
1144
|
/**
|
|
1145
1145
|
* <p>This structure specifies the VPC subnets and security groups for the stream, and whether a public IP address is to be used.</p>
|
|
1146
1146
|
* @public
|
|
1147
1147
|
*/
|
|
1148
|
-
Vpc?: SelfManagedKafkaAccessConfigurationVpc;
|
|
1148
|
+
Vpc?: SelfManagedKafkaAccessConfigurationVpc | undefined;
|
|
1149
1149
|
}
|
|
1150
1150
|
/**
|
|
1151
1151
|
* <p>The parameters for using a Amazon SQS stream as a source.</p>
|
|
@@ -1156,12 +1156,12 @@ export interface PipeSourceSqsQueueParameters {
|
|
|
1156
1156
|
* <p>The maximum number of records to include in each batch.</p>
|
|
1157
1157
|
* @public
|
|
1158
1158
|
*/
|
|
1159
|
-
BatchSize?: number;
|
|
1159
|
+
BatchSize?: number | undefined;
|
|
1160
1160
|
/**
|
|
1161
1161
|
* <p>The maximum length of a time to wait for events.</p>
|
|
1162
1162
|
* @public
|
|
1163
1163
|
*/
|
|
1164
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
1164
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
1165
1165
|
}
|
|
1166
1166
|
/**
|
|
1167
1167
|
* <p>The parameters required to set up a source for your pipe.</p>
|
|
@@ -1175,37 +1175,37 @@ export interface PipeSourceParameters {
|
|
|
1175
1175
|
* Patterns</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
1176
1176
|
* @public
|
|
1177
1177
|
*/
|
|
1178
|
-
FilterCriteria?: FilterCriteria;
|
|
1178
|
+
FilterCriteria?: FilterCriteria | undefined;
|
|
1179
1179
|
/**
|
|
1180
1180
|
* <p>The parameters for using a Kinesis stream as a source.</p>
|
|
1181
1181
|
* @public
|
|
1182
1182
|
*/
|
|
1183
|
-
KinesisStreamParameters?: PipeSourceKinesisStreamParameters;
|
|
1183
|
+
KinesisStreamParameters?: PipeSourceKinesisStreamParameters | undefined;
|
|
1184
1184
|
/**
|
|
1185
1185
|
* <p>The parameters for using a DynamoDB stream as a source.</p>
|
|
1186
1186
|
* @public
|
|
1187
1187
|
*/
|
|
1188
|
-
DynamoDBStreamParameters?: PipeSourceDynamoDBStreamParameters;
|
|
1188
|
+
DynamoDBStreamParameters?: PipeSourceDynamoDBStreamParameters | undefined;
|
|
1189
1189
|
/**
|
|
1190
1190
|
* <p>The parameters for using a Amazon SQS stream as a source.</p>
|
|
1191
1191
|
* @public
|
|
1192
1192
|
*/
|
|
1193
|
-
SqsQueueParameters?: PipeSourceSqsQueueParameters;
|
|
1193
|
+
SqsQueueParameters?: PipeSourceSqsQueueParameters | undefined;
|
|
1194
1194
|
/**
|
|
1195
1195
|
* <p>The parameters for using an Active MQ broker as a source.</p>
|
|
1196
1196
|
* @public
|
|
1197
1197
|
*/
|
|
1198
|
-
ActiveMQBrokerParameters?: PipeSourceActiveMQBrokerParameters;
|
|
1198
|
+
ActiveMQBrokerParameters?: PipeSourceActiveMQBrokerParameters | undefined;
|
|
1199
1199
|
/**
|
|
1200
1200
|
* <p>The parameters for using a Rabbit MQ broker as a source.</p>
|
|
1201
1201
|
* @public
|
|
1202
1202
|
*/
|
|
1203
|
-
RabbitMQBrokerParameters?: PipeSourceRabbitMQBrokerParameters;
|
|
1203
|
+
RabbitMQBrokerParameters?: PipeSourceRabbitMQBrokerParameters | undefined;
|
|
1204
1204
|
/**
|
|
1205
1205
|
* <p>The parameters for using an MSK stream as a source.</p>
|
|
1206
1206
|
* @public
|
|
1207
1207
|
*/
|
|
1208
|
-
ManagedStreamingKafkaParameters?: PipeSourceManagedStreamingKafkaParameters;
|
|
1208
|
+
ManagedStreamingKafkaParameters?: PipeSourceManagedStreamingKafkaParameters | undefined;
|
|
1209
1209
|
/**
|
|
1210
1210
|
* <p>The parameters for using a self-managed Apache Kafka stream as a source.</p>
|
|
1211
1211
|
* <p>A <i>self managed</i> cluster refers to any Apache Kafka cluster not hosted by Amazon Web Services.
|
|
@@ -1214,7 +1214,7 @@ export interface PipeSourceParameters {
|
|
|
1214
1214
|
* Cloud</a>, <a href="https://www.cloudkarafka.com/">CloudKarafka</a>, or <a href="https://redpanda.com/">Redpanda</a>. For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html">Apache Kafka streams as a source</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
1215
1215
|
* @public
|
|
1216
1216
|
*/
|
|
1217
|
-
SelfManagedKafkaParameters?: PipeSourceSelfManagedKafkaParameters;
|
|
1217
|
+
SelfManagedKafkaParameters?: PipeSourceSelfManagedKafkaParameters | undefined;
|
|
1218
1218
|
}
|
|
1219
1219
|
/**
|
|
1220
1220
|
* <p>The parameters for using an Batch job as a target.</p>
|
|
@@ -1240,18 +1240,18 @@ export interface PipeTargetBatchJobParameters {
|
|
|
1240
1240
|
* If you specify array properties for a job, it becomes an array job. This parameter is used only if the target is an Batch job.</p>
|
|
1241
1241
|
* @public
|
|
1242
1242
|
*/
|
|
1243
|
-
ArrayProperties?: BatchArrayProperties;
|
|
1243
|
+
ArrayProperties?: BatchArrayProperties | undefined;
|
|
1244
1244
|
/**
|
|
1245
1245
|
* <p>The retry strategy to use for failed jobs. When a retry strategy is specified here, it
|
|
1246
1246
|
* overrides the retry strategy defined in the job definition.</p>
|
|
1247
1247
|
* @public
|
|
1248
1248
|
*/
|
|
1249
|
-
RetryStrategy?: BatchRetryStrategy;
|
|
1249
|
+
RetryStrategy?: BatchRetryStrategy | undefined;
|
|
1250
1250
|
/**
|
|
1251
1251
|
* <p>The overrides that are sent to a container.</p>
|
|
1252
1252
|
* @public
|
|
1253
1253
|
*/
|
|
1254
|
-
ContainerOverrides?: BatchContainerOverrides;
|
|
1254
|
+
ContainerOverrides?: BatchContainerOverrides | undefined;
|
|
1255
1255
|
/**
|
|
1256
1256
|
* <p>A list of dependencies for the job. A job can depend upon a maximum of 20 jobs. You can
|
|
1257
1257
|
* specify a <code>SEQUENTIAL</code> type dependency without specifying a job ID for array
|
|
@@ -1261,7 +1261,7 @@ export interface PipeTargetBatchJobParameters {
|
|
|
1261
1261
|
* to complete before it can begin.</p>
|
|
1262
1262
|
* @public
|
|
1263
1263
|
*/
|
|
1264
|
-
DependsOn?: BatchJobDependency[];
|
|
1264
|
+
DependsOn?: BatchJobDependency[] | undefined;
|
|
1265
1265
|
/**
|
|
1266
1266
|
* <p>Additional parameters passed to the job that replace parameter substitution placeholders
|
|
1267
1267
|
* that are set in the job definition. Parameters are specified as a key and value pair
|
|
@@ -1269,7 +1269,7 @@ export interface PipeTargetBatchJobParameters {
|
|
|
1269
1269
|
* job definition.</p>
|
|
1270
1270
|
* @public
|
|
1271
1271
|
*/
|
|
1272
|
-
Parameters?: Record<string, string
|
|
1272
|
+
Parameters?: Record<string, string> | undefined;
|
|
1273
1273
|
}
|
|
1274
1274
|
/**
|
|
1275
1275
|
* <p>The parameters for using an CloudWatch Logs log stream as a target.</p>
|
|
@@ -1280,13 +1280,13 @@ export interface PipeTargetCloudWatchLogsParameters {
|
|
|
1280
1280
|
* <p>The name of the log stream.</p>
|
|
1281
1281
|
* @public
|
|
1282
1282
|
*/
|
|
1283
|
-
LogStreamName?: string;
|
|
1283
|
+
LogStreamName?: string | undefined;
|
|
1284
1284
|
/**
|
|
1285
1285
|
* <p>The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970
|
|
1286
1286
|
* 00:00:00 UTC.</p>
|
|
1287
1287
|
* @public
|
|
1288
1288
|
*/
|
|
1289
|
-
Timestamp?: string;
|
|
1289
|
+
Timestamp?: string | undefined;
|
|
1290
1290
|
}
|
|
1291
1291
|
/**
|
|
1292
1292
|
* @public
|
|
@@ -1313,7 +1313,7 @@ export interface NetworkConfiguration {
|
|
|
1313
1313
|
* that use the <code>awsvpc</code> network mode.</p>
|
|
1314
1314
|
* @public
|
|
1315
1315
|
*/
|
|
1316
|
-
awsvpcConfiguration?: AwsVpcConfiguration;
|
|
1316
|
+
awsvpcConfiguration?: AwsVpcConfiguration | undefined;
|
|
1317
1317
|
}
|
|
1318
1318
|
/**
|
|
1319
1319
|
* <p>The environment variables to send to the container. You can add new environment
|
|
@@ -1328,13 +1328,13 @@ export interface EcsEnvironmentVariable {
|
|
|
1328
1328
|
* environment variable.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
name?: string;
|
|
1331
|
+
name?: string | undefined;
|
|
1332
1332
|
/**
|
|
1333
1333
|
* <p>The value of the key-value pair. For environment variables, this is the value of the
|
|
1334
1334
|
* environment variable.</p>
|
|
1335
1335
|
* @public
|
|
1336
1336
|
*/
|
|
1337
|
-
value?: string;
|
|
1337
|
+
value?: string | undefined;
|
|
1338
1338
|
}
|
|
1339
1339
|
/**
|
|
1340
1340
|
* @public
|
|
@@ -1441,13 +1441,13 @@ export interface EcsContainerOverride {
|
|
|
1441
1441
|
* image or the task definition. You must also specify a container name.</p>
|
|
1442
1442
|
* @public
|
|
1443
1443
|
*/
|
|
1444
|
-
Command?: string[];
|
|
1444
|
+
Command?: string[] | undefined;
|
|
1445
1445
|
/**
|
|
1446
1446
|
* <p>The number of <code>cpu</code> units reserved for the container, instead of the default
|
|
1447
1447
|
* value from the task definition. You must also specify a container name.</p>
|
|
1448
1448
|
* @public
|
|
1449
1449
|
*/
|
|
1450
|
-
Cpu?: number;
|
|
1450
|
+
Cpu?: number | undefined;
|
|
1451
1451
|
/**
|
|
1452
1452
|
* <p>The environment variables to send to the container. You can add new environment
|
|
1453
1453
|
* variables, which are added to the container at launch, or you can override the existing
|
|
@@ -1455,38 +1455,38 @@ export interface EcsContainerOverride {
|
|
|
1455
1455
|
* container name.</p>
|
|
1456
1456
|
* @public
|
|
1457
1457
|
*/
|
|
1458
|
-
Environment?: EcsEnvironmentVariable[];
|
|
1458
|
+
Environment?: EcsEnvironmentVariable[] | undefined;
|
|
1459
1459
|
/**
|
|
1460
1460
|
* <p>A list of files containing the environment variables to pass to a container, instead of
|
|
1461
1461
|
* the value from the container definition.</p>
|
|
1462
1462
|
* @public
|
|
1463
1463
|
*/
|
|
1464
|
-
EnvironmentFiles?: EcsEnvironmentFile[];
|
|
1464
|
+
EnvironmentFiles?: EcsEnvironmentFile[] | undefined;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* <p>The hard limit (in MiB) of memory to present to the container, instead of the default
|
|
1467
1467
|
* value from the task definition. If your container attempts to exceed the memory specified
|
|
1468
1468
|
* here, the container is killed. You must also specify a container name.</p>
|
|
1469
1469
|
* @public
|
|
1470
1470
|
*/
|
|
1471
|
-
Memory?: number;
|
|
1471
|
+
Memory?: number | undefined;
|
|
1472
1472
|
/**
|
|
1473
1473
|
* <p>The soft limit (in MiB) of memory to reserve for the container, instead of the default
|
|
1474
1474
|
* value from the task definition. You must also specify a container name.</p>
|
|
1475
1475
|
* @public
|
|
1476
1476
|
*/
|
|
1477
|
-
MemoryReservation?: number;
|
|
1477
|
+
MemoryReservation?: number | undefined;
|
|
1478
1478
|
/**
|
|
1479
1479
|
* <p>The name of the container that receives the override. This parameter is required if any
|
|
1480
1480
|
* override is specified.</p>
|
|
1481
1481
|
* @public
|
|
1482
1482
|
*/
|
|
1483
|
-
Name?: string;
|
|
1483
|
+
Name?: string | undefined;
|
|
1484
1484
|
/**
|
|
1485
1485
|
* <p>The type and amount of a resource to assign to a container, instead of the default value
|
|
1486
1486
|
* from the task definition. The only supported resource is a GPU.</p>
|
|
1487
1487
|
* @public
|
|
1488
1488
|
*/
|
|
1489
|
-
ResourceRequirements?: EcsResourceRequirement[];
|
|
1489
|
+
ResourceRequirements?: EcsResourceRequirement[] | undefined;
|
|
1490
1490
|
}
|
|
1491
1491
|
/**
|
|
1492
1492
|
* <p>The amount of ephemeral storage to allocate for the task. This parameter is used to
|
|
@@ -1523,12 +1523,12 @@ export interface EcsInferenceAcceleratorOverride {
|
|
|
1523
1523
|
* must match a <code>deviceName</code> specified in the task definition.</p>
|
|
1524
1524
|
* @public
|
|
1525
1525
|
*/
|
|
1526
|
-
deviceName?: string;
|
|
1526
|
+
deviceName?: string | undefined;
|
|
1527
1527
|
/**
|
|
1528
1528
|
* <p>The Elastic Inference accelerator type to use.</p>
|
|
1529
1529
|
* @public
|
|
1530
1530
|
*/
|
|
1531
|
-
deviceType?: string;
|
|
1531
|
+
deviceType?: string | undefined;
|
|
1532
1532
|
}
|
|
1533
1533
|
/**
|
|
1534
1534
|
* <p>The overrides that are associated with a task.</p>
|
|
@@ -1539,12 +1539,12 @@ export interface EcsTaskOverride {
|
|
|
1539
1539
|
* <p>One or more container overrides that are sent to a task.</p>
|
|
1540
1540
|
* @public
|
|
1541
1541
|
*/
|
|
1542
|
-
ContainerOverrides?: EcsContainerOverride[];
|
|
1542
|
+
ContainerOverrides?: EcsContainerOverride[] | undefined;
|
|
1543
1543
|
/**
|
|
1544
1544
|
* <p>The cpu override for the task.</p>
|
|
1545
1545
|
* @public
|
|
1546
1546
|
*/
|
|
1547
|
-
Cpu?: string;
|
|
1547
|
+
Cpu?: string | undefined;
|
|
1548
1548
|
/**
|
|
1549
1549
|
* <p>The ephemeral storage setting override for the task.</p>
|
|
1550
1550
|
* <note>
|
|
@@ -1561,7 +1561,7 @@ export interface EcsTaskOverride {
|
|
|
1561
1561
|
* </note>
|
|
1562
1562
|
* @public
|
|
1563
1563
|
*/
|
|
1564
|
-
EphemeralStorage?: EcsEphemeralStorage;
|
|
1564
|
+
EphemeralStorage?: EcsEphemeralStorage | undefined;
|
|
1565
1565
|
/**
|
|
1566
1566
|
* <p>The Amazon Resource Name (ARN) of the task execution IAM role override for the task. For
|
|
1567
1567
|
* more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html">Amazon ECS
|
|
@@ -1569,17 +1569,17 @@ export interface EcsTaskOverride {
|
|
|
1569
1569
|
* Guide</i>.</p>
|
|
1570
1570
|
* @public
|
|
1571
1571
|
*/
|
|
1572
|
-
ExecutionRoleArn?: string;
|
|
1572
|
+
ExecutionRoleArn?: string | undefined;
|
|
1573
1573
|
/**
|
|
1574
1574
|
* <p>The Elastic Inference accelerator override for the task.</p>
|
|
1575
1575
|
* @public
|
|
1576
1576
|
*/
|
|
1577
|
-
InferenceAcceleratorOverrides?: EcsInferenceAcceleratorOverride[];
|
|
1577
|
+
InferenceAcceleratorOverrides?: EcsInferenceAcceleratorOverride[] | undefined;
|
|
1578
1578
|
/**
|
|
1579
1579
|
* <p>The memory override for the task.</p>
|
|
1580
1580
|
* @public
|
|
1581
1581
|
*/
|
|
1582
|
-
Memory?: string;
|
|
1582
|
+
Memory?: string | undefined;
|
|
1583
1583
|
/**
|
|
1584
1584
|
* <p>The Amazon Resource Name (ARN) of the IAM role that containers in this task can assume.
|
|
1585
1585
|
* All containers in this task are granted the permissions that are specified in this role.
|
|
@@ -1587,7 +1587,7 @@ export interface EcsTaskOverride {
|
|
|
1587
1587
|
* the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
1588
1588
|
* @public
|
|
1589
1589
|
*/
|
|
1590
|
-
TaskRoleArn?: string;
|
|
1590
|
+
TaskRoleArn?: string | undefined;
|
|
1591
1591
|
}
|
|
1592
1592
|
/**
|
|
1593
1593
|
* @public
|
|
@@ -1613,7 +1613,7 @@ export interface PlacementConstraint {
|
|
|
1613
1613
|
* to a group of valid candidates. </p>
|
|
1614
1614
|
* @public
|
|
1615
1615
|
*/
|
|
1616
|
-
type?: PlacementConstraintType;
|
|
1616
|
+
type?: PlacementConstraintType | undefined;
|
|
1617
1617
|
/**
|
|
1618
1618
|
* <p>A cluster query language expression to apply to the constraint. You cannot specify an
|
|
1619
1619
|
* expression if the constraint type is <code>distinctInstance</code>. To learn more, see
|
|
@@ -1621,7 +1621,7 @@ export interface PlacementConstraint {
|
|
|
1621
1621
|
* Language</a> in the Amazon Elastic Container Service Developer Guide. </p>
|
|
1622
1622
|
* @public
|
|
1623
1623
|
*/
|
|
1624
|
-
expression?: string;
|
|
1624
|
+
expression?: string | undefined;
|
|
1625
1625
|
}
|
|
1626
1626
|
/**
|
|
1627
1627
|
* @public
|
|
@@ -1652,7 +1652,7 @@ export interface PlacementStrategy {
|
|
|
1652
1652
|
* </p>
|
|
1653
1653
|
* @public
|
|
1654
1654
|
*/
|
|
1655
|
-
type?: PlacementStrategyType;
|
|
1655
|
+
type?: PlacementStrategyType | undefined;
|
|
1656
1656
|
/**
|
|
1657
1657
|
* <p>The field to apply the placement strategy against. For the spread placement strategy,
|
|
1658
1658
|
* valid values are instanceId (or host, which has the same effect), or any platform or custom
|
|
@@ -1661,7 +1661,7 @@ export interface PlacementStrategy {
|
|
|
1661
1661
|
* placement strategy, this field is not used. </p>
|
|
1662
1662
|
* @public
|
|
1663
1663
|
*/
|
|
1664
|
-
field?: string;
|
|
1664
|
+
field?: string | undefined;
|
|
1665
1665
|
}
|
|
1666
1666
|
/**
|
|
1667
1667
|
* @public
|
|
@@ -1708,7 +1708,7 @@ export interface PipeTargetEcsTaskParameters {
|
|
|
1708
1708
|
* 1.</p>
|
|
1709
1709
|
* @public
|
|
1710
1710
|
*/
|
|
1711
|
-
TaskCount?: number;
|
|
1711
|
+
TaskCount?: number | undefined;
|
|
1712
1712
|
/**
|
|
1713
1713
|
* <p>Specifies the launch type on which your task is running. The launch type that you
|
|
1714
1714
|
* specify here must match one of the launch type (compatibilities) of the target task. The
|
|
@@ -1716,7 +1716,7 @@ export interface PipeTargetEcsTaskParameters {
|
|
|
1716
1716
|
* <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/AWS-Fargate.html">Fargate on Amazon ECS</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
1717
1717
|
* @public
|
|
1718
1718
|
*/
|
|
1719
|
-
LaunchType?: LaunchType;
|
|
1719
|
+
LaunchType?: LaunchType | undefined;
|
|
1720
1720
|
/**
|
|
1721
1721
|
* <p>Use this structure if the Amazon ECS task uses the <code>awsvpc</code> network
|
|
1722
1722
|
* mode. This structure specifies the VPC subnets and security groups associated with the
|
|
@@ -1727,7 +1727,7 @@ export interface PipeTargetEcsTaskParameters {
|
|
|
1727
1727
|
* the <code>awsvpc</code> network mode, the task fails.</p>
|
|
1728
1728
|
* @public
|
|
1729
1729
|
*/
|
|
1730
|
-
NetworkConfiguration?: NetworkConfiguration;
|
|
1730
|
+
NetworkConfiguration?: NetworkConfiguration | undefined;
|
|
1731
1731
|
/**
|
|
1732
1732
|
* <p>Specifies the platform version for the task. Specify only the numeric portion of the
|
|
1733
1733
|
* platform version, such as <code>1.1.0</code>.</p>
|
|
@@ -1737,13 +1737,13 @@ export interface PipeTargetEcsTaskParameters {
|
|
|
1737
1737
|
* Guide</i>.</p>
|
|
1738
1738
|
* @public
|
|
1739
1739
|
*/
|
|
1740
|
-
PlatformVersion?: string;
|
|
1740
|
+
PlatformVersion?: string | undefined;
|
|
1741
1741
|
/**
|
|
1742
1742
|
* <p>Specifies an Amazon ECS task group for the task. The maximum length is 255
|
|
1743
1743
|
* characters.</p>
|
|
1744
1744
|
* @public
|
|
1745
1745
|
*/
|
|
1746
|
-
Group?: string;
|
|
1746
|
+
Group?: string | undefined;
|
|
1747
1747
|
/**
|
|
1748
1748
|
* <p>The capacity provider strategy to use for the task.</p>
|
|
1749
1749
|
* <p>If a <code>capacityProviderStrategy</code> is specified, the <code>launchType</code>
|
|
@@ -1752,33 +1752,33 @@ export interface PipeTargetEcsTaskParameters {
|
|
|
1752
1752
|
* </p>
|
|
1753
1753
|
* @public
|
|
1754
1754
|
*/
|
|
1755
|
-
CapacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
1755
|
+
CapacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
1756
1756
|
/**
|
|
1757
1757
|
* <p>Specifies whether to enable Amazon ECS managed tags for the task. For more
|
|
1758
1758
|
* information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html">Tagging Your Amazon ECS Resources</a> in the Amazon Elastic Container Service Developer Guide. </p>
|
|
1759
1759
|
* @public
|
|
1760
1760
|
*/
|
|
1761
|
-
EnableECSManagedTags?: boolean;
|
|
1761
|
+
EnableECSManagedTags?: boolean | undefined;
|
|
1762
1762
|
/**
|
|
1763
1763
|
* <p>Whether or not to enable the execute command functionality for the containers in this
|
|
1764
1764
|
* task. If true, this enables execute command functionality on all containers in the
|
|
1765
1765
|
* task.</p>
|
|
1766
1766
|
* @public
|
|
1767
1767
|
*/
|
|
1768
|
-
EnableExecuteCommand?: boolean;
|
|
1768
|
+
EnableExecuteCommand?: boolean | undefined;
|
|
1769
1769
|
/**
|
|
1770
1770
|
* <p>An array of placement constraint objects to use for the task. You can specify up to 10
|
|
1771
1771
|
* constraints per task (including constraints in the task definition and those specified at
|
|
1772
1772
|
* runtime).</p>
|
|
1773
1773
|
* @public
|
|
1774
1774
|
*/
|
|
1775
|
-
PlacementConstraints?: PlacementConstraint[];
|
|
1775
|
+
PlacementConstraints?: PlacementConstraint[] | undefined;
|
|
1776
1776
|
/**
|
|
1777
1777
|
* <p>The placement strategy objects to use for the task. You can specify a maximum of five
|
|
1778
1778
|
* strategy rules per task. </p>
|
|
1779
1779
|
* @public
|
|
1780
1780
|
*/
|
|
1781
|
-
PlacementStrategy?: PlacementStrategy[];
|
|
1781
|
+
PlacementStrategy?: PlacementStrategy[] | undefined;
|
|
1782
1782
|
/**
|
|
1783
1783
|
* <p>Specifies whether to propagate the tags from the task definition to the task. If no
|
|
1784
1784
|
* value is specified, the tags are not propagated. Tags can only be propagated to the task
|
|
@@ -1786,24 +1786,24 @@ export interface PipeTargetEcsTaskParameters {
|
|
|
1786
1786
|
* <code>TagResource</code> API action. </p>
|
|
1787
1787
|
* @public
|
|
1788
1788
|
*/
|
|
1789
|
-
PropagateTags?: PropagateTags;
|
|
1789
|
+
PropagateTags?: PropagateTags | undefined;
|
|
1790
1790
|
/**
|
|
1791
1791
|
* <p>The reference ID to use for the task.</p>
|
|
1792
1792
|
* @public
|
|
1793
1793
|
*/
|
|
1794
|
-
ReferenceId?: string;
|
|
1794
|
+
ReferenceId?: string | undefined;
|
|
1795
1795
|
/**
|
|
1796
1796
|
* <p>The overrides that are associated with a task.</p>
|
|
1797
1797
|
* @public
|
|
1798
1798
|
*/
|
|
1799
|
-
Overrides?: EcsTaskOverride;
|
|
1799
|
+
Overrides?: EcsTaskOverride | undefined;
|
|
1800
1800
|
/**
|
|
1801
1801
|
* <p>The metadata that you apply to the task to help you categorize and organize them. Each
|
|
1802
1802
|
* tag consists of a key and an optional value, both of which you define. To learn more, see
|
|
1803
1803
|
* <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html#ECS-RunTask-request-tags">RunTask</a> in the Amazon ECS API Reference.</p>
|
|
1804
1804
|
* @public
|
|
1805
1805
|
*/
|
|
1806
|
-
Tags?: Tag[];
|
|
1806
|
+
Tags?: Tag[] | undefined;
|
|
1807
1807
|
}
|
|
1808
1808
|
/**
|
|
1809
1809
|
* <p>The parameters for using an EventBridge event bus as a target.</p>
|
|
@@ -1816,29 +1816,29 @@ export interface PipeTargetEventBridgeEventBusParameters {
|
|
|
1816
1816
|
* <code>abcde.veo</code>.</p>
|
|
1817
1817
|
* @public
|
|
1818
1818
|
*/
|
|
1819
|
-
EndpointId?: string;
|
|
1819
|
+
EndpointId?: string | undefined;
|
|
1820
1820
|
/**
|
|
1821
1821
|
* <p>A free-form string, with a maximum of 128 characters, used to decide what fields to
|
|
1822
1822
|
* expect in the event detail.</p>
|
|
1823
1823
|
* @public
|
|
1824
1824
|
*/
|
|
1825
|
-
DetailType?: string;
|
|
1825
|
+
DetailType?: string | undefined;
|
|
1826
1826
|
/**
|
|
1827
1827
|
* <p>The source of the event.</p>
|
|
1828
1828
|
* @public
|
|
1829
1829
|
*/
|
|
1830
|
-
Source?: string;
|
|
1830
|
+
Source?: string | undefined;
|
|
1831
1831
|
/**
|
|
1832
1832
|
* <p>Amazon Web Services resources, identified by Amazon Resource Name (ARN), which the event
|
|
1833
1833
|
* primarily concerns. Any number, including zero, may be present.</p>
|
|
1834
1834
|
* @public
|
|
1835
1835
|
*/
|
|
1836
|
-
Resources?: string[];
|
|
1836
|
+
Resources?: string[] | undefined;
|
|
1837
1837
|
/**
|
|
1838
1838
|
* <p>The time stamp of the event, per <a href="https://www.rfc-editor.org/rfc/rfc3339.txt">RFC3339</a>. If no time stamp is provided, the time stamp of the <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html">PutEvents</a> call is used.</p>
|
|
1839
1839
|
* @public
|
|
1840
1840
|
*/
|
|
1841
|
-
Time?: string;
|
|
1841
|
+
Time?: string | undefined;
|
|
1842
1842
|
}
|
|
1843
1843
|
/**
|
|
1844
1844
|
* <p>These are custom parameter to be used when the target is an API Gateway REST APIs or
|
|
@@ -1850,19 +1850,19 @@ export interface PipeTargetHttpParameters {
|
|
|
1850
1850
|
* <p>The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").</p>
|
|
1851
1851
|
* @public
|
|
1852
1852
|
*/
|
|
1853
|
-
PathParameterValues?: string[];
|
|
1853
|
+
PathParameterValues?: string[] | undefined;
|
|
1854
1854
|
/**
|
|
1855
1855
|
* <p>The headers that need to be sent as part of request invoking the API Gateway REST
|
|
1856
1856
|
* API or EventBridge ApiDestination.</p>
|
|
1857
1857
|
* @public
|
|
1858
1858
|
*/
|
|
1859
|
-
HeaderParameters?: Record<string, string
|
|
1859
|
+
HeaderParameters?: Record<string, string> | undefined;
|
|
1860
1860
|
/**
|
|
1861
1861
|
* <p>The query string keys/values that need to be sent as part of request invoking the
|
|
1862
1862
|
* API Gateway REST API or EventBridge ApiDestination.</p>
|
|
1863
1863
|
* @public
|
|
1864
1864
|
*/
|
|
1865
|
-
QueryStringParameters?: Record<string, string
|
|
1865
|
+
QueryStringParameters?: Record<string, string> | undefined;
|
|
1866
1866
|
}
|
|
1867
1867
|
/**
|
|
1868
1868
|
* <p>The parameters for using a Kinesis stream as a target.</p>
|
|
@@ -1921,7 +1921,7 @@ export interface PipeTargetLambdaFunctionParameters {
|
|
|
1921
1921
|
* types</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
1922
1922
|
* @public
|
|
1923
1923
|
*/
|
|
1924
|
-
InvocationType?: PipeTargetInvocationType;
|
|
1924
|
+
InvocationType?: PipeTargetInvocationType | undefined;
|
|
1925
1925
|
}
|
|
1926
1926
|
/**
|
|
1927
1927
|
* <p>These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the
|
|
@@ -1934,7 +1934,7 @@ export interface PipeTargetRedshiftDataParameters {
|
|
|
1934
1934
|
* authenticating using Secrets Manager.</p>
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
SecretManagerArn?: string;
|
|
1937
|
+
SecretManagerArn?: string | undefined;
|
|
1938
1938
|
/**
|
|
1939
1939
|
* <p>The name of the database. Required when authenticating using temporary
|
|
1940
1940
|
* credentials.</p>
|
|
@@ -1945,19 +1945,19 @@ export interface PipeTargetRedshiftDataParameters {
|
|
|
1945
1945
|
* <p>The database user name. Required when authenticating using temporary credentials.</p>
|
|
1946
1946
|
* @public
|
|
1947
1947
|
*/
|
|
1948
|
-
DbUser?: string;
|
|
1948
|
+
DbUser?: string | undefined;
|
|
1949
1949
|
/**
|
|
1950
1950
|
* <p>The name of the SQL statement. You can name the SQL statement when you create it to
|
|
1951
1951
|
* identify the query.</p>
|
|
1952
1952
|
* @public
|
|
1953
1953
|
*/
|
|
1954
|
-
StatementName?: string;
|
|
1954
|
+
StatementName?: string | undefined;
|
|
1955
1955
|
/**
|
|
1956
1956
|
* <p>Indicates whether to send an event back to EventBridge after the SQL statement
|
|
1957
1957
|
* runs.</p>
|
|
1958
1958
|
* @public
|
|
1959
1959
|
*/
|
|
1960
|
-
WithEvent?: boolean;
|
|
1960
|
+
WithEvent?: boolean | undefined;
|
|
1961
1961
|
/**
|
|
1962
1962
|
* <p>The SQL statement text to run.</p>
|
|
1963
1963
|
* @public
|
|
@@ -1993,7 +1993,7 @@ export interface PipeTargetSageMakerPipelineParameters {
|
|
|
1993
1993
|
* execution.</p>
|
|
1994
1994
|
* @public
|
|
1995
1995
|
*/
|
|
1996
|
-
PipelineParameterList?: SageMakerPipelineParameter[];
|
|
1996
|
+
PipelineParameterList?: SageMakerPipelineParameter[] | undefined;
|
|
1997
1997
|
}
|
|
1998
1998
|
/**
|
|
1999
1999
|
* <p>The parameters for using a Amazon SQS stream as a target.</p>
|
|
@@ -2004,13 +2004,13 @@ export interface PipeTargetSqsQueueParameters {
|
|
|
2004
2004
|
* <p>The FIFO message group ID to use as the target.</p>
|
|
2005
2005
|
* @public
|
|
2006
2006
|
*/
|
|
2007
|
-
MessageGroupId?: string;
|
|
2007
|
+
MessageGroupId?: string | undefined;
|
|
2008
2008
|
/**
|
|
2009
2009
|
* <p>This parameter applies only to FIFO (first-in-first-out) queues.</p>
|
|
2010
2010
|
* <p>The token used for deduplication of sent messages.</p>
|
|
2011
2011
|
* @public
|
|
2012
2012
|
*/
|
|
2013
|
-
MessageDeduplicationId?: string;
|
|
2013
|
+
MessageDeduplicationId?: string | undefined;
|
|
2014
2014
|
}
|
|
2015
2015
|
/**
|
|
2016
2016
|
* <p>The parameters for using a Step Functions state machine as a target.</p>
|
|
@@ -2043,7 +2043,7 @@ export interface PipeTargetStateMachineParameters {
|
|
|
2043
2043
|
* types</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
2044
2044
|
* @public
|
|
2045
2045
|
*/
|
|
2046
|
-
InvocationType?: PipeTargetInvocationType;
|
|
2046
|
+
InvocationType?: PipeTargetInvocationType | undefined;
|
|
2047
2047
|
}
|
|
2048
2048
|
/**
|
|
2049
2049
|
* @public
|
|
@@ -2205,13 +2205,13 @@ export interface PipeTargetTimestreamParameters {
|
|
|
2205
2205
|
* <p>Required if <code>TimeFieldType</code> is specified as <code>EPOCH</code>.</p>
|
|
2206
2206
|
* @public
|
|
2207
2207
|
*/
|
|
2208
|
-
EpochTimeUnit?: EpochTimeUnit;
|
|
2208
|
+
EpochTimeUnit?: EpochTimeUnit | undefined;
|
|
2209
2209
|
/**
|
|
2210
2210
|
* <p>The type of time value used.</p>
|
|
2211
2211
|
* <p>The default is <code>EPOCH</code>.</p>
|
|
2212
2212
|
* @public
|
|
2213
2213
|
*/
|
|
2214
|
-
TimeFieldType?: TimeFieldType;
|
|
2214
|
+
TimeFieldType?: TimeFieldType | undefined;
|
|
2215
2215
|
/**
|
|
2216
2216
|
* <p>How to format the timestamps. For example,
|
|
2217
2217
|
* <code>yyyy-MM-dd'T'HH:mm:ss'Z'</code>.</p>
|
|
@@ -2219,7 +2219,7 @@ export interface PipeTargetTimestreamParameters {
|
|
|
2219
2219
|
* <code>TIMESTAMP_FORMAT</code>.</p>
|
|
2220
2220
|
* @public
|
|
2221
2221
|
*/
|
|
2222
|
-
TimestampFormat?: string;
|
|
2222
|
+
TimestampFormat?: string | undefined;
|
|
2223
2223
|
/**
|
|
2224
2224
|
* <p>64 bit version value or source data field that represents the version value for your data.</p>
|
|
2225
2225
|
* <p>Write requests with a higher version number will update the existing measure values of the record and version.
|
|
@@ -2250,12 +2250,12 @@ export interface PipeTargetTimestreamParameters {
|
|
|
2250
2250
|
* <p>Mappings of single source data fields to individual records in the specified Timestream for LiveAnalytics table.</p>
|
|
2251
2251
|
* @public
|
|
2252
2252
|
*/
|
|
2253
|
-
SingleMeasureMappings?: SingleMeasureMapping[];
|
|
2253
|
+
SingleMeasureMappings?: SingleMeasureMapping[] | undefined;
|
|
2254
2254
|
/**
|
|
2255
2255
|
* <p>Maps multiple measures from the source event to the same record in the specified Timestream for LiveAnalytics table.</p>
|
|
2256
2256
|
* @public
|
|
2257
2257
|
*/
|
|
2258
|
-
MultiMeasureMappings?: MultiMeasureMapping[];
|
|
2258
|
+
MultiMeasureMappings?: MultiMeasureMapping[] | undefined;
|
|
2259
2259
|
}
|
|
2260
2260
|
/**
|
|
2261
2261
|
* <p>The parameters required to set up a target for your pipe.</p>
|
|
@@ -2270,70 +2270,70 @@ export interface PipeTargetParameters {
|
|
|
2270
2270
|
* <p>To remove an input template, specify an empty string.</p>
|
|
2271
2271
|
* @public
|
|
2272
2272
|
*/
|
|
2273
|
-
InputTemplate?: string;
|
|
2273
|
+
InputTemplate?: string | undefined;
|
|
2274
2274
|
/**
|
|
2275
2275
|
* <p>The parameters for using a Lambda function as a target.</p>
|
|
2276
2276
|
* @public
|
|
2277
2277
|
*/
|
|
2278
|
-
LambdaFunctionParameters?: PipeTargetLambdaFunctionParameters;
|
|
2278
|
+
LambdaFunctionParameters?: PipeTargetLambdaFunctionParameters | undefined;
|
|
2279
2279
|
/**
|
|
2280
2280
|
* <p>The parameters for using a Step Functions state machine as a target.</p>
|
|
2281
2281
|
* @public
|
|
2282
2282
|
*/
|
|
2283
|
-
StepFunctionStateMachineParameters?: PipeTargetStateMachineParameters;
|
|
2283
|
+
StepFunctionStateMachineParameters?: PipeTargetStateMachineParameters | undefined;
|
|
2284
2284
|
/**
|
|
2285
2285
|
* <p>The parameters for using a Kinesis stream as a target.</p>
|
|
2286
2286
|
* @public
|
|
2287
2287
|
*/
|
|
2288
|
-
KinesisStreamParameters?: PipeTargetKinesisStreamParameters;
|
|
2288
|
+
KinesisStreamParameters?: PipeTargetKinesisStreamParameters | undefined;
|
|
2289
2289
|
/**
|
|
2290
2290
|
* <p>The parameters for using an Amazon ECS task as a target.</p>
|
|
2291
2291
|
* @public
|
|
2292
2292
|
*/
|
|
2293
|
-
EcsTaskParameters?: PipeTargetEcsTaskParameters;
|
|
2293
|
+
EcsTaskParameters?: PipeTargetEcsTaskParameters | undefined;
|
|
2294
2294
|
/**
|
|
2295
2295
|
* <p>The parameters for using an Batch job as a target.</p>
|
|
2296
2296
|
* @public
|
|
2297
2297
|
*/
|
|
2298
|
-
BatchJobParameters?: PipeTargetBatchJobParameters;
|
|
2298
|
+
BatchJobParameters?: PipeTargetBatchJobParameters | undefined;
|
|
2299
2299
|
/**
|
|
2300
2300
|
* <p>The parameters for using a Amazon SQS stream as a target.</p>
|
|
2301
2301
|
* @public
|
|
2302
2302
|
*/
|
|
2303
|
-
SqsQueueParameters?: PipeTargetSqsQueueParameters;
|
|
2303
|
+
SqsQueueParameters?: PipeTargetSqsQueueParameters | undefined;
|
|
2304
2304
|
/**
|
|
2305
2305
|
* <p>These are custom parameter to be used when the target is an API Gateway REST APIs or
|
|
2306
2306
|
* EventBridge ApiDestinations.</p>
|
|
2307
2307
|
* @public
|
|
2308
2308
|
*/
|
|
2309
|
-
HttpParameters?: PipeTargetHttpParameters;
|
|
2309
|
+
HttpParameters?: PipeTargetHttpParameters | undefined;
|
|
2310
2310
|
/**
|
|
2311
2311
|
* <p>These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the
|
|
2312
2312
|
* Amazon Redshift Data API BatchExecuteStatement.</p>
|
|
2313
2313
|
* @public
|
|
2314
2314
|
*/
|
|
2315
|
-
RedshiftDataParameters?: PipeTargetRedshiftDataParameters;
|
|
2315
|
+
RedshiftDataParameters?: PipeTargetRedshiftDataParameters | undefined;
|
|
2316
2316
|
/**
|
|
2317
2317
|
* <p>The parameters for using a SageMaker pipeline as a target.</p>
|
|
2318
2318
|
* @public
|
|
2319
2319
|
*/
|
|
2320
|
-
SageMakerPipelineParameters?: PipeTargetSageMakerPipelineParameters;
|
|
2320
|
+
SageMakerPipelineParameters?: PipeTargetSageMakerPipelineParameters | undefined;
|
|
2321
2321
|
/**
|
|
2322
2322
|
* <p>The parameters for using an EventBridge event bus as a target.</p>
|
|
2323
2323
|
* @public
|
|
2324
2324
|
*/
|
|
2325
|
-
EventBridgeEventBusParameters?: PipeTargetEventBridgeEventBusParameters;
|
|
2325
|
+
EventBridgeEventBusParameters?: PipeTargetEventBridgeEventBusParameters | undefined;
|
|
2326
2326
|
/**
|
|
2327
2327
|
* <p>The parameters for using an CloudWatch Logs log stream as a target.</p>
|
|
2328
2328
|
* @public
|
|
2329
2329
|
*/
|
|
2330
|
-
CloudWatchLogsParameters?: PipeTargetCloudWatchLogsParameters;
|
|
2330
|
+
CloudWatchLogsParameters?: PipeTargetCloudWatchLogsParameters | undefined;
|
|
2331
2331
|
/**
|
|
2332
2332
|
* <p>The parameters for using a Timestream for LiveAnalytics table as a
|
|
2333
2333
|
* target.</p>
|
|
2334
2334
|
* @public
|
|
2335
2335
|
*/
|
|
2336
|
-
TimestreamParameters?: PipeTargetTimestreamParameters;
|
|
2336
|
+
TimestreamParameters?: PipeTargetTimestreamParameters | undefined;
|
|
2337
2337
|
}
|
|
2338
2338
|
/**
|
|
2339
2339
|
* @public
|
|
@@ -2348,12 +2348,12 @@ export interface CreatePipeRequest {
|
|
|
2348
2348
|
* <p>A description of the pipe.</p>
|
|
2349
2349
|
* @public
|
|
2350
2350
|
*/
|
|
2351
|
-
Description?: string;
|
|
2351
|
+
Description?: string | undefined;
|
|
2352
2352
|
/**
|
|
2353
2353
|
* <p>The state the pipe should be in.</p>
|
|
2354
2354
|
* @public
|
|
2355
2355
|
*/
|
|
2356
|
-
DesiredState?: RequestedPipeState;
|
|
2356
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
2357
2357
|
/**
|
|
2358
2358
|
* <p>The ARN of the source resource.</p>
|
|
2359
2359
|
* @public
|
|
@@ -2363,17 +2363,17 @@ export interface CreatePipeRequest {
|
|
|
2363
2363
|
* <p>The parameters required to set up a source for your pipe.</p>
|
|
2364
2364
|
* @public
|
|
2365
2365
|
*/
|
|
2366
|
-
SourceParameters?: PipeSourceParameters;
|
|
2366
|
+
SourceParameters?: PipeSourceParameters | undefined;
|
|
2367
2367
|
/**
|
|
2368
2368
|
* <p>The ARN of the enrichment resource.</p>
|
|
2369
2369
|
* @public
|
|
2370
2370
|
*/
|
|
2371
|
-
Enrichment?: string;
|
|
2371
|
+
Enrichment?: string | undefined;
|
|
2372
2372
|
/**
|
|
2373
2373
|
* <p>The parameters required to set up enrichment on your pipe.</p>
|
|
2374
2374
|
* @public
|
|
2375
2375
|
*/
|
|
2376
|
-
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
2376
|
+
EnrichmentParameters?: PipeEnrichmentParameters | undefined;
|
|
2377
2377
|
/**
|
|
2378
2378
|
* <p>The ARN of the target resource.</p>
|
|
2379
2379
|
* @public
|
|
@@ -2384,7 +2384,7 @@ export interface CreatePipeRequest {
|
|
|
2384
2384
|
* <p>For more information about pipe target parameters, including how to use dynamic path parameters, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html">Target parameters</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
2385
2385
|
* @public
|
|
2386
2386
|
*/
|
|
2387
|
-
TargetParameters?: PipeTargetParameters;
|
|
2387
|
+
TargetParameters?: PipeTargetParameters | undefined;
|
|
2388
2388
|
/**
|
|
2389
2389
|
* <p>The ARN of the role that allows the pipe to send data to the target.</p>
|
|
2390
2390
|
* @public
|
|
@@ -2394,12 +2394,12 @@ export interface CreatePipeRequest {
|
|
|
2394
2394
|
* <p>The list of key-value pairs to associate with the pipe.</p>
|
|
2395
2395
|
* @public
|
|
2396
2396
|
*/
|
|
2397
|
-
Tags?: Record<string, string
|
|
2397
|
+
Tags?: Record<string, string> | undefined;
|
|
2398
2398
|
/**
|
|
2399
2399
|
* <p>The logging configuration settings for the pipe.</p>
|
|
2400
2400
|
* @public
|
|
2401
2401
|
*/
|
|
2402
|
-
LogConfiguration?: PipeLogConfigurationParameters;
|
|
2402
|
+
LogConfiguration?: PipeLogConfigurationParameters | undefined;
|
|
2403
2403
|
/**
|
|
2404
2404
|
* <p>The identifier of the KMS
|
|
2405
2405
|
* customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt pipe data. The identifier can be the key
|
|
@@ -2410,7 +2410,7 @@ export interface CreatePipeRequest {
|
|
|
2410
2410
|
* Developer Guide</i>. </p>
|
|
2411
2411
|
* @public
|
|
2412
2412
|
*/
|
|
2413
|
-
KmsKeyIdentifier?: string;
|
|
2413
|
+
KmsKeyIdentifier?: string | undefined;
|
|
2414
2414
|
}
|
|
2415
2415
|
/**
|
|
2416
2416
|
* @public
|
|
@@ -2445,32 +2445,32 @@ export interface CreatePipeResponse {
|
|
|
2445
2445
|
* <p>The ARN of the pipe.</p>
|
|
2446
2446
|
* @public
|
|
2447
2447
|
*/
|
|
2448
|
-
Arn?: string;
|
|
2448
|
+
Arn?: string | undefined;
|
|
2449
2449
|
/**
|
|
2450
2450
|
* <p>The name of the pipe.</p>
|
|
2451
2451
|
* @public
|
|
2452
2452
|
*/
|
|
2453
|
-
Name?: string;
|
|
2453
|
+
Name?: string | undefined;
|
|
2454
2454
|
/**
|
|
2455
2455
|
* <p>The state the pipe should be in.</p>
|
|
2456
2456
|
* @public
|
|
2457
2457
|
*/
|
|
2458
|
-
DesiredState?: RequestedPipeState;
|
|
2458
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
2459
2459
|
/**
|
|
2460
2460
|
* <p>The state the pipe is in.</p>
|
|
2461
2461
|
* @public
|
|
2462
2462
|
*/
|
|
2463
|
-
CurrentState?: PipeState;
|
|
2463
|
+
CurrentState?: PipeState | undefined;
|
|
2464
2464
|
/**
|
|
2465
2465
|
* <p>The time the pipe was created.</p>
|
|
2466
2466
|
* @public
|
|
2467
2467
|
*/
|
|
2468
|
-
CreationTime?: Date;
|
|
2468
|
+
CreationTime?: Date | undefined;
|
|
2469
2469
|
/**
|
|
2470
2470
|
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
2471
2471
|
* @public
|
|
2472
2472
|
*/
|
|
2473
|
-
LastModifiedTime?: Date;
|
|
2473
|
+
LastModifiedTime?: Date | undefined;
|
|
2474
2474
|
}
|
|
2475
2475
|
/**
|
|
2476
2476
|
* <p>This exception occurs due to unexpected causes.</p>
|
|
@@ -2484,7 +2484,7 @@ export declare class InternalException extends __BaseException {
|
|
|
2484
2484
|
* exception.</p>
|
|
2485
2485
|
* @public
|
|
2486
2486
|
*/
|
|
2487
|
-
retryAfterSeconds?: number;
|
|
2487
|
+
retryAfterSeconds?: number | undefined;
|
|
2488
2488
|
/**
|
|
2489
2489
|
* @internal
|
|
2490
2490
|
*/
|
|
@@ -2545,18 +2545,18 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
2545
2545
|
* <p>The identifier of the service that caused the exception.</p>
|
|
2546
2546
|
* @public
|
|
2547
2547
|
*/
|
|
2548
|
-
serviceCode?: string;
|
|
2548
|
+
serviceCode?: string | undefined;
|
|
2549
2549
|
/**
|
|
2550
2550
|
* <p>The identifier of the quota that caused the exception.</p>
|
|
2551
2551
|
* @public
|
|
2552
2552
|
*/
|
|
2553
|
-
quotaCode?: string;
|
|
2553
|
+
quotaCode?: string | undefined;
|
|
2554
2554
|
/**
|
|
2555
2555
|
* <p>The number of seconds to wait before retrying the action that caused the
|
|
2556
2556
|
* exception.</p>
|
|
2557
2557
|
* @public
|
|
2558
2558
|
*/
|
|
2559
|
-
retryAfterSeconds?: number;
|
|
2559
|
+
retryAfterSeconds?: number | undefined;
|
|
2560
2560
|
/**
|
|
2561
2561
|
* @internal
|
|
2562
2562
|
*/
|
|
@@ -2590,7 +2590,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
2590
2590
|
* messages.</p>
|
|
2591
2591
|
* @public
|
|
2592
2592
|
*/
|
|
2593
|
-
fieldList?: ValidationExceptionField[];
|
|
2593
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
2594
2594
|
/**
|
|
2595
2595
|
* @internal
|
|
2596
2596
|
*/
|
|
@@ -2627,32 +2627,32 @@ export interface DeletePipeResponse {
|
|
|
2627
2627
|
* <p>The ARN of the pipe.</p>
|
|
2628
2628
|
* @public
|
|
2629
2629
|
*/
|
|
2630
|
-
Arn?: string;
|
|
2630
|
+
Arn?: string | undefined;
|
|
2631
2631
|
/**
|
|
2632
2632
|
* <p>The name of the pipe.</p>
|
|
2633
2633
|
* @public
|
|
2634
2634
|
*/
|
|
2635
|
-
Name?: string;
|
|
2635
|
+
Name?: string | undefined;
|
|
2636
2636
|
/**
|
|
2637
2637
|
* <p>The state the pipe should be in.</p>
|
|
2638
2638
|
* @public
|
|
2639
2639
|
*/
|
|
2640
|
-
DesiredState?: RequestedPipeStateDescribeResponse;
|
|
2640
|
+
DesiredState?: RequestedPipeStateDescribeResponse | undefined;
|
|
2641
2641
|
/**
|
|
2642
2642
|
* <p>The state the pipe is in.</p>
|
|
2643
2643
|
* @public
|
|
2644
2644
|
*/
|
|
2645
|
-
CurrentState?: PipeState;
|
|
2645
|
+
CurrentState?: PipeState | undefined;
|
|
2646
2646
|
/**
|
|
2647
2647
|
* <p>The time the pipe was created.</p>
|
|
2648
2648
|
* @public
|
|
2649
2649
|
*/
|
|
2650
|
-
CreationTime?: Date;
|
|
2650
|
+
CreationTime?: Date | undefined;
|
|
2651
2651
|
/**
|
|
2652
2652
|
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
2653
2653
|
* @public
|
|
2654
2654
|
*/
|
|
2655
|
-
LastModifiedTime?: Date;
|
|
2655
|
+
LastModifiedTime?: Date | undefined;
|
|
2656
2656
|
}
|
|
2657
2657
|
/**
|
|
2658
2658
|
* @public
|
|
@@ -2673,7 +2673,7 @@ export interface FirehoseLogDestination {
|
|
|
2673
2673
|
* <p>The Amazon Resource Name (ARN) of the Firehose delivery stream to which EventBridge delivers the pipe log records.</p>
|
|
2674
2674
|
* @public
|
|
2675
2675
|
*/
|
|
2676
|
-
DeliveryStreamArn?: string;
|
|
2676
|
+
DeliveryStreamArn?: string | undefined;
|
|
2677
2677
|
}
|
|
2678
2678
|
/**
|
|
2679
2679
|
* <p>The Amazon S3 logging configuration settings for the pipe.</p>
|
|
@@ -2685,25 +2685,25 @@ export interface S3LogDestination {
|
|
|
2685
2685
|
* records for the pipe.</p>
|
|
2686
2686
|
* @public
|
|
2687
2687
|
*/
|
|
2688
|
-
BucketName?: string;
|
|
2688
|
+
BucketName?: string | undefined;
|
|
2689
2689
|
/**
|
|
2690
2690
|
* <p>The prefix text with which to begin Amazon S3 log object names.</p>
|
|
2691
2691
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html">Organizing objects using
|
|
2692
2692
|
* prefixes</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
|
|
2693
2693
|
* @public
|
|
2694
2694
|
*/
|
|
2695
|
-
Prefix?: string;
|
|
2695
|
+
Prefix?: string | undefined;
|
|
2696
2696
|
/**
|
|
2697
2697
|
* <p>The Amazon Web Services account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.</p>
|
|
2698
2698
|
* @public
|
|
2699
2699
|
*/
|
|
2700
|
-
BucketOwner?: string;
|
|
2700
|
+
BucketOwner?: string | undefined;
|
|
2701
2701
|
/**
|
|
2702
2702
|
* <p>The format EventBridge uses for the log records.</p>
|
|
2703
2703
|
* <p>EventBridge currently only supports <code>json</code> formatting.</p>
|
|
2704
2704
|
* @public
|
|
2705
2705
|
*/
|
|
2706
|
-
OutputFormat?: S3OutputFormat;
|
|
2706
|
+
OutputFormat?: S3OutputFormat | undefined;
|
|
2707
2707
|
}
|
|
2708
2708
|
/**
|
|
2709
2709
|
* <p>The logging configuration settings for the pipe.</p>
|
|
@@ -2714,22 +2714,22 @@ export interface PipeLogConfiguration {
|
|
|
2714
2714
|
* <p>The Amazon S3 logging configuration settings for the pipe.</p>
|
|
2715
2715
|
* @public
|
|
2716
2716
|
*/
|
|
2717
|
-
S3LogDestination?: S3LogDestination;
|
|
2717
|
+
S3LogDestination?: S3LogDestination | undefined;
|
|
2718
2718
|
/**
|
|
2719
2719
|
* <p>The Amazon Data Firehose logging configuration settings for the pipe.</p>
|
|
2720
2720
|
* @public
|
|
2721
2721
|
*/
|
|
2722
|
-
FirehoseLogDestination?: FirehoseLogDestination;
|
|
2722
|
+
FirehoseLogDestination?: FirehoseLogDestination | undefined;
|
|
2723
2723
|
/**
|
|
2724
2724
|
* <p>The Amazon CloudWatch Logs logging configuration settings for the pipe.</p>
|
|
2725
2725
|
* @public
|
|
2726
2726
|
*/
|
|
2727
|
-
CloudwatchLogsLogDestination?: CloudwatchLogsLogDestination;
|
|
2727
|
+
CloudwatchLogsLogDestination?: CloudwatchLogsLogDestination | undefined;
|
|
2728
2728
|
/**
|
|
2729
2729
|
* <p>The level of logging detail to include. This applies to all log destinations for the pipe.</p>
|
|
2730
2730
|
* @public
|
|
2731
2731
|
*/
|
|
2732
|
-
Level?: LogLevel;
|
|
2732
|
+
Level?: LogLevel | undefined;
|
|
2733
2733
|
/**
|
|
2734
2734
|
* <p>Whether the execution data (specifically, the <code>payload</code>,
|
|
2735
2735
|
* <code>awsRequest</code>, and <code>awsResponse</code> fields) is included in the log
|
|
@@ -2739,7 +2739,7 @@ export interface PipeLogConfiguration {
|
|
|
2739
2739
|
* Guide</i>.</p>
|
|
2740
2740
|
* @public
|
|
2741
2741
|
*/
|
|
2742
|
-
IncludeExecutionData?: IncludeExecutionDataOption[];
|
|
2742
|
+
IncludeExecutionData?: IncludeExecutionDataOption[] | undefined;
|
|
2743
2743
|
}
|
|
2744
2744
|
/**
|
|
2745
2745
|
* @public
|
|
@@ -2749,95 +2749,95 @@ export interface DescribePipeResponse {
|
|
|
2749
2749
|
* <p>The ARN of the pipe.</p>
|
|
2750
2750
|
* @public
|
|
2751
2751
|
*/
|
|
2752
|
-
Arn?: string;
|
|
2752
|
+
Arn?: string | undefined;
|
|
2753
2753
|
/**
|
|
2754
2754
|
* <p>The name of the pipe.</p>
|
|
2755
2755
|
* @public
|
|
2756
2756
|
*/
|
|
2757
|
-
Name?: string;
|
|
2757
|
+
Name?: string | undefined;
|
|
2758
2758
|
/**
|
|
2759
2759
|
* <p>A description of the pipe.</p>
|
|
2760
2760
|
* @public
|
|
2761
2761
|
*/
|
|
2762
|
-
Description?: string;
|
|
2762
|
+
Description?: string | undefined;
|
|
2763
2763
|
/**
|
|
2764
2764
|
* <p>The state the pipe should be in.</p>
|
|
2765
2765
|
* @public
|
|
2766
2766
|
*/
|
|
2767
|
-
DesiredState?: RequestedPipeStateDescribeResponse;
|
|
2767
|
+
DesiredState?: RequestedPipeStateDescribeResponse | undefined;
|
|
2768
2768
|
/**
|
|
2769
2769
|
* <p>The state the pipe is in.</p>
|
|
2770
2770
|
* @public
|
|
2771
2771
|
*/
|
|
2772
|
-
CurrentState?: PipeState;
|
|
2772
|
+
CurrentState?: PipeState | undefined;
|
|
2773
2773
|
/**
|
|
2774
2774
|
* <p>The reason the pipe is in its current state.</p>
|
|
2775
2775
|
* @public
|
|
2776
2776
|
*/
|
|
2777
|
-
StateReason?: string;
|
|
2777
|
+
StateReason?: string | undefined;
|
|
2778
2778
|
/**
|
|
2779
2779
|
* <p>The ARN of the source resource.</p>
|
|
2780
2780
|
* @public
|
|
2781
2781
|
*/
|
|
2782
|
-
Source?: string;
|
|
2782
|
+
Source?: string | undefined;
|
|
2783
2783
|
/**
|
|
2784
2784
|
* <p>The parameters required to set up a source for your pipe.</p>
|
|
2785
2785
|
* @public
|
|
2786
2786
|
*/
|
|
2787
|
-
SourceParameters?: PipeSourceParameters;
|
|
2787
|
+
SourceParameters?: PipeSourceParameters | undefined;
|
|
2788
2788
|
/**
|
|
2789
2789
|
* <p>The ARN of the enrichment resource.</p>
|
|
2790
2790
|
* @public
|
|
2791
2791
|
*/
|
|
2792
|
-
Enrichment?: string;
|
|
2792
|
+
Enrichment?: string | undefined;
|
|
2793
2793
|
/**
|
|
2794
2794
|
* <p>The parameters required to set up enrichment on your pipe.</p>
|
|
2795
2795
|
* @public
|
|
2796
2796
|
*/
|
|
2797
|
-
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
2797
|
+
EnrichmentParameters?: PipeEnrichmentParameters | undefined;
|
|
2798
2798
|
/**
|
|
2799
2799
|
* <p>The ARN of the target resource.</p>
|
|
2800
2800
|
* @public
|
|
2801
2801
|
*/
|
|
2802
|
-
Target?: string;
|
|
2802
|
+
Target?: string | undefined;
|
|
2803
2803
|
/**
|
|
2804
2804
|
* <p>The parameters required to set up a target for your pipe.</p>
|
|
2805
2805
|
* <p>For more information about pipe target parameters, including how to use dynamic path parameters, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html">Target parameters</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
2806
2806
|
* @public
|
|
2807
2807
|
*/
|
|
2808
|
-
TargetParameters?: PipeTargetParameters;
|
|
2808
|
+
TargetParameters?: PipeTargetParameters | undefined;
|
|
2809
2809
|
/**
|
|
2810
2810
|
* <p>The ARN of the role that allows the pipe to send data to the target.</p>
|
|
2811
2811
|
* @public
|
|
2812
2812
|
*/
|
|
2813
|
-
RoleArn?: string;
|
|
2813
|
+
RoleArn?: string | undefined;
|
|
2814
2814
|
/**
|
|
2815
2815
|
* <p>The list of key-value pairs to associate with the pipe.</p>
|
|
2816
2816
|
* @public
|
|
2817
2817
|
*/
|
|
2818
|
-
Tags?: Record<string, string
|
|
2818
|
+
Tags?: Record<string, string> | undefined;
|
|
2819
2819
|
/**
|
|
2820
2820
|
* <p>The time the pipe was created.</p>
|
|
2821
2821
|
* @public
|
|
2822
2822
|
*/
|
|
2823
|
-
CreationTime?: Date;
|
|
2823
|
+
CreationTime?: Date | undefined;
|
|
2824
2824
|
/**
|
|
2825
2825
|
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
2826
2826
|
* @public
|
|
2827
2827
|
*/
|
|
2828
|
-
LastModifiedTime?: Date;
|
|
2828
|
+
LastModifiedTime?: Date | undefined;
|
|
2829
2829
|
/**
|
|
2830
2830
|
* <p>The logging configuration settings for the pipe.</p>
|
|
2831
2831
|
* @public
|
|
2832
2832
|
*/
|
|
2833
|
-
LogConfiguration?: PipeLogConfiguration;
|
|
2833
|
+
LogConfiguration?: PipeLogConfiguration | undefined;
|
|
2834
2834
|
/**
|
|
2835
2835
|
* <p>The identifier of the KMS
|
|
2836
2836
|
* customer managed key for EventBridge to use to encrypt pipe data, if one has been specified.</p>
|
|
2837
2837
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html">Data encryption in EventBridge</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
2838
2838
|
* @public
|
|
2839
2839
|
*/
|
|
2840
|
-
KmsKeyIdentifier?: string;
|
|
2840
|
+
KmsKeyIdentifier?: string | undefined;
|
|
2841
2841
|
}
|
|
2842
2842
|
/**
|
|
2843
2843
|
* @public
|
|
@@ -2849,39 +2849,39 @@ export interface ListPipesRequest {
|
|
|
2849
2849
|
* name.</p>
|
|
2850
2850
|
* @public
|
|
2851
2851
|
*/
|
|
2852
|
-
NamePrefix?: string;
|
|
2852
|
+
NamePrefix?: string | undefined;
|
|
2853
2853
|
/**
|
|
2854
2854
|
* <p>The state the pipe should be in.</p>
|
|
2855
2855
|
* @public
|
|
2856
2856
|
*/
|
|
2857
|
-
DesiredState?: RequestedPipeState;
|
|
2857
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
2858
2858
|
/**
|
|
2859
2859
|
* <p>The state the pipe is in.</p>
|
|
2860
2860
|
* @public
|
|
2861
2861
|
*/
|
|
2862
|
-
CurrentState?: PipeState;
|
|
2862
|
+
CurrentState?: PipeState | undefined;
|
|
2863
2863
|
/**
|
|
2864
2864
|
* <p>The prefix matching the pipe source.</p>
|
|
2865
2865
|
* @public
|
|
2866
2866
|
*/
|
|
2867
|
-
SourcePrefix?: string;
|
|
2867
|
+
SourcePrefix?: string | undefined;
|
|
2868
2868
|
/**
|
|
2869
2869
|
* <p>The prefix matching the pipe target.</p>
|
|
2870
2870
|
* @public
|
|
2871
2871
|
*/
|
|
2872
|
-
TargetPrefix?: string;
|
|
2872
|
+
TargetPrefix?: string | undefined;
|
|
2873
2873
|
/**
|
|
2874
2874
|
* <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
2875
2875
|
* Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination
|
|
2876
2876
|
* token will return an HTTP 400 InvalidToken error.</p>
|
|
2877
2877
|
* @public
|
|
2878
2878
|
*/
|
|
2879
|
-
NextToken?: string;
|
|
2879
|
+
NextToken?: string | undefined;
|
|
2880
2880
|
/**
|
|
2881
2881
|
* <p>The maximum number of pipes to include in the response.</p>
|
|
2882
2882
|
* @public
|
|
2883
2883
|
*/
|
|
2884
|
-
Limit?: number;
|
|
2884
|
+
Limit?: number | undefined;
|
|
2885
2885
|
}
|
|
2886
2886
|
/**
|
|
2887
2887
|
* <p>An object that represents a pipe. Amazon EventBridgePipes connect event sources to
|
|
@@ -2893,52 +2893,52 @@ export interface Pipe {
|
|
|
2893
2893
|
* <p>The name of the pipe.</p>
|
|
2894
2894
|
* @public
|
|
2895
2895
|
*/
|
|
2896
|
-
Name?: string;
|
|
2896
|
+
Name?: string | undefined;
|
|
2897
2897
|
/**
|
|
2898
2898
|
* <p>The ARN of the pipe.</p>
|
|
2899
2899
|
* @public
|
|
2900
2900
|
*/
|
|
2901
|
-
Arn?: string;
|
|
2901
|
+
Arn?: string | undefined;
|
|
2902
2902
|
/**
|
|
2903
2903
|
* <p>The state the pipe should be in.</p>
|
|
2904
2904
|
* @public
|
|
2905
2905
|
*/
|
|
2906
|
-
DesiredState?: RequestedPipeState;
|
|
2906
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
2907
2907
|
/**
|
|
2908
2908
|
* <p>The state the pipe is in.</p>
|
|
2909
2909
|
* @public
|
|
2910
2910
|
*/
|
|
2911
|
-
CurrentState?: PipeState;
|
|
2911
|
+
CurrentState?: PipeState | undefined;
|
|
2912
2912
|
/**
|
|
2913
2913
|
* <p>The reason the pipe is in its current state.</p>
|
|
2914
2914
|
* @public
|
|
2915
2915
|
*/
|
|
2916
|
-
StateReason?: string;
|
|
2916
|
+
StateReason?: string | undefined;
|
|
2917
2917
|
/**
|
|
2918
2918
|
* <p>The time the pipe was created.</p>
|
|
2919
2919
|
* @public
|
|
2920
2920
|
*/
|
|
2921
|
-
CreationTime?: Date;
|
|
2921
|
+
CreationTime?: Date | undefined;
|
|
2922
2922
|
/**
|
|
2923
2923
|
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
2924
2924
|
* @public
|
|
2925
2925
|
*/
|
|
2926
|
-
LastModifiedTime?: Date;
|
|
2926
|
+
LastModifiedTime?: Date | undefined;
|
|
2927
2927
|
/**
|
|
2928
2928
|
* <p>The ARN of the source resource.</p>
|
|
2929
2929
|
* @public
|
|
2930
2930
|
*/
|
|
2931
|
-
Source?: string;
|
|
2931
|
+
Source?: string | undefined;
|
|
2932
2932
|
/**
|
|
2933
2933
|
* <p>The ARN of the target resource.</p>
|
|
2934
2934
|
* @public
|
|
2935
2935
|
*/
|
|
2936
|
-
Target?: string;
|
|
2936
|
+
Target?: string | undefined;
|
|
2937
2937
|
/**
|
|
2938
2938
|
* <p>The ARN of the enrichment resource.</p>
|
|
2939
2939
|
* @public
|
|
2940
2940
|
*/
|
|
2941
|
-
Enrichment?: string;
|
|
2941
|
+
Enrichment?: string | undefined;
|
|
2942
2942
|
}
|
|
2943
2943
|
/**
|
|
2944
2944
|
* @public
|
|
@@ -2948,14 +2948,14 @@ export interface ListPipesResponse {
|
|
|
2948
2948
|
* <p>The pipes returned by the call.</p>
|
|
2949
2949
|
* @public
|
|
2950
2950
|
*/
|
|
2951
|
-
Pipes?: Pipe[];
|
|
2951
|
+
Pipes?: Pipe[] | undefined;
|
|
2952
2952
|
/**
|
|
2953
2953
|
* <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
2954
2954
|
* Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination
|
|
2955
2955
|
* token will return an HTTP 400 InvalidToken error.</p>
|
|
2956
2956
|
* @public
|
|
2957
2957
|
*/
|
|
2958
|
-
NextToken?: string;
|
|
2958
|
+
NextToken?: string | undefined;
|
|
2959
2959
|
}
|
|
2960
2960
|
/**
|
|
2961
2961
|
* @public
|
|
@@ -2975,7 +2975,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2975
2975
|
* <p>The list of key-value pairs to associate with the pipe.</p>
|
|
2976
2976
|
* @public
|
|
2977
2977
|
*/
|
|
2978
|
-
tags?: Record<string, string
|
|
2978
|
+
tags?: Record<string, string> | undefined;
|
|
2979
2979
|
}
|
|
2980
2980
|
/**
|
|
2981
2981
|
* @public
|
|
@@ -2995,32 +2995,32 @@ export interface StartPipeResponse {
|
|
|
2995
2995
|
* <p>The ARN of the pipe.</p>
|
|
2996
2996
|
* @public
|
|
2997
2997
|
*/
|
|
2998
|
-
Arn?: string;
|
|
2998
|
+
Arn?: string | undefined;
|
|
2999
2999
|
/**
|
|
3000
3000
|
* <p>The name of the pipe.</p>
|
|
3001
3001
|
* @public
|
|
3002
3002
|
*/
|
|
3003
|
-
Name?: string;
|
|
3003
|
+
Name?: string | undefined;
|
|
3004
3004
|
/**
|
|
3005
3005
|
* <p>The state the pipe should be in.</p>
|
|
3006
3006
|
* @public
|
|
3007
3007
|
*/
|
|
3008
|
-
DesiredState?: RequestedPipeState;
|
|
3008
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
3009
3009
|
/**
|
|
3010
3010
|
* <p>The state the pipe is in.</p>
|
|
3011
3011
|
* @public
|
|
3012
3012
|
*/
|
|
3013
|
-
CurrentState?: PipeState;
|
|
3013
|
+
CurrentState?: PipeState | undefined;
|
|
3014
3014
|
/**
|
|
3015
3015
|
* <p>The time the pipe was created.</p>
|
|
3016
3016
|
* @public
|
|
3017
3017
|
*/
|
|
3018
|
-
CreationTime?: Date;
|
|
3018
|
+
CreationTime?: Date | undefined;
|
|
3019
3019
|
/**
|
|
3020
3020
|
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
3021
3021
|
* @public
|
|
3022
3022
|
*/
|
|
3023
|
-
LastModifiedTime?: Date;
|
|
3023
|
+
LastModifiedTime?: Date | undefined;
|
|
3024
3024
|
}
|
|
3025
3025
|
/**
|
|
3026
3026
|
* @public
|
|
@@ -3040,32 +3040,32 @@ export interface StopPipeResponse {
|
|
|
3040
3040
|
* <p>The ARN of the pipe.</p>
|
|
3041
3041
|
* @public
|
|
3042
3042
|
*/
|
|
3043
|
-
Arn?: string;
|
|
3043
|
+
Arn?: string | undefined;
|
|
3044
3044
|
/**
|
|
3045
3045
|
* <p>The name of the pipe.</p>
|
|
3046
3046
|
* @public
|
|
3047
3047
|
*/
|
|
3048
|
-
Name?: string;
|
|
3048
|
+
Name?: string | undefined;
|
|
3049
3049
|
/**
|
|
3050
3050
|
* <p>The state the pipe should be in.</p>
|
|
3051
3051
|
* @public
|
|
3052
3052
|
*/
|
|
3053
|
-
DesiredState?: RequestedPipeState;
|
|
3053
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
3054
3054
|
/**
|
|
3055
3055
|
* <p>The state the pipe is in.</p>
|
|
3056
3056
|
* @public
|
|
3057
3057
|
*/
|
|
3058
|
-
CurrentState?: PipeState;
|
|
3058
|
+
CurrentState?: PipeState | undefined;
|
|
3059
3059
|
/**
|
|
3060
3060
|
* <p>The time the pipe was created.</p>
|
|
3061
3061
|
* @public
|
|
3062
3062
|
*/
|
|
3063
|
-
CreationTime?: Date;
|
|
3063
|
+
CreationTime?: Date | undefined;
|
|
3064
3064
|
/**
|
|
3065
3065
|
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
3066
3066
|
* @public
|
|
3067
3067
|
*/
|
|
3068
|
-
LastModifiedTime?: Date;
|
|
3068
|
+
LastModifiedTime?: Date | undefined;
|
|
3069
3069
|
}
|
|
3070
3070
|
/**
|
|
3071
3071
|
* <p>The parameters for using an Active MQ broker as a source.</p>
|
|
@@ -3081,12 +3081,12 @@ export interface UpdatePipeSourceActiveMQBrokerParameters {
|
|
|
3081
3081
|
* <p>The maximum number of records to include in each batch.</p>
|
|
3082
3082
|
* @public
|
|
3083
3083
|
*/
|
|
3084
|
-
BatchSize?: number;
|
|
3084
|
+
BatchSize?: number | undefined;
|
|
3085
3085
|
/**
|
|
3086
3086
|
* <p>The maximum length of a time to wait for events.</p>
|
|
3087
3087
|
* @public
|
|
3088
3088
|
*/
|
|
3089
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
3089
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
3090
3090
|
}
|
|
3091
3091
|
/**
|
|
3092
3092
|
* <p>The parameters for using a DynamoDB stream as a source.</p>
|
|
@@ -3097,40 +3097,40 @@ export interface UpdatePipeSourceDynamoDBStreamParameters {
|
|
|
3097
3097
|
* <p>The maximum number of records to include in each batch.</p>
|
|
3098
3098
|
* @public
|
|
3099
3099
|
*/
|
|
3100
|
-
BatchSize?: number;
|
|
3100
|
+
BatchSize?: number | undefined;
|
|
3101
3101
|
/**
|
|
3102
3102
|
* <p>Define the target queue to send dead-letter queue events to.</p>
|
|
3103
3103
|
* @public
|
|
3104
3104
|
*/
|
|
3105
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
3105
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
3106
3106
|
/**
|
|
3107
3107
|
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
3108
3108
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
3109
3109
|
* @public
|
|
3110
3110
|
*/
|
|
3111
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
3111
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | undefined;
|
|
3112
3112
|
/**
|
|
3113
3113
|
* <p>The maximum length of a time to wait for events.</p>
|
|
3114
3114
|
* @public
|
|
3115
3115
|
*/
|
|
3116
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
3116
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
3117
3117
|
/**
|
|
3118
3118
|
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
3119
3119
|
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
3120
3120
|
* @public
|
|
3121
3121
|
*/
|
|
3122
|
-
MaximumRecordAgeInSeconds?: number;
|
|
3122
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
3123
3123
|
/**
|
|
3124
3124
|
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
3125
3125
|
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
3126
3126
|
* @public
|
|
3127
3127
|
*/
|
|
3128
|
-
MaximumRetryAttempts?: number;
|
|
3128
|
+
MaximumRetryAttempts?: number | undefined;
|
|
3129
3129
|
/**
|
|
3130
3130
|
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
3131
3131
|
* @public
|
|
3132
3132
|
*/
|
|
3133
|
-
ParallelizationFactor?: number;
|
|
3133
|
+
ParallelizationFactor?: number | undefined;
|
|
3134
3134
|
}
|
|
3135
3135
|
/**
|
|
3136
3136
|
* <p>The parameters for using a Kinesis stream as a source.</p>
|
|
@@ -3141,40 +3141,40 @@ export interface UpdatePipeSourceKinesisStreamParameters {
|
|
|
3141
3141
|
* <p>The maximum number of records to include in each batch.</p>
|
|
3142
3142
|
* @public
|
|
3143
3143
|
*/
|
|
3144
|
-
BatchSize?: number;
|
|
3144
|
+
BatchSize?: number | undefined;
|
|
3145
3145
|
/**
|
|
3146
3146
|
* <p>Define the target queue to send dead-letter queue events to.</p>
|
|
3147
3147
|
* @public
|
|
3148
3148
|
*/
|
|
3149
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
3149
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
3150
3150
|
/**
|
|
3151
3151
|
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
3152
3152
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
3153
3153
|
* @public
|
|
3154
3154
|
*/
|
|
3155
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
3155
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | undefined;
|
|
3156
3156
|
/**
|
|
3157
3157
|
* <p>The maximum length of a time to wait for events.</p>
|
|
3158
3158
|
* @public
|
|
3159
3159
|
*/
|
|
3160
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
3160
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
3161
3161
|
/**
|
|
3162
3162
|
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
3163
3163
|
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
3164
3164
|
* @public
|
|
3165
3165
|
*/
|
|
3166
|
-
MaximumRecordAgeInSeconds?: number;
|
|
3166
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
3167
3167
|
/**
|
|
3168
3168
|
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
3169
3169
|
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
3170
3170
|
* @public
|
|
3171
3171
|
*/
|
|
3172
|
-
MaximumRetryAttempts?: number;
|
|
3172
|
+
MaximumRetryAttempts?: number | undefined;
|
|
3173
3173
|
/**
|
|
3174
3174
|
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
3175
3175
|
* @public
|
|
3176
3176
|
*/
|
|
3177
|
-
ParallelizationFactor?: number;
|
|
3177
|
+
ParallelizationFactor?: number | undefined;
|
|
3178
3178
|
}
|
|
3179
3179
|
/**
|
|
3180
3180
|
* <p>The parameters for using an MSK stream as a source.</p>
|
|
@@ -3185,17 +3185,17 @@ export interface UpdatePipeSourceManagedStreamingKafkaParameters {
|
|
|
3185
3185
|
* <p>The maximum number of records to include in each batch.</p>
|
|
3186
3186
|
* @public
|
|
3187
3187
|
*/
|
|
3188
|
-
BatchSize?: number;
|
|
3188
|
+
BatchSize?: number | undefined;
|
|
3189
3189
|
/**
|
|
3190
3190
|
* <p>The credentials needed to access the resource.</p>
|
|
3191
3191
|
* @public
|
|
3192
3192
|
*/
|
|
3193
|
-
Credentials?: MSKAccessCredentials;
|
|
3193
|
+
Credentials?: MSKAccessCredentials | undefined;
|
|
3194
3194
|
/**
|
|
3195
3195
|
* <p>The maximum length of a time to wait for events.</p>
|
|
3196
3196
|
* @public
|
|
3197
3197
|
*/
|
|
3198
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
3198
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
3199
3199
|
}
|
|
3200
3200
|
/**
|
|
3201
3201
|
* <p>The parameters for using a Rabbit MQ broker as a source.</p>
|
|
@@ -3211,12 +3211,12 @@ export interface UpdatePipeSourceRabbitMQBrokerParameters {
|
|
|
3211
3211
|
* <p>The maximum number of records to include in each batch.</p>
|
|
3212
3212
|
* @public
|
|
3213
3213
|
*/
|
|
3214
|
-
BatchSize?: number;
|
|
3214
|
+
BatchSize?: number | undefined;
|
|
3215
3215
|
/**
|
|
3216
3216
|
* <p>The maximum length of a time to wait for events.</p>
|
|
3217
3217
|
* @public
|
|
3218
3218
|
*/
|
|
3219
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
3219
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
3220
3220
|
}
|
|
3221
3221
|
/**
|
|
3222
3222
|
* <p>The parameters for using a self-managed Apache Kafka stream as a source.</p>
|
|
@@ -3231,27 +3231,27 @@ export interface UpdatePipeSourceSelfManagedKafkaParameters {
|
|
|
3231
3231
|
* <p>The maximum number of records to include in each batch.</p>
|
|
3232
3232
|
* @public
|
|
3233
3233
|
*/
|
|
3234
|
-
BatchSize?: number;
|
|
3234
|
+
BatchSize?: number | undefined;
|
|
3235
3235
|
/**
|
|
3236
3236
|
* <p>The maximum length of a time to wait for events.</p>
|
|
3237
3237
|
* @public
|
|
3238
3238
|
*/
|
|
3239
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
3239
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
3240
3240
|
/**
|
|
3241
3241
|
* <p>The credentials needed to access the resource.</p>
|
|
3242
3242
|
* @public
|
|
3243
3243
|
*/
|
|
3244
|
-
Credentials?: SelfManagedKafkaAccessConfigurationCredentials;
|
|
3244
|
+
Credentials?: SelfManagedKafkaAccessConfigurationCredentials | undefined;
|
|
3245
3245
|
/**
|
|
3246
3246
|
* <p>The ARN of the Secrets Manager secret used for certification.</p>
|
|
3247
3247
|
* @public
|
|
3248
3248
|
*/
|
|
3249
|
-
ServerRootCaCertificate?: string;
|
|
3249
|
+
ServerRootCaCertificate?: string | undefined;
|
|
3250
3250
|
/**
|
|
3251
3251
|
* <p>This structure specifies the VPC subnets and security groups for the stream, and whether a public IP address is to be used.</p>
|
|
3252
3252
|
* @public
|
|
3253
3253
|
*/
|
|
3254
|
-
Vpc?: SelfManagedKafkaAccessConfigurationVpc;
|
|
3254
|
+
Vpc?: SelfManagedKafkaAccessConfigurationVpc | undefined;
|
|
3255
3255
|
}
|
|
3256
3256
|
/**
|
|
3257
3257
|
* <p>The parameters for using a Amazon SQS stream as a source.</p>
|
|
@@ -3262,12 +3262,12 @@ export interface UpdatePipeSourceSqsQueueParameters {
|
|
|
3262
3262
|
* <p>The maximum number of records to include in each batch.</p>
|
|
3263
3263
|
* @public
|
|
3264
3264
|
*/
|
|
3265
|
-
BatchSize?: number;
|
|
3265
|
+
BatchSize?: number | undefined;
|
|
3266
3266
|
/**
|
|
3267
3267
|
* <p>The maximum length of a time to wait for events.</p>
|
|
3268
3268
|
* @public
|
|
3269
3269
|
*/
|
|
3270
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
3270
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
3271
3271
|
}
|
|
3272
3272
|
/**
|
|
3273
3273
|
* <p>The parameters required to set up a source for your pipe.</p>
|
|
@@ -3281,37 +3281,37 @@ export interface UpdatePipeSourceParameters {
|
|
|
3281
3281
|
* Patterns</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
3282
3282
|
* @public
|
|
3283
3283
|
*/
|
|
3284
|
-
FilterCriteria?: FilterCriteria;
|
|
3284
|
+
FilterCriteria?: FilterCriteria | undefined;
|
|
3285
3285
|
/**
|
|
3286
3286
|
* <p>The parameters for using a Kinesis stream as a source.</p>
|
|
3287
3287
|
* @public
|
|
3288
3288
|
*/
|
|
3289
|
-
KinesisStreamParameters?: UpdatePipeSourceKinesisStreamParameters;
|
|
3289
|
+
KinesisStreamParameters?: UpdatePipeSourceKinesisStreamParameters | undefined;
|
|
3290
3290
|
/**
|
|
3291
3291
|
* <p>The parameters for using a DynamoDB stream as a source.</p>
|
|
3292
3292
|
* @public
|
|
3293
3293
|
*/
|
|
3294
|
-
DynamoDBStreamParameters?: UpdatePipeSourceDynamoDBStreamParameters;
|
|
3294
|
+
DynamoDBStreamParameters?: UpdatePipeSourceDynamoDBStreamParameters | undefined;
|
|
3295
3295
|
/**
|
|
3296
3296
|
* <p>The parameters for using a Amazon SQS stream as a source.</p>
|
|
3297
3297
|
* @public
|
|
3298
3298
|
*/
|
|
3299
|
-
SqsQueueParameters?: UpdatePipeSourceSqsQueueParameters;
|
|
3299
|
+
SqsQueueParameters?: UpdatePipeSourceSqsQueueParameters | undefined;
|
|
3300
3300
|
/**
|
|
3301
3301
|
* <p>The parameters for using an Active MQ broker as a source.</p>
|
|
3302
3302
|
* @public
|
|
3303
3303
|
*/
|
|
3304
|
-
ActiveMQBrokerParameters?: UpdatePipeSourceActiveMQBrokerParameters;
|
|
3304
|
+
ActiveMQBrokerParameters?: UpdatePipeSourceActiveMQBrokerParameters | undefined;
|
|
3305
3305
|
/**
|
|
3306
3306
|
* <p>The parameters for using a Rabbit MQ broker as a source.</p>
|
|
3307
3307
|
* @public
|
|
3308
3308
|
*/
|
|
3309
|
-
RabbitMQBrokerParameters?: UpdatePipeSourceRabbitMQBrokerParameters;
|
|
3309
|
+
RabbitMQBrokerParameters?: UpdatePipeSourceRabbitMQBrokerParameters | undefined;
|
|
3310
3310
|
/**
|
|
3311
3311
|
* <p>The parameters for using an MSK stream as a source.</p>
|
|
3312
3312
|
* @public
|
|
3313
3313
|
*/
|
|
3314
|
-
ManagedStreamingKafkaParameters?: UpdatePipeSourceManagedStreamingKafkaParameters;
|
|
3314
|
+
ManagedStreamingKafkaParameters?: UpdatePipeSourceManagedStreamingKafkaParameters | undefined;
|
|
3315
3315
|
/**
|
|
3316
3316
|
* <p>The parameters for using a self-managed Apache Kafka stream as a source.</p>
|
|
3317
3317
|
* <p>A <i>self managed</i> cluster refers to any Apache Kafka cluster not hosted by Amazon Web Services.
|
|
@@ -3320,7 +3320,7 @@ export interface UpdatePipeSourceParameters {
|
|
|
3320
3320
|
* Cloud</a>, <a href="https://www.cloudkarafka.com/">CloudKarafka</a>, or <a href="https://redpanda.com/">Redpanda</a>. For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html">Apache Kafka streams as a source</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
3321
3321
|
* @public
|
|
3322
3322
|
*/
|
|
3323
|
-
SelfManagedKafkaParameters?: UpdatePipeSourceSelfManagedKafkaParameters;
|
|
3323
|
+
SelfManagedKafkaParameters?: UpdatePipeSourceSelfManagedKafkaParameters | undefined;
|
|
3324
3324
|
}
|
|
3325
3325
|
/**
|
|
3326
3326
|
* @public
|
|
@@ -3335,38 +3335,38 @@ export interface UpdatePipeRequest {
|
|
|
3335
3335
|
* <p>A description of the pipe.</p>
|
|
3336
3336
|
* @public
|
|
3337
3337
|
*/
|
|
3338
|
-
Description?: string;
|
|
3338
|
+
Description?: string | undefined;
|
|
3339
3339
|
/**
|
|
3340
3340
|
* <p>The state the pipe should be in.</p>
|
|
3341
3341
|
* @public
|
|
3342
3342
|
*/
|
|
3343
|
-
DesiredState?: RequestedPipeState;
|
|
3343
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
3344
3344
|
/**
|
|
3345
3345
|
* <p>The parameters required to set up a source for your pipe.</p>
|
|
3346
3346
|
* @public
|
|
3347
3347
|
*/
|
|
3348
|
-
SourceParameters?: UpdatePipeSourceParameters;
|
|
3348
|
+
SourceParameters?: UpdatePipeSourceParameters | undefined;
|
|
3349
3349
|
/**
|
|
3350
3350
|
* <p>The ARN of the enrichment resource.</p>
|
|
3351
3351
|
* @public
|
|
3352
3352
|
*/
|
|
3353
|
-
Enrichment?: string;
|
|
3353
|
+
Enrichment?: string | undefined;
|
|
3354
3354
|
/**
|
|
3355
3355
|
* <p>The parameters required to set up enrichment on your pipe.</p>
|
|
3356
3356
|
* @public
|
|
3357
3357
|
*/
|
|
3358
|
-
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
3358
|
+
EnrichmentParameters?: PipeEnrichmentParameters | undefined;
|
|
3359
3359
|
/**
|
|
3360
3360
|
* <p>The ARN of the target resource.</p>
|
|
3361
3361
|
* @public
|
|
3362
3362
|
*/
|
|
3363
|
-
Target?: string;
|
|
3363
|
+
Target?: string | undefined;
|
|
3364
3364
|
/**
|
|
3365
3365
|
* <p>The parameters required to set up a target for your pipe.</p>
|
|
3366
3366
|
* <p>For more information about pipe target parameters, including how to use dynamic path parameters, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html">Target parameters</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
3367
3367
|
* @public
|
|
3368
3368
|
*/
|
|
3369
|
-
TargetParameters?: PipeTargetParameters;
|
|
3369
|
+
TargetParameters?: PipeTargetParameters | undefined;
|
|
3370
3370
|
/**
|
|
3371
3371
|
* <p>The ARN of the role that allows the pipe to send data to the target.</p>
|
|
3372
3372
|
* @public
|
|
@@ -3376,7 +3376,7 @@ export interface UpdatePipeRequest {
|
|
|
3376
3376
|
* <p>The logging configuration settings for the pipe.</p>
|
|
3377
3377
|
* @public
|
|
3378
3378
|
*/
|
|
3379
|
-
LogConfiguration?: PipeLogConfigurationParameters;
|
|
3379
|
+
LogConfiguration?: PipeLogConfigurationParameters | undefined;
|
|
3380
3380
|
/**
|
|
3381
3381
|
* <p>The identifier of the KMS
|
|
3382
3382
|
* customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt pipe data. The identifier can be the key
|
|
@@ -3388,7 +3388,7 @@ export interface UpdatePipeRequest {
|
|
|
3388
3388
|
* Developer Guide</i>. </p>
|
|
3389
3389
|
* @public
|
|
3390
3390
|
*/
|
|
3391
|
-
KmsKeyIdentifier?: string;
|
|
3391
|
+
KmsKeyIdentifier?: string | undefined;
|
|
3392
3392
|
}
|
|
3393
3393
|
/**
|
|
3394
3394
|
* @public
|
|
@@ -3398,32 +3398,32 @@ export interface UpdatePipeResponse {
|
|
|
3398
3398
|
* <p>The ARN of the pipe.</p>
|
|
3399
3399
|
* @public
|
|
3400
3400
|
*/
|
|
3401
|
-
Arn?: string;
|
|
3401
|
+
Arn?: string | undefined;
|
|
3402
3402
|
/**
|
|
3403
3403
|
* <p>The name of the pipe.</p>
|
|
3404
3404
|
* @public
|
|
3405
3405
|
*/
|
|
3406
|
-
Name?: string;
|
|
3406
|
+
Name?: string | undefined;
|
|
3407
3407
|
/**
|
|
3408
3408
|
* <p>The state the pipe should be in.</p>
|
|
3409
3409
|
* @public
|
|
3410
3410
|
*/
|
|
3411
|
-
DesiredState?: RequestedPipeState;
|
|
3411
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
3412
3412
|
/**
|
|
3413
3413
|
* <p>The state the pipe is in.</p>
|
|
3414
3414
|
* @public
|
|
3415
3415
|
*/
|
|
3416
|
-
CurrentState?: PipeState;
|
|
3416
|
+
CurrentState?: PipeState | undefined;
|
|
3417
3417
|
/**
|
|
3418
3418
|
* <p>The time the pipe was created.</p>
|
|
3419
3419
|
* @public
|
|
3420
3420
|
*/
|
|
3421
|
-
CreationTime?: Date;
|
|
3421
|
+
CreationTime?: Date | undefined;
|
|
3422
3422
|
/**
|
|
3423
3423
|
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
3424
3424
|
* @public
|
|
3425
3425
|
*/
|
|
3426
|
-
LastModifiedTime?: Date;
|
|
3426
|
+
LastModifiedTime?: Date | undefined;
|
|
3427
3427
|
}
|
|
3428
3428
|
/**
|
|
3429
3429
|
* @public
|