aws-sdk-pipes 1.18.0 → 1.20.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-pipes/client.rb +600 -515
- data/lib/aws-sdk-pipes/client_api.rb +180 -120
- data/lib/aws-sdk-pipes/errors.rb +14 -14
- data/lib/aws-sdk-pipes/types.rb +957 -690
- data/lib/aws-sdk-pipes/waiters.rb +15 -0
- data/lib/aws-sdk-pipes.rb +2 -1
- data/sig/client.rbs +402 -336
- data/sig/errors.rbs +3 -3
- data/sig/types.rbs +164 -124
- metadata +5 -4
data/lib/aws-sdk-pipes/types.rb
CHANGED
@@ -14,11 +14,10 @@ module Aws::Pipes
|
|
14
14
|
# task, and whether a public IP address is to be used. This structure is
|
15
15
|
# relevant only for ECS tasks that use the `awsvpc` network mode.
|
16
16
|
#
|
17
|
-
# @!attribute [rw]
|
18
|
-
# Specifies
|
19
|
-
#
|
20
|
-
#
|
21
|
-
# @return [String]
|
17
|
+
# @!attribute [rw] subnets
|
18
|
+
# Specifies the subnets associated with the task. These subnets must
|
19
|
+
# all be in the same VPC. You can specify as many as 16 subnets.
|
20
|
+
# @return [Array<String>]
|
22
21
|
#
|
23
22
|
# @!attribute [rw] security_groups
|
24
23
|
# Specifies the security groups associated with the task. These
|
@@ -27,17 +26,18 @@ module Aws::Pipes
|
|
27
26
|
# default security group for the VPC is used.
|
28
27
|
# @return [Array<String>]
|
29
28
|
#
|
30
|
-
# @!attribute [rw]
|
31
|
-
# Specifies the
|
32
|
-
#
|
33
|
-
#
|
29
|
+
# @!attribute [rw] assign_public_ip
|
30
|
+
# Specifies whether the task's elastic network interface receives a
|
31
|
+
# public IP address. You can specify `ENABLED` only when `LaunchType`
|
32
|
+
# in `EcsParameters` is set to `FARGATE`.
|
33
|
+
# @return [String]
|
34
34
|
#
|
35
35
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/AwsVpcConfiguration AWS API Documentation
|
36
36
|
#
|
37
37
|
class AwsVpcConfiguration < Struct.new(
|
38
|
-
:
|
38
|
+
:subnets,
|
39
39
|
:security_groups,
|
40
|
-
:
|
40
|
+
:assign_public_ip)
|
41
41
|
SENSITIVE = []
|
42
42
|
include Aws::Structure
|
43
43
|
end
|
@@ -357,13 +357,6 @@ module Aws::Pipes
|
|
357
357
|
#
|
358
358
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CapacityProviderStrategyItem.html
|
359
359
|
#
|
360
|
-
# @!attribute [rw] base
|
361
|
-
# The base value designates how many tasks, at a minimum, to run on
|
362
|
-
# the specified capacity provider. Only one capacity provider in a
|
363
|
-
# capacity provider strategy can have a base defined. If no value is
|
364
|
-
# specified, the default value of 0 is used.
|
365
|
-
# @return [Integer]
|
366
|
-
#
|
367
360
|
# @!attribute [rw] capacity_provider
|
368
361
|
# The short name of the capacity provider.
|
369
362
|
# @return [String]
|
@@ -375,12 +368,19 @@ module Aws::Pipes
|
|
375
368
|
# base value, if defined, is satisfied.
|
376
369
|
# @return [Integer]
|
377
370
|
#
|
371
|
+
# @!attribute [rw] base
|
372
|
+
# The base value designates how many tasks, at a minimum, to run on
|
373
|
+
# the specified capacity provider. Only one capacity provider in a
|
374
|
+
# capacity provider strategy can have a base defined. If no value is
|
375
|
+
# specified, the default value of 0 is used.
|
376
|
+
# @return [Integer]
|
377
|
+
#
|
378
378
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/CapacityProviderStrategyItem AWS API Documentation
|
379
379
|
#
|
380
380
|
class CapacityProviderStrategyItem < Struct.new(
|
381
|
-
:base,
|
382
381
|
:capacity_provider,
|
383
|
-
:weight
|
382
|
+
:weight,
|
383
|
+
:base)
|
384
384
|
SENSITIVE = [:capacity_provider]
|
385
385
|
include Aws::Structure
|
386
386
|
end
|
@@ -440,6 +440,10 @@ module Aws::Pipes
|
|
440
440
|
include Aws::Structure
|
441
441
|
end
|
442
442
|
|
443
|
+
# @!attribute [rw] name
|
444
|
+
# The name of the pipe.
|
445
|
+
# @return [String]
|
446
|
+
#
|
443
447
|
# @!attribute [rw] description
|
444
448
|
# A description of the pipe.
|
445
449
|
# @return [String]
|
@@ -448,26 +452,6 @@ module Aws::Pipes
|
|
448
452
|
# The state the pipe should be in.
|
449
453
|
# @return [String]
|
450
454
|
#
|
451
|
-
# @!attribute [rw] enrichment
|
452
|
-
# The ARN of the enrichment resource.
|
453
|
-
# @return [String]
|
454
|
-
#
|
455
|
-
# @!attribute [rw] enrichment_parameters
|
456
|
-
# The parameters required to set up enrichment on your pipe.
|
457
|
-
# @return [Types::PipeEnrichmentParameters]
|
458
|
-
#
|
459
|
-
# @!attribute [rw] log_configuration
|
460
|
-
# The logging configuration settings for the pipe.
|
461
|
-
# @return [Types::PipeLogConfigurationParameters]
|
462
|
-
#
|
463
|
-
# @!attribute [rw] name
|
464
|
-
# The name of the pipe.
|
465
|
-
# @return [String]
|
466
|
-
#
|
467
|
-
# @!attribute [rw] role_arn
|
468
|
-
# The ARN of the role that allows the pipe to send data to the target.
|
469
|
-
# @return [String]
|
470
|
-
#
|
471
455
|
# @!attribute [rw] source
|
472
456
|
# The ARN of the source resource.
|
473
457
|
# @return [String]
|
@@ -476,9 +460,13 @@ module Aws::Pipes
|
|
476
460
|
# The parameters required to set up a source for your pipe.
|
477
461
|
# @return [Types::PipeSourceParameters]
|
478
462
|
#
|
479
|
-
# @!attribute [rw]
|
480
|
-
# The
|
481
|
-
# @return [
|
463
|
+
# @!attribute [rw] enrichment
|
464
|
+
# The ARN of the enrichment resource.
|
465
|
+
# @return [String]
|
466
|
+
#
|
467
|
+
# @!attribute [rw] enrichment_parameters
|
468
|
+
# The parameters required to set up enrichment on your pipe.
|
469
|
+
# @return [Types::PipeEnrichmentParameters]
|
482
470
|
#
|
483
471
|
# @!attribute [rw] target
|
484
472
|
# The ARN of the target resource.
|
@@ -496,21 +484,33 @@ module Aws::Pipes
|
|
496
484
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html
|
497
485
|
# @return [Types::PipeTargetParameters]
|
498
486
|
#
|
487
|
+
# @!attribute [rw] role_arn
|
488
|
+
# The ARN of the role that allows the pipe to send data to the target.
|
489
|
+
# @return [String]
|
490
|
+
#
|
491
|
+
# @!attribute [rw] tags
|
492
|
+
# The list of key-value pairs to associate with the pipe.
|
493
|
+
# @return [Hash<String,String>]
|
494
|
+
#
|
495
|
+
# @!attribute [rw] log_configuration
|
496
|
+
# The logging configuration settings for the pipe.
|
497
|
+
# @return [Types::PipeLogConfigurationParameters]
|
498
|
+
#
|
499
499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/CreatePipeRequest AWS API Documentation
|
500
500
|
#
|
501
501
|
class CreatePipeRequest < Struct.new(
|
502
|
+
:name,
|
502
503
|
:description,
|
503
504
|
:desired_state,
|
505
|
+
:source,
|
506
|
+
:source_parameters,
|
504
507
|
:enrichment,
|
505
508
|
:enrichment_parameters,
|
506
|
-
:
|
507
|
-
:
|
509
|
+
:target,
|
510
|
+
:target_parameters,
|
508
511
|
:role_arn,
|
509
|
-
:source,
|
510
|
-
:source_parameters,
|
511
512
|
:tags,
|
512
|
-
:
|
513
|
-
:target_parameters)
|
513
|
+
:log_configuration)
|
514
514
|
SENSITIVE = [:description]
|
515
515
|
include Aws::Structure
|
516
516
|
end
|
@@ -519,18 +519,22 @@ module Aws::Pipes
|
|
519
519
|
# The ARN of the pipe.
|
520
520
|
# @return [String]
|
521
521
|
#
|
522
|
-
# @!attribute [rw]
|
523
|
-
# The
|
524
|
-
# @return [Time]
|
525
|
-
#
|
526
|
-
# @!attribute [rw] current_state
|
527
|
-
# The state the pipe is in.
|
522
|
+
# @!attribute [rw] name
|
523
|
+
# The name of the pipe.
|
528
524
|
# @return [String]
|
529
525
|
#
|
530
526
|
# @!attribute [rw] desired_state
|
531
527
|
# The state the pipe should be in.
|
532
528
|
# @return [String]
|
533
529
|
#
|
530
|
+
# @!attribute [rw] current_state
|
531
|
+
# The state the pipe is in.
|
532
|
+
# @return [String]
|
533
|
+
#
|
534
|
+
# @!attribute [rw] creation_time
|
535
|
+
# The time the pipe was created.
|
536
|
+
# @return [Time]
|
537
|
+
#
|
534
538
|
# @!attribute [rw] last_modified_time
|
535
539
|
# When the pipe was last updated, in [ISO-8601 format][1]
|
536
540
|
# (YYYY-MM-DDThh:mm:ss.sTZD).
|
@@ -540,19 +544,15 @@ module Aws::Pipes
|
|
540
544
|
# [1]: https://www.w3.org/TR/NOTE-datetime
|
541
545
|
# @return [Time]
|
542
546
|
#
|
543
|
-
# @!attribute [rw] name
|
544
|
-
# The name of the pipe.
|
545
|
-
# @return [String]
|
546
|
-
#
|
547
547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/CreatePipeResponse AWS API Documentation
|
548
548
|
#
|
549
549
|
class CreatePipeResponse < Struct.new(
|
550
550
|
:arn,
|
551
|
-
:
|
552
|
-
:current_state,
|
551
|
+
:name,
|
553
552
|
:desired_state,
|
554
|
-
:
|
555
|
-
:
|
553
|
+
:current_state,
|
554
|
+
:creation_time,
|
555
|
+
:last_modified_time)
|
556
556
|
SENSITIVE = []
|
557
557
|
include Aws::Structure
|
558
558
|
end
|
@@ -591,18 +591,22 @@ module Aws::Pipes
|
|
591
591
|
# The ARN of the pipe.
|
592
592
|
# @return [String]
|
593
593
|
#
|
594
|
-
# @!attribute [rw]
|
595
|
-
# The
|
596
|
-
# @return [Time]
|
597
|
-
#
|
598
|
-
# @!attribute [rw] current_state
|
599
|
-
# The state the pipe is in.
|
594
|
+
# @!attribute [rw] name
|
595
|
+
# The name of the pipe.
|
600
596
|
# @return [String]
|
601
597
|
#
|
602
598
|
# @!attribute [rw] desired_state
|
603
599
|
# The state the pipe should be in.
|
604
600
|
# @return [String]
|
605
601
|
#
|
602
|
+
# @!attribute [rw] current_state
|
603
|
+
# The state the pipe is in.
|
604
|
+
# @return [String]
|
605
|
+
#
|
606
|
+
# @!attribute [rw] creation_time
|
607
|
+
# The time the pipe was created.
|
608
|
+
# @return [Time]
|
609
|
+
#
|
606
610
|
# @!attribute [rw] last_modified_time
|
607
611
|
# When the pipe was last updated, in [ISO-8601 format][1]
|
608
612
|
# (YYYY-MM-DDThh:mm:ss.sTZD).
|
@@ -612,19 +616,15 @@ module Aws::Pipes
|
|
612
616
|
# [1]: https://www.w3.org/TR/NOTE-datetime
|
613
617
|
# @return [Time]
|
614
618
|
#
|
615
|
-
# @!attribute [rw] name
|
616
|
-
# The name of the pipe.
|
617
|
-
# @return [String]
|
618
|
-
#
|
619
619
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/DeletePipeResponse AWS API Documentation
|
620
620
|
#
|
621
621
|
class DeletePipeResponse < Struct.new(
|
622
622
|
:arn,
|
623
|
-
:
|
624
|
-
:current_state,
|
623
|
+
:name,
|
625
624
|
:desired_state,
|
626
|
-
:
|
627
|
-
:
|
625
|
+
:current_state,
|
626
|
+
:creation_time,
|
627
|
+
:last_modified_time)
|
628
628
|
SENSITIVE = []
|
629
629
|
include Aws::Structure
|
630
630
|
end
|
@@ -645,12 +645,8 @@ module Aws::Pipes
|
|
645
645
|
# The ARN of the pipe.
|
646
646
|
# @return [String]
|
647
647
|
#
|
648
|
-
# @!attribute [rw]
|
649
|
-
# The
|
650
|
-
# @return [Time]
|
651
|
-
#
|
652
|
-
# @!attribute [rw] current_state
|
653
|
-
# The state the pipe is in.
|
648
|
+
# @!attribute [rw] name
|
649
|
+
# The name of the pipe.
|
654
650
|
# @return [String]
|
655
651
|
#
|
656
652
|
# @!attribute [rw] description
|
@@ -661,33 +657,12 @@ module Aws::Pipes
|
|
661
657
|
# The state the pipe should be in.
|
662
658
|
# @return [String]
|
663
659
|
#
|
664
|
-
# @!attribute [rw]
|
665
|
-
# The
|
666
|
-
# @return [String]
|
667
|
-
#
|
668
|
-
# @!attribute [rw] enrichment_parameters
|
669
|
-
# The parameters required to set up enrichment on your pipe.
|
670
|
-
# @return [Types::PipeEnrichmentParameters]
|
671
|
-
#
|
672
|
-
# @!attribute [rw] last_modified_time
|
673
|
-
# When the pipe was last updated, in [ISO-8601 format][1]
|
674
|
-
# (YYYY-MM-DDThh:mm:ss.sTZD).
|
675
|
-
#
|
676
|
-
#
|
677
|
-
#
|
678
|
-
# [1]: https://www.w3.org/TR/NOTE-datetime
|
679
|
-
# @return [Time]
|
680
|
-
#
|
681
|
-
# @!attribute [rw] log_configuration
|
682
|
-
# The logging configuration settings for the pipe.
|
683
|
-
# @return [Types::PipeLogConfiguration]
|
684
|
-
#
|
685
|
-
# @!attribute [rw] name
|
686
|
-
# The name of the pipe.
|
660
|
+
# @!attribute [rw] current_state
|
661
|
+
# The state the pipe is in.
|
687
662
|
# @return [String]
|
688
663
|
#
|
689
|
-
# @!attribute [rw]
|
690
|
-
# The
|
664
|
+
# @!attribute [rw] state_reason
|
665
|
+
# The reason the pipe is in its current state.
|
691
666
|
# @return [String]
|
692
667
|
#
|
693
668
|
# @!attribute [rw] source
|
@@ -698,13 +673,13 @@ module Aws::Pipes
|
|
698
673
|
# The parameters required to set up a source for your pipe.
|
699
674
|
# @return [Types::PipeSourceParameters]
|
700
675
|
#
|
701
|
-
# @!attribute [rw]
|
702
|
-
# The
|
676
|
+
# @!attribute [rw] enrichment
|
677
|
+
# The ARN of the enrichment resource.
|
703
678
|
# @return [String]
|
704
679
|
#
|
705
|
-
# @!attribute [rw]
|
706
|
-
# The
|
707
|
-
# @return [
|
680
|
+
# @!attribute [rw] enrichment_parameters
|
681
|
+
# The parameters required to set up enrichment on your pipe.
|
682
|
+
# @return [Types::PipeEnrichmentParameters]
|
708
683
|
#
|
709
684
|
# @!attribute [rw] target
|
710
685
|
# The ARN of the target resource.
|
@@ -722,30 +697,89 @@ module Aws::Pipes
|
|
722
697
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html
|
723
698
|
# @return [Types::PipeTargetParameters]
|
724
699
|
#
|
700
|
+
# @!attribute [rw] role_arn
|
701
|
+
# The ARN of the role that allows the pipe to send data to the target.
|
702
|
+
# @return [String]
|
703
|
+
#
|
704
|
+
# @!attribute [rw] tags
|
705
|
+
# The list of key-value pairs to associate with the pipe.
|
706
|
+
# @return [Hash<String,String>]
|
707
|
+
#
|
708
|
+
# @!attribute [rw] creation_time
|
709
|
+
# The time the pipe was created.
|
710
|
+
# @return [Time]
|
711
|
+
#
|
712
|
+
# @!attribute [rw] last_modified_time
|
713
|
+
# When the pipe was last updated, in [ISO-8601 format][1]
|
714
|
+
# (YYYY-MM-DDThh:mm:ss.sTZD).
|
715
|
+
#
|
716
|
+
#
|
717
|
+
#
|
718
|
+
# [1]: https://www.w3.org/TR/NOTE-datetime
|
719
|
+
# @return [Time]
|
720
|
+
#
|
721
|
+
# @!attribute [rw] log_configuration
|
722
|
+
# The logging configuration settings for the pipe.
|
723
|
+
# @return [Types::PipeLogConfiguration]
|
724
|
+
#
|
725
725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/DescribePipeResponse AWS API Documentation
|
726
726
|
#
|
727
727
|
class DescribePipeResponse < Struct.new(
|
728
728
|
:arn,
|
729
|
-
:
|
730
|
-
:current_state,
|
729
|
+
:name,
|
731
730
|
:description,
|
732
731
|
:desired_state,
|
732
|
+
:current_state,
|
733
|
+
:state_reason,
|
734
|
+
:source,
|
735
|
+
:source_parameters,
|
733
736
|
:enrichment,
|
734
737
|
:enrichment_parameters,
|
735
|
-
:
|
736
|
-
:
|
737
|
-
:name,
|
738
|
+
:target,
|
739
|
+
:target_parameters,
|
738
740
|
:role_arn,
|
739
|
-
:source,
|
740
|
-
:source_parameters,
|
741
|
-
:state_reason,
|
742
741
|
:tags,
|
743
|
-
:
|
744
|
-
:
|
742
|
+
:creation_time,
|
743
|
+
:last_modified_time,
|
744
|
+
:log_configuration)
|
745
745
|
SENSITIVE = [:description]
|
746
746
|
include Aws::Structure
|
747
747
|
end
|
748
748
|
|
749
|
+
# Maps source data to a dimension in the target Timestream for
|
750
|
+
# LiveAnalytics table.
|
751
|
+
#
|
752
|
+
# For more information, see [Amazon Timestream for LiveAnalytics
|
753
|
+
# concepts][1]
|
754
|
+
#
|
755
|
+
#
|
756
|
+
#
|
757
|
+
# [1]: https://docs.aws.amazon.com/timestream/latest/developerguide/concepts.html
|
758
|
+
#
|
759
|
+
# @!attribute [rw] dimension_value
|
760
|
+
# Dynamic path to the dimension value in the source event.
|
761
|
+
# @return [String]
|
762
|
+
#
|
763
|
+
# @!attribute [rw] dimension_value_type
|
764
|
+
# The data type of the dimension for the time-series data.
|
765
|
+
# @return [String]
|
766
|
+
#
|
767
|
+
# @!attribute [rw] dimension_name
|
768
|
+
# The metadata attributes of the time series. For example, the name
|
769
|
+
# and Availability Zone of an Amazon EC2 instance or the name of the
|
770
|
+
# manufacturer of a wind turbine are dimensions.
|
771
|
+
# @return [String]
|
772
|
+
#
|
773
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/DimensionMapping AWS API Documentation
|
774
|
+
#
|
775
|
+
class DimensionMapping < Struct.new(
|
776
|
+
:dimension_value,
|
777
|
+
:dimension_value_type,
|
778
|
+
:dimension_name)
|
779
|
+
SENSITIVE = []
|
780
|
+
include Aws::Structure
|
781
|
+
end
|
782
|
+
|
749
783
|
# The overrides that are sent to a container. An empty container
|
750
784
|
# override can be passed in. An example of an empty container override
|
751
785
|
# is `\{"containerOverrides": [ ] \}`. If a non-empty container override
|
@@ -1095,12 +1129,11 @@ module Aws::Pipes
|
|
1095
1129
|
include Aws::Structure
|
1096
1130
|
end
|
1097
1131
|
|
1098
|
-
# The Amazon
|
1099
|
-
# the pipe.
|
1132
|
+
# The Amazon Data Firehose logging configuration settings for the pipe.
|
1100
1133
|
#
|
1101
1134
|
# @!attribute [rw] delivery_stream_arn
|
1102
|
-
# The Amazon Resource Name (ARN) of the
|
1103
|
-
#
|
1135
|
+
# The Amazon Resource Name (ARN) of the Firehose delivery stream to
|
1136
|
+
# which EventBridge delivers the pipe log records.
|
1104
1137
|
# @return [String]
|
1105
1138
|
#
|
1106
1139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/FirehoseLogDestination AWS API Documentation
|
@@ -1111,13 +1144,11 @@ module Aws::Pipes
|
|
1111
1144
|
include Aws::Structure
|
1112
1145
|
end
|
1113
1146
|
|
1114
|
-
# The Amazon
|
1115
|
-
# the pipe.
|
1147
|
+
# The Amazon Data Firehose logging configuration settings for the pipe.
|
1116
1148
|
#
|
1117
1149
|
# @!attribute [rw] delivery_stream_arn
|
1118
|
-
# Specifies the Amazon Resource Name (ARN) of the
|
1119
|
-
#
|
1120
|
-
# records.
|
1150
|
+
# Specifies the Amazon Resource Name (ARN) of the Firehose delivery
|
1151
|
+
# stream to which EventBridge delivers the pipe log records.
|
1121
1152
|
# @return [String]
|
1122
1153
|
#
|
1123
1154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/FirehoseLogDestinationParameters AWS API Documentation
|
@@ -1147,22 +1178,26 @@ module Aws::Pipes
|
|
1147
1178
|
include Aws::Structure
|
1148
1179
|
end
|
1149
1180
|
|
1150
|
-
# @!attribute [rw]
|
1151
|
-
#
|
1181
|
+
# @!attribute [rw] name_prefix
|
1182
|
+
# A value that will return a subset of the pipes associated with this
|
1183
|
+
# account. For example, `"NamePrefix": "ABC"` will return all
|
1184
|
+
# endpoints with "ABC" in the name.
|
1152
1185
|
# @return [String]
|
1153
1186
|
#
|
1154
1187
|
# @!attribute [rw] desired_state
|
1155
1188
|
# The state the pipe should be in.
|
1156
1189
|
# @return [String]
|
1157
1190
|
#
|
1158
|
-
# @!attribute [rw]
|
1159
|
-
# The
|
1160
|
-
# @return [
|
1191
|
+
# @!attribute [rw] current_state
|
1192
|
+
# The state the pipe is in.
|
1193
|
+
# @return [String]
|
1161
1194
|
#
|
1162
|
-
# @!attribute [rw]
|
1163
|
-
#
|
1164
|
-
#
|
1165
|
-
#
|
1195
|
+
# @!attribute [rw] source_prefix
|
1196
|
+
# The prefix matching the pipe source.
|
1197
|
+
# @return [String]
|
1198
|
+
#
|
1199
|
+
# @!attribute [rw] target_prefix
|
1200
|
+
# The prefix matching the pipe target.
|
1166
1201
|
# @return [String]
|
1167
1202
|
#
|
1168
1203
|
# @!attribute [rw] next_token
|
@@ -1174,28 +1209,28 @@ module Aws::Pipes
|
|
1174
1209
|
# return an HTTP 400 InvalidToken error.
|
1175
1210
|
# @return [String]
|
1176
1211
|
#
|
1177
|
-
# @!attribute [rw]
|
1178
|
-
# The
|
1179
|
-
# @return [
|
1180
|
-
#
|
1181
|
-
# @!attribute [rw] target_prefix
|
1182
|
-
# The prefix matching the pipe target.
|
1183
|
-
# @return [String]
|
1212
|
+
# @!attribute [rw] limit
|
1213
|
+
# The maximum number of pipes to include in the response.
|
1214
|
+
# @return [Integer]
|
1184
1215
|
#
|
1185
1216
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/ListPipesRequest AWS API Documentation
|
1186
1217
|
#
|
1187
1218
|
class ListPipesRequest < Struct.new(
|
1188
|
-
:current_state,
|
1189
|
-
:desired_state,
|
1190
|
-
:limit,
|
1191
1219
|
:name_prefix,
|
1192
|
-
:
|
1220
|
+
:desired_state,
|
1221
|
+
:current_state,
|
1193
1222
|
:source_prefix,
|
1194
|
-
:target_prefix
|
1223
|
+
:target_prefix,
|
1224
|
+
:next_token,
|
1225
|
+
:limit)
|
1195
1226
|
SENSITIVE = [:next_token]
|
1196
1227
|
include Aws::Structure
|
1197
1228
|
end
|
1198
1229
|
|
1230
|
+
# @!attribute [rw] pipes
|
1231
|
+
# The pipes returned by the call.
|
1232
|
+
# @return [Array<Types::Pipe>]
|
1233
|
+
#
|
1199
1234
|
# @!attribute [rw] next_token
|
1200
1235
|
# If `nextToken` is returned, there are more results available. The
|
1201
1236
|
# value of `nextToken` is a unique pagination token for each page.
|
@@ -1205,15 +1240,11 @@ module Aws::Pipes
|
|
1205
1240
|
# return an HTTP 400 InvalidToken error.
|
1206
1241
|
# @return [String]
|
1207
1242
|
#
|
1208
|
-
# @!attribute [rw] pipes
|
1209
|
-
# The pipes returned by the call.
|
1210
|
-
# @return [Array<Types::Pipe>]
|
1211
|
-
#
|
1212
1243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/ListPipesResponse AWS API Documentation
|
1213
1244
|
#
|
1214
1245
|
class ListPipesResponse < Struct.new(
|
1215
|
-
:
|
1216
|
-
:
|
1246
|
+
:pipes,
|
1247
|
+
:next_token)
|
1217
1248
|
SENSITIVE = [:next_token]
|
1218
1249
|
include Aws::Structure
|
1219
1250
|
end
|
@@ -1271,29 +1302,82 @@ module Aws::Pipes
|
|
1271
1302
|
#
|
1272
1303
|
# @note MSKAccessCredentials is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MSKAccessCredentials corresponding to the set member.
|
1273
1304
|
#
|
1274
|
-
# @!attribute [rw]
|
1305
|
+
# @!attribute [rw] sasl_scram_512_auth
|
1275
1306
|
# The ARN of the Secrets Manager secret.
|
1276
1307
|
# @return [String]
|
1277
1308
|
#
|
1278
|
-
# @!attribute [rw]
|
1309
|
+
# @!attribute [rw] client_certificate_tls_auth
|
1279
1310
|
# The ARN of the Secrets Manager secret.
|
1280
1311
|
# @return [String]
|
1281
1312
|
#
|
1282
1313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/MSKAccessCredentials AWS API Documentation
|
1283
1314
|
#
|
1284
1315
|
class MSKAccessCredentials < Struct.new(
|
1285
|
-
:client_certificate_tls_auth,
|
1286
1316
|
:sasl_scram_512_auth,
|
1317
|
+
:client_certificate_tls_auth,
|
1287
1318
|
:unknown)
|
1288
1319
|
SENSITIVE = []
|
1289
1320
|
include Aws::Structure
|
1290
1321
|
include Aws::Structure::Union
|
1291
1322
|
|
1292
|
-
class ClientCertificateTlsAuth < MSKAccessCredentials; end
|
1293
1323
|
class SaslScram512Auth < MSKAccessCredentials; end
|
1324
|
+
class ClientCertificateTlsAuth < MSKAccessCredentials; end
|
1294
1325
|
class Unknown < MSKAccessCredentials; end
|
1295
1326
|
end
|
1296
1327
|
|
1328
|
+
# A mapping of a source event data field to a measure in a Timestream
|
1329
|
+
# for LiveAnalytics record.
|
1330
|
+
#
|
1331
|
+
# @!attribute [rw] measure_value
|
1332
|
+
# Dynamic path to the measurement attribute in the source event.
|
1333
|
+
# @return [String]
|
1334
|
+
#
|
1335
|
+
# @!attribute [rw] measure_value_type
|
1336
|
+
# Data type of the measurement attribute in the source event.
|
1337
|
+
# @return [String]
|
1338
|
+
#
|
1339
|
+
# @!attribute [rw] multi_measure_attribute_name
|
1340
|
+
# Target measure name to be used.
|
1341
|
+
# @return [String]
|
1342
|
+
#
|
1343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/MultiMeasureAttributeMapping AWS API Documentation
|
1344
|
+
#
|
1345
|
+
class MultiMeasureAttributeMapping < Struct.new(
|
1346
|
+
:measure_value,
|
1347
|
+
:measure_value_type,
|
1348
|
+
:multi_measure_attribute_name)
|
1349
|
+
SENSITIVE = []
|
1350
|
+
include Aws::Structure
|
1351
|
+
end
|
1352
|
+
|
1353
|
+
# Maps multiple measures from the source event to the same Timestream
|
1354
|
+
# for LiveAnalytics record.
|
1355
|
+
#
|
1356
|
+
# For more information, see [Amazon Timestream for LiveAnalytics
|
1357
|
+
# concepts][1]
|
1358
|
+
#
|
1359
|
+
#
|
1360
|
+
#
|
1361
|
+
# [1]: https://docs.aws.amazon.com/timestream/latest/developerguide/concepts.html
|
1362
|
+
#
|
1363
|
+
# @!attribute [rw] multi_measure_name
|
1364
|
+
# The name of the multiple measurements per record (multi-measure).
|
1365
|
+
# @return [String]
|
1366
|
+
#
|
1367
|
+
# @!attribute [rw] multi_measure_attribute_mappings
|
1368
|
+
# Mappings that represent multiple source event fields mapped to
|
1369
|
+
# measures in the same Timestream for LiveAnalytics record.
|
1370
|
+
# @return [Array<Types::MultiMeasureAttributeMapping>]
|
1371
|
+
#
|
1372
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/MultiMeasureMapping AWS API Documentation
|
1373
|
+
#
|
1374
|
+
class MultiMeasureMapping < Struct.new(
|
1375
|
+
:multi_measure_name,
|
1376
|
+
:multi_measure_attribute_mappings)
|
1377
|
+
SENSITIVE = []
|
1378
|
+
include Aws::Structure
|
1379
|
+
end
|
1380
|
+
|
1297
1381
|
# This structure specifies the network configuration for an Amazon ECS
|
1298
1382
|
# task.
|
1299
1383
|
#
|
@@ -1329,25 +1413,29 @@ module Aws::Pipes
|
|
1329
1413
|
# event sources to targets and reduces the need for specialized
|
1330
1414
|
# knowledge and integration code.
|
1331
1415
|
#
|
1416
|
+
# @!attribute [rw] name
|
1417
|
+
# The name of the pipe.
|
1418
|
+
# @return [String]
|
1419
|
+
#
|
1332
1420
|
# @!attribute [rw] arn
|
1333
1421
|
# The ARN of the pipe.
|
1334
1422
|
# @return [String]
|
1335
1423
|
#
|
1336
|
-
# @!attribute [rw]
|
1337
|
-
# The
|
1338
|
-
# @return [
|
1424
|
+
# @!attribute [rw] desired_state
|
1425
|
+
# The state the pipe should be in.
|
1426
|
+
# @return [String]
|
1339
1427
|
#
|
1340
1428
|
# @!attribute [rw] current_state
|
1341
1429
|
# The state the pipe is in.
|
1342
1430
|
# @return [String]
|
1343
1431
|
#
|
1344
|
-
# @!attribute [rw]
|
1345
|
-
# The
|
1432
|
+
# @!attribute [rw] state_reason
|
1433
|
+
# The reason the pipe is in its current state.
|
1346
1434
|
# @return [String]
|
1347
1435
|
#
|
1348
|
-
# @!attribute [rw]
|
1349
|
-
# The
|
1350
|
-
# @return [
|
1436
|
+
# @!attribute [rw] creation_time
|
1437
|
+
# The time the pipe was created.
|
1438
|
+
# @return [Time]
|
1351
1439
|
#
|
1352
1440
|
# @!attribute [rw] last_modified_time
|
1353
1441
|
# When the pipe was last updated, in [ISO-8601 format][1]
|
@@ -1358,35 +1446,31 @@ module Aws::Pipes
|
|
1358
1446
|
# [1]: https://www.w3.org/TR/NOTE-datetime
|
1359
1447
|
# @return [Time]
|
1360
1448
|
#
|
1361
|
-
# @!attribute [rw] name
|
1362
|
-
# The name of the pipe.
|
1363
|
-
# @return [String]
|
1364
|
-
#
|
1365
1449
|
# @!attribute [rw] source
|
1366
1450
|
# The ARN of the source resource.
|
1367
1451
|
# @return [String]
|
1368
1452
|
#
|
1369
|
-
# @!attribute [rw] state_reason
|
1370
|
-
# The reason the pipe is in its current state.
|
1371
|
-
# @return [String]
|
1372
|
-
#
|
1373
1453
|
# @!attribute [rw] target
|
1374
1454
|
# The ARN of the target resource.
|
1375
1455
|
# @return [String]
|
1376
1456
|
#
|
1457
|
+
# @!attribute [rw] enrichment
|
1458
|
+
# The ARN of the enrichment resource.
|
1459
|
+
# @return [String]
|
1460
|
+
#
|
1377
1461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/Pipe AWS API Documentation
|
1378
1462
|
#
|
1379
1463
|
class Pipe < Struct.new(
|
1464
|
+
:name,
|
1380
1465
|
:arn,
|
1381
|
-
:creation_time,
|
1382
|
-
:current_state,
|
1383
1466
|
:desired_state,
|
1384
|
-
:
|
1467
|
+
:current_state,
|
1468
|
+
:state_reason,
|
1469
|
+
:creation_time,
|
1385
1470
|
:last_modified_time,
|
1386
|
-
:name,
|
1387
1471
|
:source,
|
1388
|
-
:
|
1389
|
-
:
|
1472
|
+
:target,
|
1473
|
+
:enrichment)
|
1390
1474
|
SENSITIVE = []
|
1391
1475
|
include Aws::Structure
|
1392
1476
|
end
|
@@ -1396,16 +1480,16 @@ module Aws::Pipes
|
|
1396
1480
|
# these are merged with any InvocationParameters specified on the
|
1397
1481
|
# Connection, with any values from the Connection taking precedence.
|
1398
1482
|
#
|
1399
|
-
# @!attribute [rw] header_parameters
|
1400
|
-
# The headers that need to be sent as part of request invoking the API
|
1401
|
-
# Gateway REST API or EventBridge ApiDestination.
|
1402
|
-
# @return [Hash<String,String>]
|
1403
|
-
#
|
1404
1483
|
# @!attribute [rw] path_parameter_values
|
1405
1484
|
# The path parameter values to be used to populate API Gateway REST
|
1406
1485
|
# API or EventBridge ApiDestination path wildcards ("*").
|
1407
1486
|
# @return [Array<String>]
|
1408
1487
|
#
|
1488
|
+
# @!attribute [rw] header_parameters
|
1489
|
+
# The headers that need to be sent as part of request invoking the API
|
1490
|
+
# Gateway REST API or EventBridge ApiDestination.
|
1491
|
+
# @return [Hash<String,String>]
|
1492
|
+
#
|
1409
1493
|
# @!attribute [rw] query_string_parameters
|
1410
1494
|
# The query string keys/values that need to be sent as part of request
|
1411
1495
|
# invoking the API Gateway REST API or EventBridge ApiDestination.
|
@@ -1414,8 +1498,8 @@ module Aws::Pipes
|
|
1414
1498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeEnrichmentHttpParameters AWS API Documentation
|
1415
1499
|
#
|
1416
1500
|
class PipeEnrichmentHttpParameters < Struct.new(
|
1417
|
-
:header_parameters,
|
1418
1501
|
:path_parameter_values,
|
1502
|
+
:header_parameters,
|
1419
1503
|
:query_string_parameters)
|
1420
1504
|
SENSITIVE = []
|
1421
1505
|
include Aws::Structure
|
@@ -1423,19 +1507,6 @@ module Aws::Pipes
|
|
1423
1507
|
|
1424
1508
|
# The parameters required to set up enrichment on your pipe.
|
1425
1509
|
#
|
1426
|
-
# @!attribute [rw] http_parameters
|
1427
|
-
# Contains the HTTP parameters to use when the target is a API Gateway
|
1428
|
-
# REST endpoint or EventBridge ApiDestination.
|
1429
|
-
#
|
1430
|
-
# If you specify an API Gateway REST API or EventBridge ApiDestination
|
1431
|
-
# as a target, you can use this parameter to specify headers, path
|
1432
|
-
# parameters, and query string keys/values as part of your target
|
1433
|
-
# invoking request. If you're using ApiDestinations, the
|
1434
|
-
# corresponding Connection can also have these values configured. In
|
1435
|
-
# case of any conflicting keys, values from the Connection take
|
1436
|
-
# precedence.
|
1437
|
-
# @return [Types::PipeEnrichmentHttpParameters]
|
1438
|
-
#
|
1439
1510
|
# @!attribute [rw] input_template
|
1440
1511
|
# Valid JSON text passed to the enrichment. In this case, nothing from
|
1441
1512
|
# the event itself is passed to the enrichment. For more information,
|
@@ -1449,26 +1520,48 @@ module Aws::Pipes
|
|
1449
1520
|
# [1]: http://www.rfc-editor.org/rfc/rfc7159.txt
|
1450
1521
|
# @return [String]
|
1451
1522
|
#
|
1523
|
+
# @!attribute [rw] http_parameters
|
1524
|
+
# Contains the HTTP parameters to use when the target is a API Gateway
|
1525
|
+
# REST endpoint or EventBridge ApiDestination.
|
1526
|
+
#
|
1527
|
+
# If you specify an API Gateway REST API or EventBridge ApiDestination
|
1528
|
+
# as a target, you can use this parameter to specify headers, path
|
1529
|
+
# parameters, and query string keys/values as part of your target
|
1530
|
+
# invoking request. If you're using ApiDestinations, the
|
1531
|
+
# corresponding Connection can also have these values configured. In
|
1532
|
+
# case of any conflicting keys, values from the Connection take
|
1533
|
+
# precedence.
|
1534
|
+
# @return [Types::PipeEnrichmentHttpParameters]
|
1535
|
+
#
|
1452
1536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeEnrichmentParameters AWS API Documentation
|
1453
1537
|
#
|
1454
1538
|
class PipeEnrichmentParameters < Struct.new(
|
1455
|
-
:
|
1456
|
-
:
|
1539
|
+
:input_template,
|
1540
|
+
:http_parameters)
|
1457
1541
|
SENSITIVE = [:input_template]
|
1458
1542
|
include Aws::Structure
|
1459
1543
|
end
|
1460
1544
|
|
1461
1545
|
# The logging configuration settings for the pipe.
|
1462
1546
|
#
|
1547
|
+
# @!attribute [rw] s3_log_destination
|
1548
|
+
# The Amazon S3 logging configuration settings for the pipe.
|
1549
|
+
# @return [Types::S3LogDestination]
|
1550
|
+
#
|
1551
|
+
# @!attribute [rw] firehose_log_destination
|
1552
|
+
# The Amazon Data Firehose logging configuration settings for the
|
1553
|
+
# pipe.
|
1554
|
+
# @return [Types::FirehoseLogDestination]
|
1555
|
+
#
|
1463
1556
|
# @!attribute [rw] cloudwatch_logs_log_destination
|
1464
1557
|
# The Amazon CloudWatch Logs logging configuration settings for the
|
1465
1558
|
# pipe.
|
1466
1559
|
# @return [Types::CloudwatchLogsLogDestination]
|
1467
1560
|
#
|
1468
|
-
# @!attribute [rw]
|
1469
|
-
# The
|
1470
|
-
# the pipe.
|
1471
|
-
# @return [
|
1561
|
+
# @!attribute [rw] level
|
1562
|
+
# The level of logging detail to include. This applies to all log
|
1563
|
+
# destinations for the pipe.
|
1564
|
+
# @return [String]
|
1472
1565
|
#
|
1473
1566
|
# @!attribute [rw] include_execution_data
|
1474
1567
|
# Whether the execution data (specifically, the `payload`,
|
@@ -1485,23 +1578,14 @@ module Aws::Pipes
|
|
1485
1578
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-execution-data
|
1486
1579
|
# @return [Array<String>]
|
1487
1580
|
#
|
1488
|
-
# @!attribute [rw] level
|
1489
|
-
# The level of logging detail to include. This applies to all log
|
1490
|
-
# destinations for the pipe.
|
1491
|
-
# @return [String]
|
1492
|
-
#
|
1493
|
-
# @!attribute [rw] s3_log_destination
|
1494
|
-
# The Amazon S3 logging configuration settings for the pipe.
|
1495
|
-
# @return [Types::S3LogDestination]
|
1496
|
-
#
|
1497
1581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeLogConfiguration AWS API Documentation
|
1498
1582
|
#
|
1499
1583
|
class PipeLogConfiguration < Struct.new(
|
1500
|
-
:
|
1584
|
+
:s3_log_destination,
|
1501
1585
|
:firehose_log_destination,
|
1502
|
-
:
|
1586
|
+
:cloudwatch_logs_log_destination,
|
1503
1587
|
:level,
|
1504
|
-
:
|
1588
|
+
:include_execution_data)
|
1505
1589
|
SENSITIVE = []
|
1506
1590
|
include Aws::Structure
|
1507
1591
|
end
|
@@ -1517,44 +1601,30 @@ module Aws::Pipes
|
|
1517
1601
|
# EventBridge sets that field to its system-default value during the
|
1518
1602
|
# update.
|
1519
1603
|
#
|
1520
|
-
# For example, suppose when you created the pipe you specified a
|
1521
|
-
#
|
1522
|
-
#
|
1604
|
+
# For example, suppose when you created the pipe you specified a
|
1605
|
+
# Firehose stream log destination. You then update the pipe to add an
|
1606
|
+
# Amazon S3 log destination. In addition to specifying the
|
1523
1607
|
# `S3LogDestinationParameters` for the new log destination, you must
|
1524
1608
|
# also specify the fields in the `FirehoseLogDestinationParameters`
|
1525
|
-
# object in order to retain the
|
1526
|
-
# destination.
|
1609
|
+
# object in order to retain the Firehose stream log destination.
|
1527
1610
|
#
|
1528
1611
|
# For more information on generating pipe log records, see [Log
|
1529
1612
|
# EventBridge Pipes](eventbridge/latest/userguide/eb-pipes-logs.html) in
|
1530
1613
|
# the *Amazon EventBridge User Guide*.
|
1531
1614
|
#
|
1532
|
-
# @!attribute [rw]
|
1533
|
-
# The Amazon
|
1534
|
-
#
|
1535
|
-
# @return [Types::CloudwatchLogsLogDestinationParameters]
|
1615
|
+
# @!attribute [rw] s3_log_destination
|
1616
|
+
# The Amazon S3 logging configuration settings for the pipe.
|
1617
|
+
# @return [Types::S3LogDestinationParameters]
|
1536
1618
|
#
|
1537
1619
|
# @!attribute [rw] firehose_log_destination
|
1538
|
-
# The Amazon
|
1539
|
-
#
|
1620
|
+
# The Amazon Data Firehose logging configuration settings for the
|
1621
|
+
# pipe.
|
1540
1622
|
# @return [Types::FirehoseLogDestinationParameters]
|
1541
1623
|
#
|
1542
|
-
# @!attribute [rw]
|
1543
|
-
#
|
1544
|
-
# `payload` and `awsRequest` fields) in the log messages for this
|
1624
|
+
# @!attribute [rw] cloudwatch_logs_log_destination
|
1625
|
+
# The Amazon CloudWatch Logs logging configuration settings for the
|
1545
1626
|
# pipe.
|
1546
|
-
#
|
1547
|
-
# This applies to all log destinations for the pipe.
|
1548
|
-
#
|
1549
|
-
# For more information, see [Including execution data in logs][1] in
|
1550
|
-
# the *Amazon EventBridge User Guide*.
|
1551
|
-
#
|
1552
|
-
# The default is `OFF`.
|
1553
|
-
#
|
1554
|
-
#
|
1555
|
-
#
|
1556
|
-
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-execution-data
|
1557
|
-
# @return [Array<String>]
|
1627
|
+
# @return [Types::CloudwatchLogsLogDestinationParameters]
|
1558
1628
|
#
|
1559
1629
|
# @!attribute [rw] level
|
1560
1630
|
# The level of logging detail to include. This applies to all log
|
@@ -1568,47 +1638,60 @@ module Aws::Pipes
|
|
1568
1638
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-level
|
1569
1639
|
# @return [String]
|
1570
1640
|
#
|
1571
|
-
# @!attribute [rw]
|
1572
|
-
#
|
1573
|
-
#
|
1641
|
+
# @!attribute [rw] include_execution_data
|
1642
|
+
# Specify `ALL` to include the execution data (specifically, the
|
1643
|
+
# `payload`, `awsRequest`, and `awsResponse` fields) in the log
|
1644
|
+
# messages for this pipe.
|
1645
|
+
#
|
1646
|
+
# This applies to all log destinations for the pipe.
|
1647
|
+
#
|
1648
|
+
# For more information, see [Including execution data in logs][1] in
|
1649
|
+
# the *Amazon EventBridge User Guide*.
|
1650
|
+
#
|
1651
|
+
# By default, execution data is not included.
|
1652
|
+
#
|
1653
|
+
#
|
1654
|
+
#
|
1655
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-execution-data
|
1656
|
+
# @return [Array<String>]
|
1574
1657
|
#
|
1575
1658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeLogConfigurationParameters AWS API Documentation
|
1576
1659
|
#
|
1577
1660
|
class PipeLogConfigurationParameters < Struct.new(
|
1578
|
-
:
|
1661
|
+
:s3_log_destination,
|
1579
1662
|
:firehose_log_destination,
|
1580
|
-
:
|
1663
|
+
:cloudwatch_logs_log_destination,
|
1581
1664
|
:level,
|
1582
|
-
:
|
1665
|
+
:include_execution_data)
|
1583
1666
|
SENSITIVE = []
|
1584
1667
|
include Aws::Structure
|
1585
1668
|
end
|
1586
1669
|
|
1587
1670
|
# The parameters for using an Active MQ broker as a source.
|
1588
1671
|
#
|
1589
|
-
# @!attribute [rw] batch_size
|
1590
|
-
# The maximum number of records to include in each batch.
|
1591
|
-
# @return [Integer]
|
1592
|
-
#
|
1593
1672
|
# @!attribute [rw] credentials
|
1594
1673
|
# The credentials needed to access the resource.
|
1595
1674
|
# @return [Types::MQBrokerAccessCredentials]
|
1596
1675
|
#
|
1597
|
-
# @!attribute [rw] maximum_batching_window_in_seconds
|
1598
|
-
# The maximum length of a time to wait for events.
|
1599
|
-
# @return [Integer]
|
1600
|
-
#
|
1601
1676
|
# @!attribute [rw] queue_name
|
1602
1677
|
# The name of the destination queue to consume.
|
1603
1678
|
# @return [String]
|
1604
1679
|
#
|
1680
|
+
# @!attribute [rw] batch_size
|
1681
|
+
# The maximum number of records to include in each batch.
|
1682
|
+
# @return [Integer]
|
1683
|
+
#
|
1684
|
+
# @!attribute [rw] maximum_batching_window_in_seconds
|
1685
|
+
# The maximum length of a time to wait for events.
|
1686
|
+
# @return [Integer]
|
1687
|
+
#
|
1605
1688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeSourceActiveMQBrokerParameters AWS API Documentation
|
1606
1689
|
#
|
1607
1690
|
class PipeSourceActiveMQBrokerParameters < Struct.new(
|
1608
|
-
:batch_size,
|
1609
1691
|
:credentials,
|
1610
|
-
:
|
1611
|
-
:
|
1692
|
+
:queue_name,
|
1693
|
+
:batch_size,
|
1694
|
+
:maximum_batching_window_in_seconds)
|
1612
1695
|
SENSITIVE = [:queue_name]
|
1613
1696
|
include Aws::Structure
|
1614
1697
|
end
|
@@ -1623,6 +1706,13 @@ module Aws::Pipes
|
|
1623
1706
|
# Define the target queue to send dead-letter queue events to.
|
1624
1707
|
# @return [Types::DeadLetterConfig]
|
1625
1708
|
#
|
1709
|
+
# @!attribute [rw] on_partial_batch_item_failure
|
1710
|
+
# (Streams only) Define how to handle item process failures.
|
1711
|
+
# `AUTOMATIC_BISECT` halves each batch and retry each half until all
|
1712
|
+
# the records are processed or there is one failed message left in the
|
1713
|
+
# batch.
|
1714
|
+
# @return [String]
|
1715
|
+
#
|
1626
1716
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
1627
1717
|
# The maximum length of a time to wait for events.
|
1628
1718
|
# @return [Integer]
|
@@ -1642,13 +1732,6 @@ module Aws::Pipes
|
|
1642
1732
|
# event source.
|
1643
1733
|
# @return [Integer]
|
1644
1734
|
#
|
1645
|
-
# @!attribute [rw] on_partial_batch_item_failure
|
1646
|
-
# (Streams only) Define how to handle item process failures.
|
1647
|
-
# `AUTOMATIC_BISECT` halves each batch and retry each half until all
|
1648
|
-
# the records are processed or there is one failed message left in the
|
1649
|
-
# batch.
|
1650
|
-
# @return [String]
|
1651
|
-
#
|
1652
1735
|
# @!attribute [rw] parallelization_factor
|
1653
1736
|
# (Streams only) The number of batches to process concurrently from
|
1654
1737
|
# each shard. The default value is 1.
|
@@ -1663,10 +1746,10 @@ module Aws::Pipes
|
|
1663
1746
|
class PipeSourceDynamoDBStreamParameters < Struct.new(
|
1664
1747
|
:batch_size,
|
1665
1748
|
:dead_letter_config,
|
1749
|
+
:on_partial_batch_item_failure,
|
1666
1750
|
:maximum_batching_window_in_seconds,
|
1667
1751
|
:maximum_record_age_in_seconds,
|
1668
1752
|
:maximum_retry_attempts,
|
1669
|
-
:on_partial_batch_item_failure,
|
1670
1753
|
:parallelization_factor,
|
1671
1754
|
:starting_position)
|
1672
1755
|
SENSITIVE = []
|
@@ -1683,6 +1766,13 @@ module Aws::Pipes
|
|
1683
1766
|
# Define the target queue to send dead-letter queue events to.
|
1684
1767
|
# @return [Types::DeadLetterConfig]
|
1685
1768
|
#
|
1769
|
+
# @!attribute [rw] on_partial_batch_item_failure
|
1770
|
+
# (Streams only) Define how to handle item process failures.
|
1771
|
+
# `AUTOMATIC_BISECT` halves each batch and retry each half until all
|
1772
|
+
# the records are processed or there is one failed message left in the
|
1773
|
+
# batch.
|
1774
|
+
# @return [String]
|
1775
|
+
#
|
1686
1776
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
1687
1777
|
# The maximum length of a time to wait for events.
|
1688
1778
|
# @return [Integer]
|
@@ -1702,13 +1792,6 @@ module Aws::Pipes
|
|
1702
1792
|
# event source.
|
1703
1793
|
# @return [Integer]
|
1704
1794
|
#
|
1705
|
-
# @!attribute [rw] on_partial_batch_item_failure
|
1706
|
-
# (Streams only) Define how to handle item process failures.
|
1707
|
-
# `AUTOMATIC_BISECT` halves each batch and retry each half until all
|
1708
|
-
# the records are processed or there is one failed message left in the
|
1709
|
-
# batch.
|
1710
|
-
# @return [String]
|
1711
|
-
#
|
1712
1795
|
# @!attribute [rw] parallelization_factor
|
1713
1796
|
# (Streams only) The number of batches to process concurrently from
|
1714
1797
|
# each shard. The default value is 1.
|
@@ -1728,10 +1811,10 @@ module Aws::Pipes
|
|
1728
1811
|
class PipeSourceKinesisStreamParameters < Struct.new(
|
1729
1812
|
:batch_size,
|
1730
1813
|
:dead_letter_config,
|
1814
|
+
:on_partial_batch_item_failure,
|
1731
1815
|
:maximum_batching_window_in_seconds,
|
1732
1816
|
:maximum_record_age_in_seconds,
|
1733
1817
|
:maximum_retry_attempts,
|
1734
|
-
:on_partial_batch_item_failure,
|
1735
1818
|
:parallelization_factor,
|
1736
1819
|
:starting_position,
|
1737
1820
|
:starting_position_timestamp)
|
@@ -1741,10 +1824,22 @@ module Aws::Pipes
|
|
1741
1824
|
|
1742
1825
|
# The parameters for using an MSK stream as a source.
|
1743
1826
|
#
|
1827
|
+
# @!attribute [rw] topic_name
|
1828
|
+
# The name of the topic that the pipe will read from.
|
1829
|
+
# @return [String]
|
1830
|
+
#
|
1831
|
+
# @!attribute [rw] starting_position
|
1832
|
+
# (Streams only) The position in a stream from which to start reading.
|
1833
|
+
# @return [String]
|
1834
|
+
#
|
1744
1835
|
# @!attribute [rw] batch_size
|
1745
1836
|
# The maximum number of records to include in each batch.
|
1746
1837
|
# @return [Integer]
|
1747
1838
|
#
|
1839
|
+
# @!attribute [rw] maximum_batching_window_in_seconds
|
1840
|
+
# The maximum length of a time to wait for events.
|
1841
|
+
# @return [Integer]
|
1842
|
+
#
|
1748
1843
|
# @!attribute [rw] consumer_group_id
|
1749
1844
|
# The name of the destination queue to consume.
|
1750
1845
|
# @return [String]
|
@@ -1753,41 +1848,21 @@ module Aws::Pipes
|
|
1753
1848
|
# The credentials needed to access the resource.
|
1754
1849
|
# @return [Types::MSKAccessCredentials]
|
1755
1850
|
#
|
1756
|
-
# @!attribute [rw] maximum_batching_window_in_seconds
|
1757
|
-
# The maximum length of a time to wait for events.
|
1758
|
-
# @return [Integer]
|
1759
|
-
#
|
1760
|
-
# @!attribute [rw] starting_position
|
1761
|
-
# (Streams only) The position in a stream from which to start reading.
|
1762
|
-
# @return [String]
|
1763
|
-
#
|
1764
|
-
# @!attribute [rw] topic_name
|
1765
|
-
# The name of the topic that the pipe will read from.
|
1766
|
-
# @return [String]
|
1767
|
-
#
|
1768
1851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeSourceManagedStreamingKafkaParameters AWS API Documentation
|
1769
1852
|
#
|
1770
1853
|
class PipeSourceManagedStreamingKafkaParameters < Struct.new(
|
1854
|
+
:topic_name,
|
1855
|
+
:starting_position,
|
1771
1856
|
:batch_size,
|
1772
|
-
:consumer_group_id,
|
1773
|
-
:credentials,
|
1774
1857
|
:maximum_batching_window_in_seconds,
|
1775
|
-
:
|
1776
|
-
:
|
1777
|
-
SENSITIVE = [:
|
1858
|
+
:consumer_group_id,
|
1859
|
+
:credentials)
|
1860
|
+
SENSITIVE = [:topic_name, :consumer_group_id]
|
1778
1861
|
include Aws::Structure
|
1779
1862
|
end
|
1780
1863
|
|
1781
1864
|
# The parameters required to set up a source for your pipe.
|
1782
1865
|
#
|
1783
|
-
# @!attribute [rw] active_mq_broker_parameters
|
1784
|
-
# The parameters for using an Active MQ broker as a source.
|
1785
|
-
# @return [Types::PipeSourceActiveMQBrokerParameters]
|
1786
|
-
#
|
1787
|
-
# @!attribute [rw] dynamo_db_stream_parameters
|
1788
|
-
# The parameters for using a DynamoDB stream as a source.
|
1789
|
-
# @return [Types::PipeSourceDynamoDBStreamParameters]
|
1790
|
-
#
|
1791
1866
|
# @!attribute [rw] filter_criteria
|
1792
1867
|
# The collection of event patterns used to filter events.
|
1793
1868
|
#
|
@@ -1806,52 +1881,66 @@ module Aws::Pipes
|
|
1806
1881
|
# The parameters for using a Kinesis stream as a source.
|
1807
1882
|
# @return [Types::PipeSourceKinesisStreamParameters]
|
1808
1883
|
#
|
1809
|
-
# @!attribute [rw]
|
1810
|
-
# The parameters for using
|
1811
|
-
# @return [Types::
|
1884
|
+
# @!attribute [rw] dynamo_db_stream_parameters
|
1885
|
+
# The parameters for using a DynamoDB stream as a source.
|
1886
|
+
# @return [Types::PipeSourceDynamoDBStreamParameters]
|
1887
|
+
#
|
1888
|
+
# @!attribute [rw] sqs_queue_parameters
|
1889
|
+
# The parameters for using a Amazon SQS stream as a source.
|
1890
|
+
# @return [Types::PipeSourceSqsQueueParameters]
|
1891
|
+
#
|
1892
|
+
# @!attribute [rw] active_mq_broker_parameters
|
1893
|
+
# The parameters for using an Active MQ broker as a source.
|
1894
|
+
# @return [Types::PipeSourceActiveMQBrokerParameters]
|
1812
1895
|
#
|
1813
1896
|
# @!attribute [rw] rabbit_mq_broker_parameters
|
1814
1897
|
# The parameters for using a Rabbit MQ broker as a source.
|
1815
1898
|
# @return [Types::PipeSourceRabbitMQBrokerParameters]
|
1816
1899
|
#
|
1900
|
+
# @!attribute [rw] managed_streaming_kafka_parameters
|
1901
|
+
# The parameters for using an MSK stream as a source.
|
1902
|
+
# @return [Types::PipeSourceManagedStreamingKafkaParameters]
|
1903
|
+
#
|
1817
1904
|
# @!attribute [rw] self_managed_kafka_parameters
|
1818
1905
|
# The parameters for using a self-managed Apache Kafka stream as a
|
1819
1906
|
# source.
|
1820
|
-
# @return [Types::PipeSourceSelfManagedKafkaParameters]
|
1821
1907
|
#
|
1822
|
-
#
|
1823
|
-
#
|
1824
|
-
#
|
1908
|
+
# A *self managed* cluster refers to any Apache Kafka cluster not
|
1909
|
+
# hosted by Amazon Web Services. This includes both clusters you
|
1910
|
+
# manage yourself, as well as those hosted by a third-party provider,
|
1911
|
+
# such as [Confluent Cloud][1], [CloudKarafka][2], or [Redpanda][3].
|
1912
|
+
# For more information, see [Apache Kafka streams as a source][4] in
|
1913
|
+
# the *Amazon EventBridge User Guide*.
|
1914
|
+
#
|
1915
|
+
#
|
1916
|
+
#
|
1917
|
+
# [1]: https://www.confluent.io/
|
1918
|
+
# [2]: https://www.cloudkarafka.com/
|
1919
|
+
# [3]: https://redpanda.com/
|
1920
|
+
# [4]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html
|
1921
|
+
# @return [Types::PipeSourceSelfManagedKafkaParameters]
|
1825
1922
|
#
|
1826
1923
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeSourceParameters AWS API Documentation
|
1827
1924
|
#
|
1828
1925
|
class PipeSourceParameters < Struct.new(
|
1829
|
-
:active_mq_broker_parameters,
|
1830
|
-
:dynamo_db_stream_parameters,
|
1831
1926
|
:filter_criteria,
|
1832
1927
|
:kinesis_stream_parameters,
|
1833
|
-
:
|
1928
|
+
:dynamo_db_stream_parameters,
|
1929
|
+
:sqs_queue_parameters,
|
1930
|
+
:active_mq_broker_parameters,
|
1834
1931
|
:rabbit_mq_broker_parameters,
|
1835
|
-
:
|
1836
|
-
:
|
1932
|
+
:managed_streaming_kafka_parameters,
|
1933
|
+
:self_managed_kafka_parameters)
|
1837
1934
|
SENSITIVE = []
|
1838
1935
|
include Aws::Structure
|
1839
1936
|
end
|
1840
1937
|
|
1841
1938
|
# The parameters for using a Rabbit MQ broker as a source.
|
1842
1939
|
#
|
1843
|
-
# @!attribute [rw] batch_size
|
1844
|
-
# The maximum number of records to include in each batch.
|
1845
|
-
# @return [Integer]
|
1846
|
-
#
|
1847
1940
|
# @!attribute [rw] credentials
|
1848
1941
|
# The credentials needed to access the resource.
|
1849
1942
|
# @return [Types::MQBrokerAccessCredentials]
|
1850
1943
|
#
|
1851
|
-
# @!attribute [rw] maximum_batching_window_in_seconds
|
1852
|
-
# The maximum length of a time to wait for events.
|
1853
|
-
# @return [Integer]
|
1854
|
-
#
|
1855
1944
|
# @!attribute [rw] queue_name
|
1856
1945
|
# The name of the destination queue to consume.
|
1857
1946
|
# @return [String]
|
@@ -1860,14 +1949,22 @@ module Aws::Pipes
|
|
1860
1949
|
# The name of the virtual host associated with the source broker.
|
1861
1950
|
# @return [String]
|
1862
1951
|
#
|
1952
|
+
# @!attribute [rw] batch_size
|
1953
|
+
# The maximum number of records to include in each batch.
|
1954
|
+
# @return [Integer]
|
1955
|
+
#
|
1956
|
+
# @!attribute [rw] maximum_batching_window_in_seconds
|
1957
|
+
# The maximum length of a time to wait for events.
|
1958
|
+
# @return [Integer]
|
1959
|
+
#
|
1863
1960
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeSourceRabbitMQBrokerParameters AWS API Documentation
|
1864
1961
|
#
|
1865
1962
|
class PipeSourceRabbitMQBrokerParameters < Struct.new(
|
1866
|
-
:batch_size,
|
1867
1963
|
:credentials,
|
1868
|
-
:maximum_batching_window_in_seconds,
|
1869
1964
|
:queue_name,
|
1870
|
-
:virtual_host
|
1965
|
+
:virtual_host,
|
1966
|
+
:batch_size,
|
1967
|
+
:maximum_batching_window_in_seconds)
|
1871
1968
|
SENSITIVE = [:queue_name, :virtual_host]
|
1872
1969
|
include Aws::Structure
|
1873
1970
|
end
|
@@ -1875,6 +1972,28 @@ module Aws::Pipes
|
|
1875
1972
|
# The parameters for using a self-managed Apache Kafka stream as a
|
1876
1973
|
# source.
|
1877
1974
|
#
|
1975
|
+
# A *self managed* cluster refers to any Apache Kafka cluster not hosted
|
1976
|
+
# by Amazon Web Services. This includes both clusters you manage
|
1977
|
+
# yourself, as well as those hosted by a third-party provider, such as
|
1978
|
+
# [Confluent Cloud][1], [CloudKarafka][2], or [Redpanda][3]. For more
|
1979
|
+
# information, see [Apache Kafka streams as a source][4] in the *Amazon
|
1980
|
+
# EventBridge User Guide*.
|
1981
|
+
#
|
1982
|
+
#
|
1983
|
+
#
|
1984
|
+
# [1]: https://www.confluent.io/
|
1985
|
+
# [2]: https://www.cloudkarafka.com/
|
1986
|
+
# [3]: https://redpanda.com/
|
1987
|
+
# [4]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html
|
1988
|
+
#
|
1989
|
+
# @!attribute [rw] topic_name
|
1990
|
+
# The name of the topic that the pipe will read from.
|
1991
|
+
# @return [String]
|
1992
|
+
#
|
1993
|
+
# @!attribute [rw] starting_position
|
1994
|
+
# (Streams only) The position in a stream from which to start reading.
|
1995
|
+
# @return [String]
|
1996
|
+
#
|
1878
1997
|
# @!attribute [rw] additional_bootstrap_servers
|
1879
1998
|
# An array of server URLs.
|
1880
1999
|
# @return [Array<String>]
|
@@ -1883,6 +2002,10 @@ module Aws::Pipes
|
|
1883
2002
|
# The maximum number of records to include in each batch.
|
1884
2003
|
# @return [Integer]
|
1885
2004
|
#
|
2005
|
+
# @!attribute [rw] maximum_batching_window_in_seconds
|
2006
|
+
# The maximum length of a time to wait for events.
|
2007
|
+
# @return [Integer]
|
2008
|
+
#
|
1886
2009
|
# @!attribute [rw] consumer_group_id
|
1887
2010
|
# The name of the destination queue to consume.
|
1888
2011
|
# @return [String]
|
@@ -1891,22 +2014,10 @@ module Aws::Pipes
|
|
1891
2014
|
# The credentials needed to access the resource.
|
1892
2015
|
# @return [Types::SelfManagedKafkaAccessConfigurationCredentials]
|
1893
2016
|
#
|
1894
|
-
# @!attribute [rw] maximum_batching_window_in_seconds
|
1895
|
-
# The maximum length of a time to wait for events.
|
1896
|
-
# @return [Integer]
|
1897
|
-
#
|
1898
2017
|
# @!attribute [rw] server_root_ca_certificate
|
1899
2018
|
# The ARN of the Secrets Manager secret used for certification.
|
1900
2019
|
# @return [String]
|
1901
2020
|
#
|
1902
|
-
# @!attribute [rw] starting_position
|
1903
|
-
# (Streams only) The position in a stream from which to start reading.
|
1904
|
-
# @return [String]
|
1905
|
-
#
|
1906
|
-
# @!attribute [rw] topic_name
|
1907
|
-
# The name of the topic that the pipe will read from.
|
1908
|
-
# @return [String]
|
1909
|
-
#
|
1910
2021
|
# @!attribute [rw] vpc
|
1911
2022
|
# This structure specifies the VPC subnets and security groups for the
|
1912
2023
|
# stream, and whether a public IP address is to be used.
|
@@ -1915,16 +2026,16 @@ module Aws::Pipes
|
|
1915
2026
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeSourceSelfManagedKafkaParameters AWS API Documentation
|
1916
2027
|
#
|
1917
2028
|
class PipeSourceSelfManagedKafkaParameters < Struct.new(
|
2029
|
+
:topic_name,
|
2030
|
+
:starting_position,
|
1918
2031
|
:additional_bootstrap_servers,
|
1919
2032
|
:batch_size,
|
2033
|
+
:maximum_batching_window_in_seconds,
|
1920
2034
|
:consumer_group_id,
|
1921
2035
|
:credentials,
|
1922
|
-
:maximum_batching_window_in_seconds,
|
1923
2036
|
:server_root_ca_certificate,
|
1924
|
-
:starting_position,
|
1925
|
-
:topic_name,
|
1926
2037
|
:vpc)
|
1927
|
-
SENSITIVE = [:
|
2038
|
+
SENSITIVE = [:topic_name, :consumer_group_id]
|
1928
2039
|
include Aws::Structure
|
1929
2040
|
end
|
1930
2041
|
|
@@ -1949,6 +2060,19 @@ module Aws::Pipes
|
|
1949
2060
|
|
1950
2061
|
# The parameters for using an Batch job as a target.
|
1951
2062
|
#
|
2063
|
+
# @!attribute [rw] job_definition
|
2064
|
+
# The job definition used by this job. This value can be one of
|
2065
|
+
# `name`, `name:revision`, or the Amazon Resource Name (ARN) for the
|
2066
|
+
# job definition. If name is specified without a revision then the
|
2067
|
+
# latest active revision is used.
|
2068
|
+
# @return [String]
|
2069
|
+
#
|
2070
|
+
# @!attribute [rw] job_name
|
2071
|
+
# The name of the job. It can be up to 128 letters long. The first
|
2072
|
+
# character must be alphanumeric, can contain uppercase and lowercase
|
2073
|
+
# letters, numbers, hyphens (-), and underscores (\_).
|
2074
|
+
# @return [String]
|
2075
|
+
#
|
1952
2076
|
# @!attribute [rw] array_properties
|
1953
2077
|
# The array properties for the submitted job, such as the size of the
|
1954
2078
|
# array. The array size can be between 2 and 10,000. If you specify
|
@@ -1956,6 +2080,12 @@ module Aws::Pipes
|
|
1956
2080
|
# is used only if the target is an Batch job.
|
1957
2081
|
# @return [Types::BatchArrayProperties]
|
1958
2082
|
#
|
2083
|
+
# @!attribute [rw] retry_strategy
|
2084
|
+
# The retry strategy to use for failed jobs. When a retry strategy is
|
2085
|
+
# specified here, it overrides the retry strategy defined in the job
|
2086
|
+
# definition.
|
2087
|
+
# @return [Types::BatchRetryStrategy]
|
2088
|
+
#
|
1959
2089
|
# @!attribute [rw] container_overrides
|
1960
2090
|
# The overrides that are sent to a container.
|
1961
2091
|
# @return [Types::BatchContainerOverrides]
|
@@ -1970,19 +2100,6 @@ module Aws::Pipes
|
|
1970
2100
|
# child of each dependency to complete before it can begin.
|
1971
2101
|
# @return [Array<Types::BatchJobDependency>]
|
1972
2102
|
#
|
1973
|
-
# @!attribute [rw] job_definition
|
1974
|
-
# The job definition used by this job. This value can be one of
|
1975
|
-
# `name`, `name:revision`, or the Amazon Resource Name (ARN) for the
|
1976
|
-
# job definition. If name is specified without a revision then the
|
1977
|
-
# latest active revision is used.
|
1978
|
-
# @return [String]
|
1979
|
-
#
|
1980
|
-
# @!attribute [rw] job_name
|
1981
|
-
# The name of the job. It can be up to 128 letters long. The first
|
1982
|
-
# character must be alphanumeric, can contain uppercase and lowercase
|
1983
|
-
# letters, numbers, hyphens (-), and underscores (\_).
|
1984
|
-
# @return [String]
|
1985
|
-
#
|
1986
2103
|
# @!attribute [rw] parameters
|
1987
2104
|
# Additional parameters passed to the job that replace parameter
|
1988
2105
|
# substitution placeholders that are set in the job definition.
|
@@ -1991,22 +2108,16 @@ module Aws::Pipes
|
|
1991
2108
|
# job definition.
|
1992
2109
|
# @return [Hash<String,String>]
|
1993
2110
|
#
|
1994
|
-
# @!attribute [rw] retry_strategy
|
1995
|
-
# The retry strategy to use for failed jobs. When a retry strategy is
|
1996
|
-
# specified here, it overrides the retry strategy defined in the job
|
1997
|
-
# definition.
|
1998
|
-
# @return [Types::BatchRetryStrategy]
|
1999
|
-
#
|
2000
2111
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeTargetBatchJobParameters AWS API Documentation
|
2001
2112
|
#
|
2002
2113
|
class PipeTargetBatchJobParameters < Struct.new(
|
2114
|
+
:job_definition,
|
2115
|
+
:job_name,
|
2003
2116
|
:array_properties,
|
2117
|
+
:retry_strategy,
|
2004
2118
|
:container_overrides,
|
2005
2119
|
:depends_on,
|
2006
|
-
:
|
2007
|
-
:job_name,
|
2008
|
-
:parameters,
|
2009
|
-
:retry_strategy)
|
2120
|
+
:parameters)
|
2010
2121
|
SENSITIVE = []
|
2011
2122
|
include Aws::Structure
|
2012
2123
|
end
|
@@ -2033,36 +2144,16 @@ module Aws::Pipes
|
|
2033
2144
|
|
2034
2145
|
# The parameters for using an Amazon ECS task as a target.
|
2035
2146
|
#
|
2036
|
-
# @!attribute [rw]
|
2037
|
-
# The
|
2038
|
-
#
|
2039
|
-
# If a `capacityProviderStrategy` is specified, the `launchType`
|
2040
|
-
# parameter must be omitted. If no `capacityProviderStrategy` or
|
2041
|
-
# launchType is specified, the `defaultCapacityProviderStrategy` for
|
2042
|
-
# the cluster is used.
|
2043
|
-
# @return [Array<Types::CapacityProviderStrategyItem>]
|
2044
|
-
#
|
2045
|
-
# @!attribute [rw] enable_ecs_managed_tags
|
2046
|
-
# Specifies whether to enable Amazon ECS managed tags for the task.
|
2047
|
-
# For more information, see [Tagging Your Amazon ECS Resources][1] in
|
2048
|
-
# the Amazon Elastic Container Service Developer Guide.
|
2049
|
-
#
|
2050
|
-
#
|
2051
|
-
#
|
2052
|
-
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html
|
2053
|
-
# @return [Boolean]
|
2054
|
-
#
|
2055
|
-
# @!attribute [rw] enable_execute_command
|
2056
|
-
# Whether or not to enable the execute command functionality for the
|
2057
|
-
# containers in this task. If true, this enables execute command
|
2058
|
-
# functionality on all containers in the task.
|
2059
|
-
# @return [Boolean]
|
2060
|
-
#
|
2061
|
-
# @!attribute [rw] group
|
2062
|
-
# Specifies an Amazon ECS task group for the task. The maximum length
|
2063
|
-
# is 255 characters.
|
2147
|
+
# @!attribute [rw] task_definition_arn
|
2148
|
+
# The ARN of the task definition to use if the event target is an
|
2149
|
+
# Amazon ECS task.
|
2064
2150
|
# @return [String]
|
2065
2151
|
#
|
2152
|
+
# @!attribute [rw] task_count
|
2153
|
+
# The number of tasks to create based on `TaskDefinition`. The default
|
2154
|
+
# is 1.
|
2155
|
+
# @return [Integer]
|
2156
|
+
#
|
2066
2157
|
# @!attribute [rw] launch_type
|
2067
2158
|
# Specifies the launch type on which your task is running. The launch
|
2068
2159
|
# type that you specify here must match one of the launch type
|
@@ -2087,21 +2178,6 @@ module Aws::Pipes
|
|
2087
2178
|
# not use the `awsvpc` network mode, the task fails.
|
2088
2179
|
# @return [Types::NetworkConfiguration]
|
2089
2180
|
#
|
2090
|
-
# @!attribute [rw] overrides
|
2091
|
-
# The overrides that are associated with a task.
|
2092
|
-
# @return [Types::EcsTaskOverride]
|
2093
|
-
#
|
2094
|
-
# @!attribute [rw] placement_constraints
|
2095
|
-
# An array of placement constraint objects to use for the task. You
|
2096
|
-
# can specify up to 10 constraints per task (including constraints in
|
2097
|
-
# the task definition and those specified at runtime).
|
2098
|
-
# @return [Array<Types::PlacementConstraint>]
|
2099
|
-
#
|
2100
|
-
# @!attribute [rw] placement_strategy
|
2101
|
-
# The placement strategy objects to use for the task. You can specify
|
2102
|
-
# a maximum of five strategy rules per task.
|
2103
|
-
# @return [Array<Types::PlacementStrategy>]
|
2104
|
-
#
|
2105
2181
|
# @!attribute [rw] platform_version
|
2106
2182
|
# Specifies the platform version for the task. Specify only the
|
2107
2183
|
# numeric portion of the platform version, such as `1.1.0`.
|
@@ -2116,6 +2192,47 @@ module Aws::Pipes
|
|
2116
2192
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
|
2117
2193
|
# @return [String]
|
2118
2194
|
#
|
2195
|
+
# @!attribute [rw] group
|
2196
|
+
# Specifies an Amazon ECS task group for the task. The maximum length
|
2197
|
+
# is 255 characters.
|
2198
|
+
# @return [String]
|
2199
|
+
#
|
2200
|
+
# @!attribute [rw] capacity_provider_strategy
|
2201
|
+
# The capacity provider strategy to use for the task.
|
2202
|
+
#
|
2203
|
+
# If a `capacityProviderStrategy` is specified, the `launchType`
|
2204
|
+
# parameter must be omitted. If no `capacityProviderStrategy` or
|
2205
|
+
# launchType is specified, the `defaultCapacityProviderStrategy` for
|
2206
|
+
# the cluster is used.
|
2207
|
+
# @return [Array<Types::CapacityProviderStrategyItem>]
|
2208
|
+
#
|
2209
|
+
# @!attribute [rw] enable_ecs_managed_tags
|
2210
|
+
# Specifies whether to enable Amazon ECS managed tags for the task.
|
2211
|
+
# For more information, see [Tagging Your Amazon ECS Resources][1] in
|
2212
|
+
# the Amazon Elastic Container Service Developer Guide.
|
2213
|
+
#
|
2214
|
+
#
|
2215
|
+
#
|
2216
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html
|
2217
|
+
# @return [Boolean]
|
2218
|
+
#
|
2219
|
+
# @!attribute [rw] enable_execute_command
|
2220
|
+
# Whether or not to enable the execute command functionality for the
|
2221
|
+
# containers in this task. If true, this enables execute command
|
2222
|
+
# functionality on all containers in the task.
|
2223
|
+
# @return [Boolean]
|
2224
|
+
#
|
2225
|
+
# @!attribute [rw] placement_constraints
|
2226
|
+
# An array of placement constraint objects to use for the task. You
|
2227
|
+
# can specify up to 10 constraints per task (including constraints in
|
2228
|
+
# the task definition and those specified at runtime).
|
2229
|
+
# @return [Array<Types::PlacementConstraint>]
|
2230
|
+
#
|
2231
|
+
# @!attribute [rw] placement_strategy
|
2232
|
+
# The placement strategy objects to use for the task. You can specify
|
2233
|
+
# a maximum of five strategy rules per task.
|
2234
|
+
# @return [Array<Types::PlacementStrategy>]
|
2235
|
+
#
|
2119
2236
|
# @!attribute [rw] propagate_tags
|
2120
2237
|
# Specifies whether to propagate the tags from the task definition to
|
2121
2238
|
# the task. If no value is specified, the tags are not propagated.
|
@@ -2128,6 +2245,10 @@ module Aws::Pipes
|
|
2128
2245
|
# The reference ID to use for the task.
|
2129
2246
|
# @return [String]
|
2130
2247
|
#
|
2248
|
+
# @!attribute [rw] overrides
|
2249
|
+
# The overrides that are associated with a task.
|
2250
|
+
# @return [Types::EcsTaskOverride]
|
2251
|
+
#
|
2131
2252
|
# @!attribute [rw] tags
|
2132
2253
|
# The metadata that you apply to the task to help you categorize and
|
2133
2254
|
# organize them. Each tag consists of a key and an optional value,
|
@@ -2139,49 +2260,43 @@ module Aws::Pipes
|
|
2139
2260
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html#ECS-RunTask-request-tags
|
2140
2261
|
# @return [Array<Types::Tag>]
|
2141
2262
|
#
|
2142
|
-
# @!attribute [rw] task_count
|
2143
|
-
# The number of tasks to create based on `TaskDefinition`. The default
|
2144
|
-
# is 1.
|
2145
|
-
# @return [Integer]
|
2146
|
-
#
|
2147
|
-
# @!attribute [rw] task_definition_arn
|
2148
|
-
# The ARN of the task definition to use if the event target is an
|
2149
|
-
# Amazon ECS task.
|
2150
|
-
# @return [String]
|
2151
|
-
#
|
2152
2263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeTargetEcsTaskParameters AWS API Documentation
|
2153
2264
|
#
|
2154
2265
|
class PipeTargetEcsTaskParameters < Struct.new(
|
2266
|
+
:task_definition_arn,
|
2267
|
+
:task_count,
|
2268
|
+
:launch_type,
|
2269
|
+
:network_configuration,
|
2270
|
+
:platform_version,
|
2271
|
+
:group,
|
2155
2272
|
:capacity_provider_strategy,
|
2156
2273
|
:enable_ecs_managed_tags,
|
2157
2274
|
:enable_execute_command,
|
2158
|
-
:group,
|
2159
|
-
:launch_type,
|
2160
|
-
:network_configuration,
|
2161
|
-
:overrides,
|
2162
2275
|
:placement_constraints,
|
2163
2276
|
:placement_strategy,
|
2164
|
-
:platform_version,
|
2165
2277
|
:propagate_tags,
|
2166
2278
|
:reference_id,
|
2167
|
-
:
|
2168
|
-
:
|
2169
|
-
:task_definition_arn)
|
2279
|
+
:overrides,
|
2280
|
+
:tags)
|
2170
2281
|
SENSITIVE = [:reference_id]
|
2171
2282
|
include Aws::Structure
|
2172
2283
|
end
|
2173
2284
|
|
2174
2285
|
# The parameters for using an EventBridge event bus as a target.
|
2175
2286
|
#
|
2287
|
+
# @!attribute [rw] endpoint_id
|
2288
|
+
# The URL subdomain of the endpoint. For example, if the URL for
|
2289
|
+
# Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then
|
2290
|
+
# the EndpointId is `abcde.veo`.
|
2291
|
+
# @return [String]
|
2292
|
+
#
|
2176
2293
|
# @!attribute [rw] detail_type
|
2177
2294
|
# A free-form string, with a maximum of 128 characters, used to decide
|
2178
2295
|
# what fields to expect in the event detail.
|
2179
2296
|
# @return [String]
|
2180
2297
|
#
|
2181
|
-
# @!attribute [rw]
|
2182
|
-
# The
|
2183
|
-
# Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then
|
2184
|
-
# the EndpointId is `abcde.veo`.
|
2298
|
+
# @!attribute [rw] source
|
2299
|
+
# The source of the event.
|
2185
2300
|
# @return [String]
|
2186
2301
|
#
|
2187
2302
|
# @!attribute [rw] resources
|
@@ -2190,10 +2305,6 @@ module Aws::Pipes
|
|
2190
2305
|
# zero, may be present.
|
2191
2306
|
# @return [Array<String>]
|
2192
2307
|
#
|
2193
|
-
# @!attribute [rw] source
|
2194
|
-
# The source of the event.
|
2195
|
-
# @return [String]
|
2196
|
-
#
|
2197
2308
|
# @!attribute [rw] time
|
2198
2309
|
# The time stamp of the event, per [RFC3339][1]. If no time stamp is
|
2199
2310
|
# provided, the time stamp of the [PutEvents][2] call is used.
|
@@ -2207,28 +2318,28 @@ module Aws::Pipes
|
|
2207
2318
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeTargetEventBridgeEventBusParameters AWS API Documentation
|
2208
2319
|
#
|
2209
2320
|
class PipeTargetEventBridgeEventBusParameters < Struct.new(
|
2210
|
-
:detail_type,
|
2211
2321
|
:endpoint_id,
|
2212
|
-
:
|
2322
|
+
:detail_type,
|
2213
2323
|
:source,
|
2324
|
+
:resources,
|
2214
2325
|
:time)
|
2215
|
-
SENSITIVE = [:
|
2326
|
+
SENSITIVE = [:endpoint_id, :detail_type, :source]
|
2216
2327
|
include Aws::Structure
|
2217
2328
|
end
|
2218
|
-
|
2219
|
-
# These are custom parameter to be used when the target is an API
|
2220
|
-
# Gateway REST APIs or EventBridge ApiDestinations.
|
2221
|
-
#
|
2222
|
-
# @!attribute [rw] header_parameters
|
2223
|
-
# The headers that need to be sent as part of request invoking the API
|
2224
|
-
# Gateway REST API or EventBridge ApiDestination.
|
2225
|
-
# @return [Hash<String,String>]
|
2329
|
+
|
2330
|
+
# These are custom parameter to be used when the target is an API
|
2331
|
+
# Gateway REST APIs or EventBridge ApiDestinations.
|
2226
2332
|
#
|
2227
2333
|
# @!attribute [rw] path_parameter_values
|
2228
2334
|
# The path parameter values to be used to populate API Gateway REST
|
2229
2335
|
# API or EventBridge ApiDestination path wildcards ("*").
|
2230
2336
|
# @return [Array<String>]
|
2231
2337
|
#
|
2338
|
+
# @!attribute [rw] header_parameters
|
2339
|
+
# The headers that need to be sent as part of request invoking the API
|
2340
|
+
# Gateway REST API or EventBridge ApiDestination.
|
2341
|
+
# @return [Hash<String,String>]
|
2342
|
+
#
|
2232
2343
|
# @!attribute [rw] query_string_parameters
|
2233
2344
|
# The query string keys/values that need to be sent as part of request
|
2234
2345
|
# invoking the API Gateway REST API or EventBridge ApiDestination.
|
@@ -2237,8 +2348,8 @@ module Aws::Pipes
|
|
2237
2348
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeTargetHttpParameters AWS API Documentation
|
2238
2349
|
#
|
2239
2350
|
class PipeTargetHttpParameters < Struct.new(
|
2240
|
-
:header_parameters,
|
2241
2351
|
:path_parameter_values,
|
2352
|
+
:header_parameters,
|
2242
2353
|
:query_string_parameters)
|
2243
2354
|
SENSITIVE = []
|
2244
2355
|
include Aws::Structure
|
@@ -2307,27 +2418,6 @@ module Aws::Pipes
|
|
2307
2418
|
#
|
2308
2419
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html
|
2309
2420
|
#
|
2310
|
-
# @!attribute [rw] batch_job_parameters
|
2311
|
-
# The parameters for using an Batch job as a target.
|
2312
|
-
# @return [Types::PipeTargetBatchJobParameters]
|
2313
|
-
#
|
2314
|
-
# @!attribute [rw] cloud_watch_logs_parameters
|
2315
|
-
# The parameters for using an CloudWatch Logs log stream as a target.
|
2316
|
-
# @return [Types::PipeTargetCloudWatchLogsParameters]
|
2317
|
-
#
|
2318
|
-
# @!attribute [rw] ecs_task_parameters
|
2319
|
-
# The parameters for using an Amazon ECS task as a target.
|
2320
|
-
# @return [Types::PipeTargetEcsTaskParameters]
|
2321
|
-
#
|
2322
|
-
# @!attribute [rw] event_bridge_event_bus_parameters
|
2323
|
-
# The parameters for using an EventBridge event bus as a target.
|
2324
|
-
# @return [Types::PipeTargetEventBridgeEventBusParameters]
|
2325
|
-
#
|
2326
|
-
# @!attribute [rw] http_parameters
|
2327
|
-
# These are custom parameter to be used when the target is an API
|
2328
|
-
# Gateway REST APIs or EventBridge ApiDestinations.
|
2329
|
-
# @return [Types::PipeTargetHttpParameters]
|
2330
|
-
#
|
2331
2421
|
# @!attribute [rw] input_template
|
2332
2422
|
# Valid JSON text passed to the target. In this case, nothing from the
|
2333
2423
|
# event itself is passed to the target. For more information, see [The
|
@@ -2340,13 +2430,34 @@ module Aws::Pipes
|
|
2340
2430
|
# [1]: http://www.rfc-editor.org/rfc/rfc7159.txt
|
2341
2431
|
# @return [String]
|
2342
2432
|
#
|
2433
|
+
# @!attribute [rw] lambda_function_parameters
|
2434
|
+
# The parameters for using a Lambda function as a target.
|
2435
|
+
# @return [Types::PipeTargetLambdaFunctionParameters]
|
2436
|
+
#
|
2437
|
+
# @!attribute [rw] step_function_state_machine_parameters
|
2438
|
+
# The parameters for using a Step Functions state machine as a target.
|
2439
|
+
# @return [Types::PipeTargetStateMachineParameters]
|
2440
|
+
#
|
2343
2441
|
# @!attribute [rw] kinesis_stream_parameters
|
2344
2442
|
# The parameters for using a Kinesis stream as a target.
|
2345
2443
|
# @return [Types::PipeTargetKinesisStreamParameters]
|
2346
2444
|
#
|
2347
|
-
# @!attribute [rw]
|
2348
|
-
# The parameters for using
|
2349
|
-
# @return [Types::
|
2445
|
+
# @!attribute [rw] ecs_task_parameters
|
2446
|
+
# The parameters for using an Amazon ECS task as a target.
|
2447
|
+
# @return [Types::PipeTargetEcsTaskParameters]
|
2448
|
+
#
|
2449
|
+
# @!attribute [rw] batch_job_parameters
|
2450
|
+
# The parameters for using an Batch job as a target.
|
2451
|
+
# @return [Types::PipeTargetBatchJobParameters]
|
2452
|
+
#
|
2453
|
+
# @!attribute [rw] sqs_queue_parameters
|
2454
|
+
# The parameters for using a Amazon SQS stream as a target.
|
2455
|
+
# @return [Types::PipeTargetSqsQueueParameters]
|
2456
|
+
#
|
2457
|
+
# @!attribute [rw] http_parameters
|
2458
|
+
# These are custom parameter to be used when the target is an API
|
2459
|
+
# Gateway REST APIs or EventBridge ApiDestinations.
|
2460
|
+
# @return [Types::PipeTargetHttpParameters]
|
2350
2461
|
#
|
2351
2462
|
# @!attribute [rw] redshift_data_parameters
|
2352
2463
|
# These are custom parameters to be used when the target is a Amazon
|
@@ -2358,29 +2469,35 @@ module Aws::Pipes
|
|
2358
2469
|
# The parameters for using a SageMaker pipeline as a target.
|
2359
2470
|
# @return [Types::PipeTargetSageMakerPipelineParameters]
|
2360
2471
|
#
|
2361
|
-
# @!attribute [rw]
|
2362
|
-
# The parameters for using
|
2363
|
-
# @return [Types::
|
2472
|
+
# @!attribute [rw] event_bridge_event_bus_parameters
|
2473
|
+
# The parameters for using an EventBridge event bus as a target.
|
2474
|
+
# @return [Types::PipeTargetEventBridgeEventBusParameters]
|
2364
2475
|
#
|
2365
|
-
# @!attribute [rw]
|
2366
|
-
# The parameters for using
|
2367
|
-
# @return [Types::
|
2476
|
+
# @!attribute [rw] cloud_watch_logs_parameters
|
2477
|
+
# The parameters for using an CloudWatch Logs log stream as a target.
|
2478
|
+
# @return [Types::PipeTargetCloudWatchLogsParameters]
|
2479
|
+
#
|
2480
|
+
# @!attribute [rw] timestream_parameters
|
2481
|
+
# The parameters for using a Timestream for LiveAnalytics table as a
|
2482
|
+
# target.
|
2483
|
+
# @return [Types::PipeTargetTimestreamParameters]
|
2368
2484
|
#
|
2369
2485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeTargetParameters AWS API Documentation
|
2370
2486
|
#
|
2371
2487
|
class PipeTargetParameters < Struct.new(
|
2372
|
-
:batch_job_parameters,
|
2373
|
-
:cloud_watch_logs_parameters,
|
2374
|
-
:ecs_task_parameters,
|
2375
|
-
:event_bridge_event_bus_parameters,
|
2376
|
-
:http_parameters,
|
2377
2488
|
:input_template,
|
2378
|
-
:kinesis_stream_parameters,
|
2379
2489
|
:lambda_function_parameters,
|
2490
|
+
:step_function_state_machine_parameters,
|
2491
|
+
:kinesis_stream_parameters,
|
2492
|
+
:ecs_task_parameters,
|
2493
|
+
:batch_job_parameters,
|
2494
|
+
:sqs_queue_parameters,
|
2495
|
+
:http_parameters,
|
2380
2496
|
:redshift_data_parameters,
|
2381
2497
|
:sage_maker_pipeline_parameters,
|
2382
|
-
:
|
2383
|
-
:
|
2498
|
+
:event_bridge_event_bus_parameters,
|
2499
|
+
:cloud_watch_logs_parameters,
|
2500
|
+
:timestream_parameters)
|
2384
2501
|
SENSITIVE = [:input_template]
|
2385
2502
|
include Aws::Structure
|
2386
2503
|
end
|
@@ -2389,6 +2506,11 @@ module Aws::Pipes
|
|
2389
2506
|
# Redshift cluster to invoke the Amazon Redshift Data API
|
2390
2507
|
# BatchExecuteStatement.
|
2391
2508
|
#
|
2509
|
+
# @!attribute [rw] secret_manager_arn
|
2510
|
+
# The name or ARN of the secret that enables access to the database.
|
2511
|
+
# Required when authenticating using Secrets Manager.
|
2512
|
+
# @return [String]
|
2513
|
+
#
|
2392
2514
|
# @!attribute [rw] database
|
2393
2515
|
# The name of the database. Required when authenticating using
|
2394
2516
|
# temporary credentials.
|
@@ -2399,15 +2521,6 @@ module Aws::Pipes
|
|
2399
2521
|
# credentials.
|
2400
2522
|
# @return [String]
|
2401
2523
|
#
|
2402
|
-
# @!attribute [rw] secret_manager_arn
|
2403
|
-
# The name or ARN of the secret that enables access to the database.
|
2404
|
-
# Required when authenticating using Secrets Manager.
|
2405
|
-
# @return [String]
|
2406
|
-
#
|
2407
|
-
# @!attribute [rw] sqls
|
2408
|
-
# The SQL statement text to run.
|
2409
|
-
# @return [Array<String>]
|
2410
|
-
#
|
2411
2524
|
# @!attribute [rw] statement_name
|
2412
2525
|
# The name of the SQL statement. You can name the SQL statement when
|
2413
2526
|
# you create it to identify the query.
|
@@ -2418,15 +2531,19 @@ module Aws::Pipes
|
|
2418
2531
|
# statement runs.
|
2419
2532
|
# @return [Boolean]
|
2420
2533
|
#
|
2534
|
+
# @!attribute [rw] sqls
|
2535
|
+
# The SQL statement text to run.
|
2536
|
+
# @return [Array<String>]
|
2537
|
+
#
|
2421
2538
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeTargetRedshiftDataParameters AWS API Documentation
|
2422
2539
|
#
|
2423
2540
|
class PipeTargetRedshiftDataParameters < Struct.new(
|
2541
|
+
:secret_manager_arn,
|
2424
2542
|
:database,
|
2425
2543
|
:db_user,
|
2426
|
-
:secret_manager_arn,
|
2427
|
-
:sqls,
|
2428
2544
|
:statement_name,
|
2429
|
-
:with_event
|
2545
|
+
:with_event,
|
2546
|
+
:sqls)
|
2430
2547
|
SENSITIVE = [:database, :db_user, :statement_name]
|
2431
2548
|
include Aws::Structure
|
2432
2549
|
end
|
@@ -2448,22 +2565,22 @@ module Aws::Pipes
|
|
2448
2565
|
|
2449
2566
|
# The parameters for using a Amazon SQS stream as a target.
|
2450
2567
|
#
|
2568
|
+
# @!attribute [rw] message_group_id
|
2569
|
+
# The FIFO message group ID to use as the target.
|
2570
|
+
# @return [String]
|
2571
|
+
#
|
2451
2572
|
# @!attribute [rw] message_deduplication_id
|
2452
2573
|
# This parameter applies only to FIFO (first-in-first-out) queues.
|
2453
2574
|
#
|
2454
2575
|
# The token used for deduplication of sent messages.
|
2455
2576
|
# @return [String]
|
2456
2577
|
#
|
2457
|
-
# @!attribute [rw] message_group_id
|
2458
|
-
# The FIFO message group ID to use as the target.
|
2459
|
-
# @return [String]
|
2460
|
-
#
|
2461
2578
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeTargetSqsQueueParameters AWS API Documentation
|
2462
2579
|
#
|
2463
2580
|
class PipeTargetSqsQueueParameters < Struct.new(
|
2464
|
-
:
|
2465
|
-
:
|
2466
|
-
SENSITIVE = [:
|
2581
|
+
:message_group_id,
|
2582
|
+
:message_deduplication_id)
|
2583
|
+
SENSITIVE = [:message_group_id, :message_deduplication_id]
|
2467
2584
|
include Aws::Structure
|
2468
2585
|
end
|
2469
2586
|
|
@@ -2503,6 +2620,94 @@ module Aws::Pipes
|
|
2503
2620
|
include Aws::Structure
|
2504
2621
|
end
|
2505
2622
|
|
2623
|
+
# The parameters for using a Timestream for LiveAnalytics table as a
|
2624
|
+
# target.
|
2625
|
+
#
|
2626
|
+
# @!attribute [rw] time_value
|
2627
|
+
# Dynamic path to the source data field that represents the time value
|
2628
|
+
# for your data.
|
2629
|
+
# @return [String]
|
2630
|
+
#
|
2631
|
+
# @!attribute [rw] epoch_time_unit
|
2632
|
+
# The granularity of the time units used. Default is `MILLISECONDS`.
|
2633
|
+
#
|
2634
|
+
# Required if `TimeFieldType` is specified as `EPOCH`.
|
2635
|
+
# @return [String]
|
2636
|
+
#
|
2637
|
+
# @!attribute [rw] time_field_type
|
2638
|
+
# The type of time value used.
|
2639
|
+
#
|
2640
|
+
# The default is `EPOCH`.
|
2641
|
+
# @return [String]
|
2642
|
+
#
|
2643
|
+
# @!attribute [rw] timestamp_format
|
2644
|
+
# How to format the timestamps. For example,
|
2645
|
+
# `YYYY-MM-DDThh:mm:ss.sssTZD`.
|
2646
|
+
#
|
2647
|
+
# Required if `TimeFieldType` is specified as `TIMESTAMP_FORMAT`.
|
2648
|
+
# @return [String]
|
2649
|
+
#
|
2650
|
+
# @!attribute [rw] version_value
|
2651
|
+
# 64 bit version value or source data field that represents the
|
2652
|
+
# version value for your data.
|
2653
|
+
#
|
2654
|
+
# Write requests with a higher version number will update the existing
|
2655
|
+
# measure values of the record and version. In cases where the measure
|
2656
|
+
# value is the same, the version will still be updated.
|
2657
|
+
#
|
2658
|
+
# Default value is 1.
|
2659
|
+
#
|
2660
|
+
# Timestream for LiveAnalytics does not support updating partial
|
2661
|
+
# measure values in a record.
|
2662
|
+
#
|
2663
|
+
# Write requests for duplicate data with a higher version number will
|
2664
|
+
# update the existing measure value and version. In cases where the
|
2665
|
+
# measure value is the same, `Version` will still be updated. Default
|
2666
|
+
# value is `1`.
|
2667
|
+
#
|
2668
|
+
# <note markdown="1"> `Version` must be `1` or greater, or you will receive a
|
2669
|
+
# `ValidationException` error.
|
2670
|
+
#
|
2671
|
+
# </note>
|
2672
|
+
# @return [String]
|
2673
|
+
#
|
2674
|
+
# @!attribute [rw] dimension_mappings
|
2675
|
+
# Map source data to dimensions in the target Timestream for
|
2676
|
+
# LiveAnalytics table.
|
2677
|
+
#
|
2678
|
+
# For more information, see [Amazon Timestream for LiveAnalytics
|
2679
|
+
# concepts][1]
|
2680
|
+
#
|
2681
|
+
#
|
2682
|
+
#
|
2683
|
+
# [1]: https://docs.aws.amazon.com/timestream/latest/developerguide/concepts.html
|
2684
|
+
# @return [Array<Types::DimensionMapping>]
|
2685
|
+
#
|
2686
|
+
# @!attribute [rw] single_measure_mappings
|
2687
|
+
# Mappings of single source data fields to individual records in the
|
2688
|
+
# specified Timestream for LiveAnalytics table.
|
2689
|
+
# @return [Array<Types::SingleMeasureMapping>]
|
2690
|
+
#
|
2691
|
+
# @!attribute [rw] multi_measure_mappings
|
2692
|
+
# Maps multiple measures from the source event to the same record in
|
2693
|
+
# the specified Timestream for LiveAnalytics table.
|
2694
|
+
# @return [Array<Types::MultiMeasureMapping>]
|
2695
|
+
#
|
2696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeTargetTimestreamParameters AWS API Documentation
|
2697
|
+
#
|
2698
|
+
class PipeTargetTimestreamParameters < Struct.new(
|
2699
|
+
:time_value,
|
2700
|
+
:epoch_time_unit,
|
2701
|
+
:time_field_type,
|
2702
|
+
:timestamp_format,
|
2703
|
+
:version_value,
|
2704
|
+
:dimension_mappings,
|
2705
|
+
:single_measure_mappings,
|
2706
|
+
:multi_measure_mappings)
|
2707
|
+
SENSITIVE = []
|
2708
|
+
include Aws::Structure
|
2709
|
+
end
|
2710
|
+
|
2506
2711
|
# An object representing a constraint on task placement. To learn more,
|
2507
2712
|
# see [Task Placement Constraints][1] in the Amazon Elastic Container
|
2508
2713
|
# Service Developer Guide.
|
@@ -2511,6 +2716,13 @@ module Aws::Pipes
|
|
2511
2716
|
#
|
2512
2717
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html
|
2513
2718
|
#
|
2719
|
+
# @!attribute [rw] type
|
2720
|
+
# The type of constraint. Use distinctInstance to ensure that each
|
2721
|
+
# task in a particular group is running on a different container
|
2722
|
+
# instance. Use memberOf to restrict the selection to a group of valid
|
2723
|
+
# candidates.
|
2724
|
+
# @return [String]
|
2725
|
+
#
|
2514
2726
|
# @!attribute [rw] expression
|
2515
2727
|
# A cluster query language expression to apply to the constraint. You
|
2516
2728
|
# cannot specify an expression if the constraint type is
|
@@ -2522,18 +2734,11 @@ module Aws::Pipes
|
|
2522
2734
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
|
2523
2735
|
# @return [String]
|
2524
2736
|
#
|
2525
|
-
# @!attribute [rw] type
|
2526
|
-
# The type of constraint. Use distinctInstance to ensure that each
|
2527
|
-
# task in a particular group is running on a different container
|
2528
|
-
# instance. Use memberOf to restrict the selection to a group of valid
|
2529
|
-
# candidates.
|
2530
|
-
# @return [String]
|
2531
|
-
#
|
2532
2737
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PlacementConstraint AWS API Documentation
|
2533
2738
|
#
|
2534
2739
|
class PlacementConstraint < Struct.new(
|
2535
|
-
:
|
2536
|
-
:
|
2740
|
+
:type,
|
2741
|
+
:expression)
|
2537
2742
|
SENSITIVE = [:expression]
|
2538
2743
|
include Aws::Structure
|
2539
2744
|
end
|
@@ -2546,16 +2751,6 @@ module Aws::Pipes
|
|
2546
2751
|
#
|
2547
2752
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html
|
2548
2753
|
#
|
2549
|
-
# @!attribute [rw] field
|
2550
|
-
# The field to apply the placement strategy against. For the spread
|
2551
|
-
# placement strategy, valid values are instanceId (or host, which has
|
2552
|
-
# the same effect), or any platform or custom attribute that is
|
2553
|
-
# applied to a container instance, such as
|
2554
|
-
# attribute:ecs.availability-zone. For the binpack placement strategy,
|
2555
|
-
# valid values are cpu and memory. For the random placement strategy,
|
2556
|
-
# this field is not used.
|
2557
|
-
# @return [String]
|
2558
|
-
#
|
2559
2754
|
# @!attribute [rw] type
|
2560
2755
|
# The type of placement strategy. The random placement strategy
|
2561
2756
|
# randomly places tasks on available candidates. The spread placement
|
@@ -2567,11 +2762,21 @@ module Aws::Pipes
|
|
2567
2762
|
# least amount of remaining memory (but still enough to run the task).
|
2568
2763
|
# @return [String]
|
2569
2764
|
#
|
2765
|
+
# @!attribute [rw] field
|
2766
|
+
# The field to apply the placement strategy against. For the spread
|
2767
|
+
# placement strategy, valid values are instanceId (or host, which has
|
2768
|
+
# the same effect), or any platform or custom attribute that is
|
2769
|
+
# applied to a container instance, such as
|
2770
|
+
# attribute:ecs.availability-zone. For the binpack placement strategy,
|
2771
|
+
# valid values are cpu and memory. For the random placement strategy,
|
2772
|
+
# this field is not used.
|
2773
|
+
# @return [String]
|
2774
|
+
#
|
2570
2775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PlacementStrategy AWS API Documentation
|
2571
2776
|
#
|
2572
2777
|
class PlacementStrategy < Struct.new(
|
2573
|
-
:
|
2574
|
-
:
|
2778
|
+
:type,
|
2779
|
+
:field)
|
2575
2780
|
SENSITIVE = [:field]
|
2576
2781
|
include Aws::Structure
|
2577
2782
|
end
|
@@ -2583,6 +2788,17 @@ module Aws::Pipes
|
|
2583
2788
|
# log records for the pipe.
|
2584
2789
|
# @return [String]
|
2585
2790
|
#
|
2791
|
+
# @!attribute [rw] prefix
|
2792
|
+
# The prefix text with which to begin Amazon S3 log object names.
|
2793
|
+
#
|
2794
|
+
# For more information, see [Organizing objects using prefixes][1] in
|
2795
|
+
# the *Amazon Simple Storage Service User Guide*.
|
2796
|
+
#
|
2797
|
+
#
|
2798
|
+
#
|
2799
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html
|
2800
|
+
# @return [String]
|
2801
|
+
#
|
2586
2802
|
# @!attribute [rw] bucket_owner
|
2587
2803
|
# The Amazon Web Services account that owns the Amazon S3 bucket to
|
2588
2804
|
# which EventBridge delivers the log records for the pipe.
|
@@ -2602,24 +2818,13 @@ module Aws::Pipes
|
|
2602
2818
|
# [1]: https://www.w3.org/TR/WD-logfile
|
2603
2819
|
# @return [String]
|
2604
2820
|
#
|
2605
|
-
# @!attribute [rw] prefix
|
2606
|
-
# The prefix text with which to begin Amazon S3 log object names.
|
2607
|
-
#
|
2608
|
-
# For more information, see [Organizing objects using prefixes][1] in
|
2609
|
-
# the *Amazon Simple Storage Service User Guide*.
|
2610
|
-
#
|
2611
|
-
#
|
2612
|
-
#
|
2613
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html
|
2614
|
-
# @return [String]
|
2615
|
-
#
|
2616
2821
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/S3LogDestination AWS API Documentation
|
2617
2822
|
#
|
2618
2823
|
class S3LogDestination < Struct.new(
|
2619
2824
|
:bucket_name,
|
2825
|
+
:prefix,
|
2620
2826
|
:bucket_owner,
|
2621
|
-
:output_format
|
2622
|
-
:prefix)
|
2827
|
+
:output_format)
|
2623
2828
|
SENSITIVE = []
|
2624
2829
|
include Aws::Structure
|
2625
2830
|
end
|
@@ -2709,7 +2914,7 @@ module Aws::Pipes
|
|
2709
2914
|
# The ARN of the Secrets Manager secret.
|
2710
2915
|
# @return [String]
|
2711
2916
|
#
|
2712
|
-
# @!attribute [rw]
|
2917
|
+
# @!attribute [rw] sasl_scram_512_auth
|
2713
2918
|
# The ARN of the Secrets Manager secret.
|
2714
2919
|
# @return [String]
|
2715
2920
|
#
|
@@ -2717,7 +2922,7 @@ module Aws::Pipes
|
|
2717
2922
|
# The ARN of the Secrets Manager secret.
|
2718
2923
|
# @return [String]
|
2719
2924
|
#
|
2720
|
-
# @!attribute [rw]
|
2925
|
+
# @!attribute [rw] client_certificate_tls_auth
|
2721
2926
|
# The ARN of the Secrets Manager secret.
|
2722
2927
|
# @return [String]
|
2723
2928
|
#
|
@@ -2725,24 +2930,29 @@ module Aws::Pipes
|
|
2725
2930
|
#
|
2726
2931
|
class SelfManagedKafkaAccessConfigurationCredentials < Struct.new(
|
2727
2932
|
:basic_auth,
|
2728
|
-
:client_certificate_tls_auth,
|
2729
|
-
:sasl_scram_256_auth,
|
2730
2933
|
:sasl_scram_512_auth,
|
2934
|
+
:sasl_scram_256_auth,
|
2935
|
+
:client_certificate_tls_auth,
|
2731
2936
|
:unknown)
|
2732
2937
|
SENSITIVE = []
|
2733
2938
|
include Aws::Structure
|
2734
2939
|
include Aws::Structure::Union
|
2735
2940
|
|
2736
2941
|
class BasicAuth < SelfManagedKafkaAccessConfigurationCredentials; end
|
2737
|
-
class ClientCertificateTlsAuth < SelfManagedKafkaAccessConfigurationCredentials; end
|
2738
|
-
class SaslScram256Auth < SelfManagedKafkaAccessConfigurationCredentials; end
|
2739
2942
|
class SaslScram512Auth < SelfManagedKafkaAccessConfigurationCredentials; end
|
2943
|
+
class SaslScram256Auth < SelfManagedKafkaAccessConfigurationCredentials; end
|
2944
|
+
class ClientCertificateTlsAuth < SelfManagedKafkaAccessConfigurationCredentials; end
|
2740
2945
|
class Unknown < SelfManagedKafkaAccessConfigurationCredentials; end
|
2741
2946
|
end
|
2742
2947
|
|
2743
2948
|
# This structure specifies the VPC subnets and security groups for the
|
2744
2949
|
# stream, and whether a public IP address is to be used.
|
2745
2950
|
#
|
2951
|
+
# @!attribute [rw] subnets
|
2952
|
+
# Specifies the subnets associated with the stream. These subnets must
|
2953
|
+
# all be in the same VPC. You can specify as many as 16 subnets.
|
2954
|
+
# @return [Array<String>]
|
2955
|
+
#
|
2746
2956
|
# @!attribute [rw] security_group
|
2747
2957
|
# Specifies the security groups associated with the stream. These
|
2748
2958
|
# security groups must all be in the same VPC. You can specify as many
|
@@ -2750,16 +2960,11 @@ module Aws::Pipes
|
|
2750
2960
|
# default security group for the VPC is used.
|
2751
2961
|
# @return [Array<String>]
|
2752
2962
|
#
|
2753
|
-
# @!attribute [rw] subnets
|
2754
|
-
# Specifies the subnets associated with the stream. These subnets must
|
2755
|
-
# all be in the same VPC. You can specify as many as 16 subnets.
|
2756
|
-
# @return [Array<String>]
|
2757
|
-
#
|
2758
2963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/SelfManagedKafkaAccessConfigurationVpc AWS API Documentation
|
2759
2964
|
#
|
2760
2965
|
class SelfManagedKafkaAccessConfigurationVpc < Struct.new(
|
2761
|
-
:
|
2762
|
-
:
|
2966
|
+
:subnets,
|
2967
|
+
:security_group)
|
2763
2968
|
SENSITIVE = []
|
2764
2969
|
include Aws::Structure
|
2765
2970
|
end
|
@@ -2769,10 +2974,6 @@ module Aws::Pipes
|
|
2769
2974
|
# @!attribute [rw] message
|
2770
2975
|
# @return [String]
|
2771
2976
|
#
|
2772
|
-
# @!attribute [rw] quota_code
|
2773
|
-
# The identifier of the quota that caused the exception.
|
2774
|
-
# @return [String]
|
2775
|
-
#
|
2776
2977
|
# @!attribute [rw] resource_id
|
2777
2978
|
# The ID of the resource that caused the exception.
|
2778
2979
|
# @return [String]
|
@@ -2785,14 +2986,52 @@ module Aws::Pipes
|
|
2785
2986
|
# The identifier of the service that caused the exception.
|
2786
2987
|
# @return [String]
|
2787
2988
|
#
|
2989
|
+
# @!attribute [rw] quota_code
|
2990
|
+
# The identifier of the quota that caused the exception.
|
2991
|
+
# @return [String]
|
2992
|
+
#
|
2788
2993
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/ServiceQuotaExceededException AWS API Documentation
|
2789
2994
|
#
|
2790
2995
|
class ServiceQuotaExceededException < Struct.new(
|
2791
2996
|
:message,
|
2792
|
-
:quota_code,
|
2793
2997
|
:resource_id,
|
2794
2998
|
:resource_type,
|
2795
|
-
:service_code
|
2999
|
+
:service_code,
|
3000
|
+
:quota_code)
|
3001
|
+
SENSITIVE = []
|
3002
|
+
include Aws::Structure
|
3003
|
+
end
|
3004
|
+
|
3005
|
+
# Maps a single source data field to a single record in the specified
|
3006
|
+
# Timestream for LiveAnalytics table.
|
3007
|
+
#
|
3008
|
+
# For more information, see [Amazon Timestream for LiveAnalytics
|
3009
|
+
# concepts][1]
|
3010
|
+
#
|
3011
|
+
#
|
3012
|
+
#
|
3013
|
+
# [1]: https://docs.aws.amazon.com/timestream/latest/developerguide/concepts.html
|
3014
|
+
#
|
3015
|
+
# @!attribute [rw] measure_value
|
3016
|
+
# Dynamic path of the source field to map to the measure in the
|
3017
|
+
# record.
|
3018
|
+
# @return [String]
|
3019
|
+
#
|
3020
|
+
# @!attribute [rw] measure_value_type
|
3021
|
+
# Data type of the source field.
|
3022
|
+
# @return [String]
|
3023
|
+
#
|
3024
|
+
# @!attribute [rw] measure_name
|
3025
|
+
# Target measure name for the measurement attribute in the Timestream
|
3026
|
+
# table.
|
3027
|
+
# @return [String]
|
3028
|
+
#
|
3029
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/SingleMeasureMapping AWS API Documentation
|
3030
|
+
#
|
3031
|
+
class SingleMeasureMapping < Struct.new(
|
3032
|
+
:measure_value,
|
3033
|
+
:measure_value_type,
|
3034
|
+
:measure_name)
|
2796
3035
|
SENSITIVE = []
|
2797
3036
|
include Aws::Structure
|
2798
3037
|
end
|
@@ -2813,17 +3052,21 @@ module Aws::Pipes
|
|
2813
3052
|
# The ARN of the pipe.
|
2814
3053
|
# @return [String]
|
2815
3054
|
#
|
2816
|
-
# @!attribute [rw]
|
2817
|
-
# The
|
2818
|
-
# @return [
|
3055
|
+
# @!attribute [rw] name
|
3056
|
+
# The name of the pipe.
|
3057
|
+
# @return [String]
|
3058
|
+
#
|
3059
|
+
# @!attribute [rw] desired_state
|
3060
|
+
# The state the pipe should be in.
|
3061
|
+
# @return [String]
|
2819
3062
|
#
|
2820
3063
|
# @!attribute [rw] current_state
|
2821
3064
|
# The state the pipe is in.
|
2822
3065
|
# @return [String]
|
2823
3066
|
#
|
2824
|
-
# @!attribute [rw]
|
2825
|
-
# The
|
2826
|
-
# @return [
|
3067
|
+
# @!attribute [rw] creation_time
|
3068
|
+
# The time the pipe was created.
|
3069
|
+
# @return [Time]
|
2827
3070
|
#
|
2828
3071
|
# @!attribute [rw] last_modified_time
|
2829
3072
|
# When the pipe was last updated, in [ISO-8601 format][1]
|
@@ -2834,19 +3077,15 @@ module Aws::Pipes
|
|
2834
3077
|
# [1]: https://www.w3.org/TR/NOTE-datetime
|
2835
3078
|
# @return [Time]
|
2836
3079
|
#
|
2837
|
-
# @!attribute [rw] name
|
2838
|
-
# The name of the pipe.
|
2839
|
-
# @return [String]
|
2840
|
-
#
|
2841
3080
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/StartPipeResponse AWS API Documentation
|
2842
3081
|
#
|
2843
3082
|
class StartPipeResponse < Struct.new(
|
2844
3083
|
:arn,
|
2845
|
-
:
|
2846
|
-
:current_state,
|
3084
|
+
:name,
|
2847
3085
|
:desired_state,
|
2848
|
-
:
|
2849
|
-
:
|
3086
|
+
:current_state,
|
3087
|
+
:creation_time,
|
3088
|
+
:last_modified_time)
|
2850
3089
|
SENSITIVE = []
|
2851
3090
|
include Aws::Structure
|
2852
3091
|
end
|
@@ -2867,18 +3106,22 @@ module Aws::Pipes
|
|
2867
3106
|
# The ARN of the pipe.
|
2868
3107
|
# @return [String]
|
2869
3108
|
#
|
2870
|
-
# @!attribute [rw]
|
2871
|
-
# The
|
2872
|
-
# @return [Time]
|
2873
|
-
#
|
2874
|
-
# @!attribute [rw] current_state
|
2875
|
-
# The state the pipe is in.
|
3109
|
+
# @!attribute [rw] name
|
3110
|
+
# The name of the pipe.
|
2876
3111
|
# @return [String]
|
2877
3112
|
#
|
2878
3113
|
# @!attribute [rw] desired_state
|
2879
3114
|
# The state the pipe should be in.
|
2880
3115
|
# @return [String]
|
2881
3116
|
#
|
3117
|
+
# @!attribute [rw] current_state
|
3118
|
+
# The state the pipe is in.
|
3119
|
+
# @return [String]
|
3120
|
+
#
|
3121
|
+
# @!attribute [rw] creation_time
|
3122
|
+
# The time the pipe was created.
|
3123
|
+
# @return [Time]
|
3124
|
+
#
|
2882
3125
|
# @!attribute [rw] last_modified_time
|
2883
3126
|
# When the pipe was last updated, in [ISO-8601 format][1]
|
2884
3127
|
# (YYYY-MM-DDThh:mm:ss.sTZD).
|
@@ -2888,19 +3131,15 @@ module Aws::Pipes
|
|
2888
3131
|
# [1]: https://www.w3.org/TR/NOTE-datetime
|
2889
3132
|
# @return [Time]
|
2890
3133
|
#
|
2891
|
-
# @!attribute [rw] name
|
2892
|
-
# The name of the pipe.
|
2893
|
-
# @return [String]
|
2894
|
-
#
|
2895
3134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/StopPipeResponse AWS API Documentation
|
2896
3135
|
#
|
2897
3136
|
class StopPipeResponse < Struct.new(
|
2898
3137
|
:arn,
|
2899
|
-
:
|
2900
|
-
:current_state,
|
3138
|
+
:name,
|
2901
3139
|
:desired_state,
|
2902
|
-
:
|
2903
|
-
:
|
3140
|
+
:current_state,
|
3141
|
+
:creation_time,
|
3142
|
+
:last_modified_time)
|
2904
3143
|
SENSITIVE = []
|
2905
3144
|
include Aws::Structure
|
2906
3145
|
end
|
@@ -2952,6 +3191,10 @@ module Aws::Pipes
|
|
2952
3191
|
# @!attribute [rw] message
|
2953
3192
|
# @return [String]
|
2954
3193
|
#
|
3194
|
+
# @!attribute [rw] service_code
|
3195
|
+
# The identifier of the service that caused the exception.
|
3196
|
+
# @return [String]
|
3197
|
+
#
|
2955
3198
|
# @!attribute [rw] quota_code
|
2956
3199
|
# The identifier of the quota that caused the exception.
|
2957
3200
|
# @return [String]
|
@@ -2961,17 +3204,13 @@ module Aws::Pipes
|
|
2961
3204
|
# the exception.
|
2962
3205
|
# @return [Integer]
|
2963
3206
|
#
|
2964
|
-
# @!attribute [rw] service_code
|
2965
|
-
# The identifier of the service that caused the exception.
|
2966
|
-
# @return [String]
|
2967
|
-
#
|
2968
3207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/ThrottlingException AWS API Documentation
|
2969
3208
|
#
|
2970
3209
|
class ThrottlingException < Struct.new(
|
2971
3210
|
:message,
|
3211
|
+
:service_code,
|
2972
3212
|
:quota_code,
|
2973
|
-
:retry_after_seconds
|
2974
|
-
:service_code)
|
3213
|
+
:retry_after_seconds)
|
2975
3214
|
SENSITIVE = []
|
2976
3215
|
include Aws::Structure
|
2977
3216
|
end
|
@@ -2997,6 +3236,10 @@ module Aws::Pipes
|
|
2997
3236
|
#
|
2998
3237
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
2999
3238
|
|
3239
|
+
# @!attribute [rw] name
|
3240
|
+
# The name of the pipe.
|
3241
|
+
# @return [String]
|
3242
|
+
#
|
3000
3243
|
# @!attribute [rw] description
|
3001
3244
|
# A description of the pipe.
|
3002
3245
|
# @return [String]
|
@@ -3005,6 +3248,10 @@ module Aws::Pipes
|
|
3005
3248
|
# The state the pipe should be in.
|
3006
3249
|
# @return [String]
|
3007
3250
|
#
|
3251
|
+
# @!attribute [rw] source_parameters
|
3252
|
+
# The parameters required to set up a source for your pipe.
|
3253
|
+
# @return [Types::UpdatePipeSourceParameters]
|
3254
|
+
#
|
3008
3255
|
# @!attribute [rw] enrichment
|
3009
3256
|
# The ARN of the enrichment resource.
|
3010
3257
|
# @return [String]
|
@@ -3013,22 +3260,6 @@ module Aws::Pipes
|
|
3013
3260
|
# The parameters required to set up enrichment on your pipe.
|
3014
3261
|
# @return [Types::PipeEnrichmentParameters]
|
3015
3262
|
#
|
3016
|
-
# @!attribute [rw] log_configuration
|
3017
|
-
# The logging configuration settings for the pipe.
|
3018
|
-
# @return [Types::PipeLogConfigurationParameters]
|
3019
|
-
#
|
3020
|
-
# @!attribute [rw] name
|
3021
|
-
# The name of the pipe.
|
3022
|
-
# @return [String]
|
3023
|
-
#
|
3024
|
-
# @!attribute [rw] role_arn
|
3025
|
-
# The ARN of the role that allows the pipe to send data to the target.
|
3026
|
-
# @return [String]
|
3027
|
-
#
|
3028
|
-
# @!attribute [rw] source_parameters
|
3029
|
-
# The parameters required to set up a source for your pipe.
|
3030
|
-
# @return [Types::UpdatePipeSourceParameters]
|
3031
|
-
#
|
3032
3263
|
# @!attribute [rw] target
|
3033
3264
|
# The ARN of the target resource.
|
3034
3265
|
# @return [String]
|
@@ -3045,19 +3276,27 @@ module Aws::Pipes
|
|
3045
3276
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html
|
3046
3277
|
# @return [Types::PipeTargetParameters]
|
3047
3278
|
#
|
3279
|
+
# @!attribute [rw] role_arn
|
3280
|
+
# The ARN of the role that allows the pipe to send data to the target.
|
3281
|
+
# @return [String]
|
3282
|
+
#
|
3283
|
+
# @!attribute [rw] log_configuration
|
3284
|
+
# The logging configuration settings for the pipe.
|
3285
|
+
# @return [Types::PipeLogConfigurationParameters]
|
3286
|
+
#
|
3048
3287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/UpdatePipeRequest AWS API Documentation
|
3049
3288
|
#
|
3050
3289
|
class UpdatePipeRequest < Struct.new(
|
3290
|
+
:name,
|
3051
3291
|
:description,
|
3052
3292
|
:desired_state,
|
3293
|
+
:source_parameters,
|
3053
3294
|
:enrichment,
|
3054
3295
|
:enrichment_parameters,
|
3055
|
-
:log_configuration,
|
3056
|
-
:name,
|
3057
|
-
:role_arn,
|
3058
|
-
:source_parameters,
|
3059
3296
|
:target,
|
3060
|
-
:target_parameters
|
3297
|
+
:target_parameters,
|
3298
|
+
:role_arn,
|
3299
|
+
:log_configuration)
|
3061
3300
|
SENSITIVE = [:description]
|
3062
3301
|
include Aws::Structure
|
3063
3302
|
end
|
@@ -3066,18 +3305,22 @@ module Aws::Pipes
|
|
3066
3305
|
# The ARN of the pipe.
|
3067
3306
|
# @return [String]
|
3068
3307
|
#
|
3069
|
-
# @!attribute [rw]
|
3070
|
-
# The
|
3071
|
-
# @return [Time]
|
3072
|
-
#
|
3073
|
-
# @!attribute [rw] current_state
|
3074
|
-
# The state the pipe is in.
|
3308
|
+
# @!attribute [rw] name
|
3309
|
+
# The name of the pipe.
|
3075
3310
|
# @return [String]
|
3076
3311
|
#
|
3077
3312
|
# @!attribute [rw] desired_state
|
3078
3313
|
# The state the pipe should be in.
|
3079
3314
|
# @return [String]
|
3080
3315
|
#
|
3316
|
+
# @!attribute [rw] current_state
|
3317
|
+
# The state the pipe is in.
|
3318
|
+
# @return [String]
|
3319
|
+
#
|
3320
|
+
# @!attribute [rw] creation_time
|
3321
|
+
# The time the pipe was created.
|
3322
|
+
# @return [Time]
|
3323
|
+
#
|
3081
3324
|
# @!attribute [rw] last_modified_time
|
3082
3325
|
# When the pipe was last updated, in [ISO-8601 format][1]
|
3083
3326
|
# (YYYY-MM-DDThh:mm:ss.sTZD).
|
@@ -3087,33 +3330,29 @@ module Aws::Pipes
|
|
3087
3330
|
# [1]: https://www.w3.org/TR/NOTE-datetime
|
3088
3331
|
# @return [Time]
|
3089
3332
|
#
|
3090
|
-
# @!attribute [rw] name
|
3091
|
-
# The name of the pipe.
|
3092
|
-
# @return [String]
|
3093
|
-
#
|
3094
3333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/UpdatePipeResponse AWS API Documentation
|
3095
3334
|
#
|
3096
3335
|
class UpdatePipeResponse < Struct.new(
|
3097
3336
|
:arn,
|
3098
|
-
:
|
3099
|
-
:current_state,
|
3337
|
+
:name,
|
3100
3338
|
:desired_state,
|
3101
|
-
:
|
3102
|
-
:
|
3339
|
+
:current_state,
|
3340
|
+
:creation_time,
|
3341
|
+
:last_modified_time)
|
3103
3342
|
SENSITIVE = []
|
3104
3343
|
include Aws::Structure
|
3105
3344
|
end
|
3106
3345
|
|
3107
3346
|
# The parameters for using an Active MQ broker as a source.
|
3108
3347
|
#
|
3109
|
-
# @!attribute [rw] batch_size
|
3110
|
-
# The maximum number of records to include in each batch.
|
3111
|
-
# @return [Integer]
|
3112
|
-
#
|
3113
3348
|
# @!attribute [rw] credentials
|
3114
3349
|
# The credentials needed to access the resource.
|
3115
3350
|
# @return [Types::MQBrokerAccessCredentials]
|
3116
3351
|
#
|
3352
|
+
# @!attribute [rw] batch_size
|
3353
|
+
# The maximum number of records to include in each batch.
|
3354
|
+
# @return [Integer]
|
3355
|
+
#
|
3117
3356
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
3118
3357
|
# The maximum length of a time to wait for events.
|
3119
3358
|
# @return [Integer]
|
@@ -3121,8 +3360,8 @@ module Aws::Pipes
|
|
3121
3360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/UpdatePipeSourceActiveMQBrokerParameters AWS API Documentation
|
3122
3361
|
#
|
3123
3362
|
class UpdatePipeSourceActiveMQBrokerParameters < Struct.new(
|
3124
|
-
:batch_size,
|
3125
3363
|
:credentials,
|
3364
|
+
:batch_size,
|
3126
3365
|
:maximum_batching_window_in_seconds)
|
3127
3366
|
SENSITIVE = []
|
3128
3367
|
include Aws::Structure
|
@@ -3138,6 +3377,13 @@ module Aws::Pipes
|
|
3138
3377
|
# Define the target queue to send dead-letter queue events to.
|
3139
3378
|
# @return [Types::DeadLetterConfig]
|
3140
3379
|
#
|
3380
|
+
# @!attribute [rw] on_partial_batch_item_failure
|
3381
|
+
# (Streams only) Define how to handle item process failures.
|
3382
|
+
# `AUTOMATIC_BISECT` halves each batch and retry each half until all
|
3383
|
+
# the records are processed or there is one failed message left in the
|
3384
|
+
# batch.
|
3385
|
+
# @return [String]
|
3386
|
+
#
|
3141
3387
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
3142
3388
|
# The maximum length of a time to wait for events.
|
3143
3389
|
# @return [Integer]
|
@@ -3157,13 +3403,6 @@ module Aws::Pipes
|
|
3157
3403
|
# event source.
|
3158
3404
|
# @return [Integer]
|
3159
3405
|
#
|
3160
|
-
# @!attribute [rw] on_partial_batch_item_failure
|
3161
|
-
# (Streams only) Define how to handle item process failures.
|
3162
|
-
# `AUTOMATIC_BISECT` halves each batch and retry each half until all
|
3163
|
-
# the records are processed or there is one failed message left in the
|
3164
|
-
# batch.
|
3165
|
-
# @return [String]
|
3166
|
-
#
|
3167
3406
|
# @!attribute [rw] parallelization_factor
|
3168
3407
|
# (Streams only) The number of batches to process concurrently from
|
3169
3408
|
# each shard. The default value is 1.
|
@@ -3174,10 +3413,10 @@ module Aws::Pipes
|
|
3174
3413
|
class UpdatePipeSourceDynamoDBStreamParameters < Struct.new(
|
3175
3414
|
:batch_size,
|
3176
3415
|
:dead_letter_config,
|
3416
|
+
:on_partial_batch_item_failure,
|
3177
3417
|
:maximum_batching_window_in_seconds,
|
3178
3418
|
:maximum_record_age_in_seconds,
|
3179
3419
|
:maximum_retry_attempts,
|
3180
|
-
:on_partial_batch_item_failure,
|
3181
3420
|
:parallelization_factor)
|
3182
3421
|
SENSITIVE = []
|
3183
3422
|
include Aws::Structure
|
@@ -3193,6 +3432,13 @@ module Aws::Pipes
|
|
3193
3432
|
# Define the target queue to send dead-letter queue events to.
|
3194
3433
|
# @return [Types::DeadLetterConfig]
|
3195
3434
|
#
|
3435
|
+
# @!attribute [rw] on_partial_batch_item_failure
|
3436
|
+
# (Streams only) Define how to handle item process failures.
|
3437
|
+
# `AUTOMATIC_BISECT` halves each batch and retry each half until all
|
3438
|
+
# the records are processed or there is one failed message left in the
|
3439
|
+
# batch.
|
3440
|
+
# @return [String]
|
3441
|
+
#
|
3196
3442
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
3197
3443
|
# The maximum length of a time to wait for events.
|
3198
3444
|
# @return [Integer]
|
@@ -3212,13 +3458,6 @@ module Aws::Pipes
|
|
3212
3458
|
# event source.
|
3213
3459
|
# @return [Integer]
|
3214
3460
|
#
|
3215
|
-
# @!attribute [rw] on_partial_batch_item_failure
|
3216
|
-
# (Streams only) Define how to handle item process failures.
|
3217
|
-
# `AUTOMATIC_BISECT` halves each batch and retry each half until all
|
3218
|
-
# the records are processed or there is one failed message left in the
|
3219
|
-
# batch.
|
3220
|
-
# @return [String]
|
3221
|
-
#
|
3222
3461
|
# @!attribute [rw] parallelization_factor
|
3223
3462
|
# (Streams only) The number of batches to process concurrently from
|
3224
3463
|
# each shard. The default value is 1.
|
@@ -3229,10 +3468,10 @@ module Aws::Pipes
|
|
3229
3468
|
class UpdatePipeSourceKinesisStreamParameters < Struct.new(
|
3230
3469
|
:batch_size,
|
3231
3470
|
:dead_letter_config,
|
3471
|
+
:on_partial_batch_item_failure,
|
3232
3472
|
:maximum_batching_window_in_seconds,
|
3233
3473
|
:maximum_record_age_in_seconds,
|
3234
3474
|
:maximum_retry_attempts,
|
3235
|
-
:on_partial_batch_item_failure,
|
3236
3475
|
:parallelization_factor)
|
3237
3476
|
SENSITIVE = []
|
3238
3477
|
include Aws::Structure
|
@@ -3264,14 +3503,6 @@ module Aws::Pipes
|
|
3264
3503
|
|
3265
3504
|
# The parameters required to set up a source for your pipe.
|
3266
3505
|
#
|
3267
|
-
# @!attribute [rw] active_mq_broker_parameters
|
3268
|
-
# The parameters for using an Active MQ broker as a source.
|
3269
|
-
# @return [Types::UpdatePipeSourceActiveMQBrokerParameters]
|
3270
|
-
#
|
3271
|
-
# @!attribute [rw] dynamo_db_stream_parameters
|
3272
|
-
# The parameters for using a DynamoDB stream as a source.
|
3273
|
-
# @return [Types::UpdatePipeSourceDynamoDBStreamParameters]
|
3274
|
-
#
|
3275
3506
|
# @!attribute [rw] filter_criteria
|
3276
3507
|
# The collection of event patterns used to filter events.
|
3277
3508
|
#
|
@@ -3290,48 +3521,70 @@ module Aws::Pipes
|
|
3290
3521
|
# The parameters for using a Kinesis stream as a source.
|
3291
3522
|
# @return [Types::UpdatePipeSourceKinesisStreamParameters]
|
3292
3523
|
#
|
3293
|
-
# @!attribute [rw]
|
3294
|
-
# The parameters for using
|
3295
|
-
# @return [Types::
|
3524
|
+
# @!attribute [rw] dynamo_db_stream_parameters
|
3525
|
+
# The parameters for using a DynamoDB stream as a source.
|
3526
|
+
# @return [Types::UpdatePipeSourceDynamoDBStreamParameters]
|
3527
|
+
#
|
3528
|
+
# @!attribute [rw] sqs_queue_parameters
|
3529
|
+
# The parameters for using a Amazon SQS stream as a source.
|
3530
|
+
# @return [Types::UpdatePipeSourceSqsQueueParameters]
|
3531
|
+
#
|
3532
|
+
# @!attribute [rw] active_mq_broker_parameters
|
3533
|
+
# The parameters for using an Active MQ broker as a source.
|
3534
|
+
# @return [Types::UpdatePipeSourceActiveMQBrokerParameters]
|
3296
3535
|
#
|
3297
3536
|
# @!attribute [rw] rabbit_mq_broker_parameters
|
3298
3537
|
# The parameters for using a Rabbit MQ broker as a source.
|
3299
3538
|
# @return [Types::UpdatePipeSourceRabbitMQBrokerParameters]
|
3300
3539
|
#
|
3540
|
+
# @!attribute [rw] managed_streaming_kafka_parameters
|
3541
|
+
# The parameters for using an MSK stream as a source.
|
3542
|
+
# @return [Types::UpdatePipeSourceManagedStreamingKafkaParameters]
|
3543
|
+
#
|
3301
3544
|
# @!attribute [rw] self_managed_kafka_parameters
|
3302
3545
|
# The parameters for using a self-managed Apache Kafka stream as a
|
3303
3546
|
# source.
|
3304
|
-
# @return [Types::UpdatePipeSourceSelfManagedKafkaParameters]
|
3305
3547
|
#
|
3306
|
-
#
|
3307
|
-
#
|
3308
|
-
#
|
3548
|
+
# A *self managed* cluster refers to any Apache Kafka cluster not
|
3549
|
+
# hosted by Amazon Web Services. This includes both clusters you
|
3550
|
+
# manage yourself, as well as those hosted by a third-party provider,
|
3551
|
+
# such as [Confluent Cloud][1], [CloudKarafka][2], or [Redpanda][3].
|
3552
|
+
# For more information, see [Apache Kafka streams as a source][4] in
|
3553
|
+
# the *Amazon EventBridge User Guide*.
|
3554
|
+
#
|
3555
|
+
#
|
3556
|
+
#
|
3557
|
+
# [1]: https://www.confluent.io/
|
3558
|
+
# [2]: https://www.cloudkarafka.com/
|
3559
|
+
# [3]: https://redpanda.com/
|
3560
|
+
# [4]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html
|
3561
|
+
# @return [Types::UpdatePipeSourceSelfManagedKafkaParameters]
|
3309
3562
|
#
|
3310
3563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/UpdatePipeSourceParameters AWS API Documentation
|
3311
3564
|
#
|
3312
3565
|
class UpdatePipeSourceParameters < Struct.new(
|
3313
|
-
:active_mq_broker_parameters,
|
3314
|
-
:dynamo_db_stream_parameters,
|
3315
3566
|
:filter_criteria,
|
3316
3567
|
:kinesis_stream_parameters,
|
3317
|
-
:
|
3568
|
+
:dynamo_db_stream_parameters,
|
3569
|
+
:sqs_queue_parameters,
|
3570
|
+
:active_mq_broker_parameters,
|
3318
3571
|
:rabbit_mq_broker_parameters,
|
3319
|
-
:
|
3320
|
-
:
|
3572
|
+
:managed_streaming_kafka_parameters,
|
3573
|
+
:self_managed_kafka_parameters)
|
3321
3574
|
SENSITIVE = []
|
3322
3575
|
include Aws::Structure
|
3323
3576
|
end
|
3324
3577
|
|
3325
3578
|
# The parameters for using a Rabbit MQ broker as a source.
|
3326
3579
|
#
|
3327
|
-
# @!attribute [rw] batch_size
|
3328
|
-
# The maximum number of records to include in each batch.
|
3329
|
-
# @return [Integer]
|
3330
|
-
#
|
3331
3580
|
# @!attribute [rw] credentials
|
3332
3581
|
# The credentials needed to access the resource.
|
3333
3582
|
# @return [Types::MQBrokerAccessCredentials]
|
3334
3583
|
#
|
3584
|
+
# @!attribute [rw] batch_size
|
3585
|
+
# The maximum number of records to include in each batch.
|
3586
|
+
# @return [Integer]
|
3587
|
+
#
|
3335
3588
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
3336
3589
|
# The maximum length of a time to wait for events.
|
3337
3590
|
# @return [Integer]
|
@@ -3339,8 +3592,8 @@ module Aws::Pipes
|
|
3339
3592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/UpdatePipeSourceRabbitMQBrokerParameters AWS API Documentation
|
3340
3593
|
#
|
3341
3594
|
class UpdatePipeSourceRabbitMQBrokerParameters < Struct.new(
|
3342
|
-
:batch_size,
|
3343
3595
|
:credentials,
|
3596
|
+
:batch_size,
|
3344
3597
|
:maximum_batching_window_in_seconds)
|
3345
3598
|
SENSITIVE = []
|
3346
3599
|
include Aws::Structure
|
@@ -3349,18 +3602,32 @@ module Aws::Pipes
|
|
3349
3602
|
# The parameters for using a self-managed Apache Kafka stream as a
|
3350
3603
|
# source.
|
3351
3604
|
#
|
3605
|
+
# A *self managed* cluster refers to any Apache Kafka cluster not hosted
|
3606
|
+
# by Amazon Web Services. This includes both clusters you manage
|
3607
|
+
# yourself, as well as those hosted by a third-party provider, such as
|
3608
|
+
# [Confluent Cloud][1], [CloudKarafka][2], or [Redpanda][3]. For more
|
3609
|
+
# information, see [Apache Kafka streams as a source][4] in the *Amazon
|
3610
|
+
# EventBridge User Guide*.
|
3611
|
+
#
|
3612
|
+
#
|
3613
|
+
#
|
3614
|
+
# [1]: https://www.confluent.io/
|
3615
|
+
# [2]: https://www.cloudkarafka.com/
|
3616
|
+
# [3]: https://redpanda.com/
|
3617
|
+
# [4]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html
|
3618
|
+
#
|
3352
3619
|
# @!attribute [rw] batch_size
|
3353
3620
|
# The maximum number of records to include in each batch.
|
3354
3621
|
# @return [Integer]
|
3355
3622
|
#
|
3356
|
-
# @!attribute [rw] credentials
|
3357
|
-
# The credentials needed to access the resource.
|
3358
|
-
# @return [Types::SelfManagedKafkaAccessConfigurationCredentials]
|
3359
|
-
#
|
3360
3623
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
3361
3624
|
# The maximum length of a time to wait for events.
|
3362
3625
|
# @return [Integer]
|
3363
3626
|
#
|
3627
|
+
# @!attribute [rw] credentials
|
3628
|
+
# The credentials needed to access the resource.
|
3629
|
+
# @return [Types::SelfManagedKafkaAccessConfigurationCredentials]
|
3630
|
+
#
|
3364
3631
|
# @!attribute [rw] server_root_ca_certificate
|
3365
3632
|
# The ARN of the Secrets Manager secret used for certification.
|
3366
3633
|
# @return [String]
|
@@ -3374,8 +3641,8 @@ module Aws::Pipes
|
|
3374
3641
|
#
|
3375
3642
|
class UpdatePipeSourceSelfManagedKafkaParameters < Struct.new(
|
3376
3643
|
:batch_size,
|
3377
|
-
:credentials,
|
3378
3644
|
:maximum_batching_window_in_seconds,
|
3645
|
+
:credentials,
|
3379
3646
|
:server_root_ca_certificate,
|
3380
3647
|
:vpc)
|
3381
3648
|
SENSITIVE = []
|
@@ -3404,19 +3671,19 @@ module Aws::Pipes
|
|
3404
3671
|
# Indicates that an error has occurred while performing a validate
|
3405
3672
|
# operation.
|
3406
3673
|
#
|
3674
|
+
# @!attribute [rw] message
|
3675
|
+
# @return [String]
|
3676
|
+
#
|
3407
3677
|
# @!attribute [rw] field_list
|
3408
3678
|
# The list of fields for which validation failed and the corresponding
|
3409
3679
|
# failure messages.
|
3410
3680
|
# @return [Array<Types::ValidationExceptionField>]
|
3411
3681
|
#
|
3412
|
-
# @!attribute [rw] message
|
3413
|
-
# @return [String]
|
3414
|
-
#
|
3415
3682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/ValidationException AWS API Documentation
|
3416
3683
|
#
|
3417
3684
|
class ValidationException < Struct.new(
|
3418
|
-
:
|
3419
|
-
:
|
3685
|
+
:message,
|
3686
|
+
:field_list)
|
3420
3687
|
SENSITIVE = []
|
3421
3688
|
include Aws::Structure
|
3422
3689
|
end
|
@@ -3424,19 +3691,19 @@ module Aws::Pipes
|
|
3424
3691
|
# Indicates that an error has occurred while performing a validate
|
3425
3692
|
# operation.
|
3426
3693
|
#
|
3427
|
-
# @!attribute [rw] message
|
3428
|
-
# The message of the exception.
|
3429
|
-
# @return [String]
|
3430
|
-
#
|
3431
3694
|
# @!attribute [rw] name
|
3432
3695
|
# The name of the exception.
|
3433
3696
|
# @return [String]
|
3434
3697
|
#
|
3698
|
+
# @!attribute [rw] message
|
3699
|
+
# The message of the exception.
|
3700
|
+
# @return [String]
|
3701
|
+
#
|
3435
3702
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/ValidationExceptionField AWS API Documentation
|
3436
3703
|
#
|
3437
3704
|
class ValidationExceptionField < Struct.new(
|
3438
|
-
:
|
3439
|
-
:
|
3705
|
+
:name,
|
3706
|
+
:message)
|
3440
3707
|
SENSITIVE = []
|
3441
3708
|
include Aws::Structure
|
3442
3709
|
end
|