-
Notifications
You must be signed in to change notification settings - Fork 17
/
CfnPipe_PipeSourceParametersProperty.go
157 lines (154 loc) · 8.28 KB
/
CfnPipe_PipeSourceParametersProperty.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package awspipes
// The parameters required to set up a source for your pipe.
//
// Example:
// // The code below shows an example of how to instantiate this type.
// // The values are placeholders you should change.
// import "github.com/aws/aws-cdk-go/awscdk"
//
// pipeSourceParametersProperty := &PipeSourceParametersProperty{
// ActiveMqBrokerParameters: &PipeSourceActiveMQBrokerParametersProperty{
// Credentials: &MQBrokerAccessCredentialsProperty{
// BasicAuth: jsii.String("basicAuth"),
// },
// QueueName: jsii.String("queueName"),
//
// // the properties below are optional
// BatchSize: jsii.Number(123),
// MaximumBatchingWindowInSeconds: jsii.Number(123),
// },
// DynamoDbStreamParameters: &PipeSourceDynamoDBStreamParametersProperty{
// StartingPosition: jsii.String("startingPosition"),
//
// // the properties below are optional
// BatchSize: jsii.Number(123),
// DeadLetterConfig: &DeadLetterConfigProperty{
// Arn: jsii.String("arn"),
// },
// MaximumBatchingWindowInSeconds: jsii.Number(123),
// MaximumRecordAgeInSeconds: jsii.Number(123),
// MaximumRetryAttempts: jsii.Number(123),
// OnPartialBatchItemFailure: jsii.String("onPartialBatchItemFailure"),
// ParallelizationFactor: jsii.Number(123),
// },
// FilterCriteria: &FilterCriteriaProperty{
// Filters: []interface{}{
// &FilterProperty{
// Pattern: jsii.String("pattern"),
// },
// },
// },
// KinesisStreamParameters: &PipeSourceKinesisStreamParametersProperty{
// StartingPosition: jsii.String("startingPosition"),
//
// // the properties below are optional
// BatchSize: jsii.Number(123),
// DeadLetterConfig: &DeadLetterConfigProperty{
// Arn: jsii.String("arn"),
// },
// MaximumBatchingWindowInSeconds: jsii.Number(123),
// MaximumRecordAgeInSeconds: jsii.Number(123),
// MaximumRetryAttempts: jsii.Number(123),
// OnPartialBatchItemFailure: jsii.String("onPartialBatchItemFailure"),
// ParallelizationFactor: jsii.Number(123),
// StartingPositionTimestamp: jsii.String("startingPositionTimestamp"),
// },
// ManagedStreamingKafkaParameters: &PipeSourceManagedStreamingKafkaParametersProperty{
// TopicName: jsii.String("topicName"),
//
// // the properties below are optional
// BatchSize: jsii.Number(123),
// ConsumerGroupId: jsii.String("consumerGroupId"),
// Credentials: &MSKAccessCredentialsProperty{
// ClientCertificateTlsAuth: jsii.String("clientCertificateTlsAuth"),
// SaslScram512Auth: jsii.String("saslScram512Auth"),
// },
// MaximumBatchingWindowInSeconds: jsii.Number(123),
// StartingPosition: jsii.String("startingPosition"),
// },
// RabbitMqBrokerParameters: &PipeSourceRabbitMQBrokerParametersProperty{
// Credentials: &MQBrokerAccessCredentialsProperty{
// BasicAuth: jsii.String("basicAuth"),
// },
// QueueName: jsii.String("queueName"),
//
// // the properties below are optional
// BatchSize: jsii.Number(123),
// MaximumBatchingWindowInSeconds: jsii.Number(123),
// VirtualHost: jsii.String("virtualHost"),
// },
// SelfManagedKafkaParameters: &PipeSourceSelfManagedKafkaParametersProperty{
// TopicName: jsii.String("topicName"),
//
// // the properties below are optional
// AdditionalBootstrapServers: []*string{
// jsii.String("additionalBootstrapServers"),
// },
// BatchSize: jsii.Number(123),
// ConsumerGroupId: jsii.String("consumerGroupId"),
// Credentials: &SelfManagedKafkaAccessConfigurationCredentialsProperty{
// BasicAuth: jsii.String("basicAuth"),
// ClientCertificateTlsAuth: jsii.String("clientCertificateTlsAuth"),
// SaslScram256Auth: jsii.String("saslScram256Auth"),
// SaslScram512Auth: jsii.String("saslScram512Auth"),
// },
// MaximumBatchingWindowInSeconds: jsii.Number(123),
// ServerRootCaCertificate: jsii.String("serverRootCaCertificate"),
// StartingPosition: jsii.String("startingPosition"),
// Vpc: &SelfManagedKafkaAccessConfigurationVpcProperty{
// SecurityGroup: []*string{
// jsii.String("securityGroup"),
// },
// Subnets: []*string{
// jsii.String("subnets"),
// },
// },
// },
// SqsQueueParameters: &PipeSourceSqsQueueParametersProperty{
// BatchSize: jsii.Number(123),
// MaximumBatchingWindowInSeconds: jsii.Number(123),
// },
// }
//
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html
//
type CfnPipe_PipeSourceParametersProperty struct {
// The parameters for using an Active MQ broker as a source.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html#cfn-pipes-pipe-pipesourceparameters-activemqbrokerparameters
//
ActiveMqBrokerParameters interface{} `field:"optional" json:"activeMqBrokerParameters" yaml:"activeMqBrokerParameters"`
// The parameters for using a DynamoDB stream as a source.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html#cfn-pipes-pipe-pipesourceparameters-dynamodbstreamparameters
//
DynamoDbStreamParameters interface{} `field:"optional" json:"dynamoDbStreamParameters" yaml:"dynamoDbStreamParameters"`
// The collection of event patterns used to filter events.
//
// To remove a filter, specify a `FilterCriteria` object with an empty array of `Filter` objects.
//
// For more information, see [Events and Event Patterns](https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-and-event-patterns.html) in the *Amazon EventBridge User Guide* .
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html#cfn-pipes-pipe-pipesourceparameters-filtercriteria
//
FilterCriteria interface{} `field:"optional" json:"filterCriteria" yaml:"filterCriteria"`
// The parameters for using a Kinesis stream as a source.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html#cfn-pipes-pipe-pipesourceparameters-kinesisstreamparameters
//
KinesisStreamParameters interface{} `field:"optional" json:"kinesisStreamParameters" yaml:"kinesisStreamParameters"`
// The parameters for using an MSK stream as a source.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html#cfn-pipes-pipe-pipesourceparameters-managedstreamingkafkaparameters
//
ManagedStreamingKafkaParameters interface{} `field:"optional" json:"managedStreamingKafkaParameters" yaml:"managedStreamingKafkaParameters"`
// The parameters for using a Rabbit MQ broker as a source.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html#cfn-pipes-pipe-pipesourceparameters-rabbitmqbrokerparameters
//
RabbitMqBrokerParameters interface{} `field:"optional" json:"rabbitMqBrokerParameters" yaml:"rabbitMqBrokerParameters"`
// The parameters for using a stream as a source.
//
// A *self managed* cluster refers to any Apache Kafka cluster not hosted by AWS . This includes both clusters you manage yourself, as well as those hosted by a third-party provider, such as [Confluent Cloud](https://docs.aws.amazon.com/https://www.confluent.io/) , [CloudKarafka](https://docs.aws.amazon.com/https://www.cloudkarafka.com/) , or [Redpanda](https://docs.aws.amazon.com/https://redpanda.com/) . For more information, see [Apache Kafka streams as a source](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html) in the *Amazon EventBridge User Guide* .
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html#cfn-pipes-pipe-pipesourceparameters-selfmanagedkafkaparameters
//
SelfManagedKafkaParameters interface{} `field:"optional" json:"selfManagedKafkaParameters" yaml:"selfManagedKafkaParameters"`
// The parameters for using a Amazon SQS stream as a source.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html#cfn-pipes-pipe-pipesourceparameters-sqsqueueparameters
//
SqsQueueParameters interface{} `field:"optional" json:"sqsQueueParameters" yaml:"sqsQueueParameters"`
}