@awboost/cfn-resource-types 0.1.74 → 0.1.76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -129,6 +129,7 @@ export type BedrockAgentAttributes = {
129
129
  };
130
130
  /**
131
131
  * Type definition for `AWS::Bedrock::Agent.ActionGroupExecutor`.
132
+ * Type of Executors for an Action Group
132
133
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-actiongroupexecutor.html}
133
134
  */
134
135
  export type ActionGroupExecutor = {
@@ -138,6 +139,11 @@ export type ActionGroupExecutor = {
138
139
  * @pattern `^arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\d{1}:\d{12}:function:[a-zA-Z0-9-_\.]+(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
139
140
  */
140
141
  Lambda: string;
142
+ } | {
143
+ /**
144
+ * Custom control of action execution
145
+ */
146
+ CustomControl: CustomControlMethod;
141
147
  };
142
148
  /**
143
149
  * Type definition for `AWS::Bedrock::Agent.ActionGroupSignature`.
@@ -157,6 +163,9 @@ export type ActionGroupState = "ENABLED" | "DISABLED";
157
163
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-agentactiongroup.html}
158
164
  */
159
165
  export type AgentActionGroup = {
166
+ /**
167
+ * Type of Executors for an Action Group
168
+ */
160
169
  ActionGroupExecutor?: ActionGroupExecutor;
161
170
  /**
162
171
  * Name of the action group
@@ -177,6 +186,10 @@ export type AgentActionGroup = {
177
186
  * @maxLength `200`
178
187
  */
179
188
  Description?: string;
189
+ /**
190
+ * Schema of Functions
191
+ */
192
+ FunctionSchema?: FunctionSchema;
180
193
  /**
181
194
  * Action Group Signature for a BuiltIn Action
182
195
  */
@@ -236,6 +249,45 @@ export type APISchema = {
236
249
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-creationmode.html}
237
250
  */
238
251
  export type CreationMode = "DEFAULT" | "OVERRIDDEN";
252
+ /**
253
+ * Type definition for `AWS::Bedrock::Agent.CustomControlMethod`.
254
+ * Custom control of action execution
255
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-customcontrolmethod.html}
256
+ */
257
+ export type CustomControlMethod = "RETURN_CONTROL";
258
+ /**
259
+ * Type definition for `AWS::Bedrock::Agent.Function`.
260
+ * Function definition
261
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-function.html}
262
+ */
263
+ export type Function = {
264
+ /**
265
+ * Description of function
266
+ * @minLength `1`
267
+ * @maxLength `1200`
268
+ */
269
+ Description?: string;
270
+ /**
271
+ * Name for a resource.
272
+ * @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
273
+ */
274
+ Name: string;
275
+ /**
276
+ * A map of parameter name and detail
277
+ */
278
+ Parameters?: ParameterMap;
279
+ };
280
+ /**
281
+ * Type definition for `AWS::Bedrock::Agent.FunctionSchema`.
282
+ * Schema of Functions
283
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-functionschema.html}
284
+ */
285
+ export type FunctionSchema = {
286
+ /**
287
+ * List of Function definitions
288
+ */
289
+ Functions: Function[];
290
+ };
239
291
  /**
240
292
  * Type definition for `AWS::Bedrock::Agent.InferenceConfiguration`.
241
293
  * Configuration for inference in prompt configuration
@@ -279,6 +331,33 @@ export type InferenceConfiguration = {
279
331
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-knowledgebasestate.html}
280
332
  */
281
333
  export type KnowledgeBaseState = "ENABLED" | "DISABLED";
334
+ /**
335
+ * Type definition for `AWS::Bedrock::Agent.ParameterDetail`.
336
+ * Parameter detail
337
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-parameterdetail.html}
338
+ */
339
+ export type ParameterDetail = {
340
+ /**
341
+ * Description of function parameter.
342
+ * @minLength `1`
343
+ * @maxLength `500`
344
+ */
345
+ Description?: string;
346
+ /**
347
+ * Information about if a parameter is required for function call. Default to false.
348
+ */
349
+ Required?: boolean;
350
+ /**
351
+ * Parameter Type
352
+ */
353
+ Type: Type;
354
+ };
355
+ /**
356
+ * Type definition for `AWS::Bedrock::Agent.ParameterMap`.
357
+ * A map of parameter name and detail
358
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-parametermap.html}
359
+ */
360
+ export type ParameterMap = Record<string, ParameterDetail>;
282
361
  /**
283
362
  * Type definition for `AWS::Bedrock::Agent.PromptConfiguration`.
284
363
  * BasePromptConfiguration per Prompt Type.
@@ -369,6 +448,12 @@ export type S3Identifier = {
369
448
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-tagsmap.html}
370
449
  */
371
450
  export type TagsMap = Record<string, string>;
451
+ /**
452
+ * Type definition for `AWS::Bedrock::Agent.Type`.
453
+ * Parameter Type
454
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-type.html}
455
+ */
456
+ export type Type = "string" | "number" | "integer" | "boolean" | "array";
372
457
  /**
373
458
  * Definition of AWS::Bedrock::Agent Resource Type
374
459
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-agent.html}
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  export type BudgetsBudgetProperties = {
8
8
  Budget: BudgetData;
9
9
  NotificationsWithSubscribers?: NotificationWithSubscribers[];
10
+ ResourceTags?: ResourceTag[];
10
11
  };
11
12
  /**
12
13
  * Attribute type definition for `AWS::Budgets::Budget`.
@@ -80,6 +81,14 @@ export type NotificationWithSubscribers = {
80
81
  Notification: Notification;
81
82
  Subscribers: Subscriber[];
82
83
  };
84
+ /**
85
+ * Type definition for `AWS::Budgets::Budget.ResourceTag`.
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-resourcetag.html}
87
+ */
88
+ export type ResourceTag = {
89
+ Key: string;
90
+ Value?: string;
91
+ };
83
92
  /**
84
93
  * Type definition for `AWS::Budgets::Budget.Spend`.
85
94
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html}
@@ -3,13 +3,13 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
3
3
  /**
4
4
  * The ``AWS::Lambda::EventSourceMapping`` resource creates a mapping between an event source and an LAMlong function. LAM reads items from the event source and triggers the function.
5
5
  For details about each event source type, see the following topics. In particular, each of the topics describes the required and optional parameters for the specific event source.
6
- + [Configuring a Dynamo DB stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping)
7
- + [Configuring a Kinesis stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping)
8
- + [Configuring an SQS queue as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource)
9
- + [Configuring an MQ broker as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping)
10
- + [Configuring MSK as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html)
11
- + [Configuring Self-Managed Apache Kafka as an event source](https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html)
12
- + [Configuring Amazon DocumentDB as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html)
6
+ + [Configuring a Dynamo DB stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping)
7
+ + [Configuring a Kinesis stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping)
8
+ + [Configuring an SQS queue as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource)
9
+ + [Configuring an MQ broker as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping)
10
+ + [Configuring MSK as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html)
11
+ + [Configuring Self-Managed Apache Kafka as an event source](https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html)
12
+ + [Configuring Amazon DocumentDB as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html)
13
13
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html}
14
14
  */
15
15
  export type LambdaEventSourceMappingProperties = {
@@ -57,7 +57,7 @@ export type LambdaEventSourceMappingProperties = {
57
57
  + *Amazon DocumentDB* – The ARN of the DocumentDB change stream.
58
58
  * @minLength `12`
59
59
  * @maxLength `1024`
60
- * @pattern `arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso)?(-isob)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
60
+ * @pattern `arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
61
61
  */
62
62
  EventSourceArn?: string;
63
63
  /**
@@ -75,7 +75,7 @@ export type LambdaEventSourceMappingProperties = {
75
75
  The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.
76
76
  * @minLength `1`
77
77
  * @maxLength `140`
78
- * @pattern `(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?(-iso)?(-isob)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?`
78
+ * @pattern `(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?`
79
79
  */
80
80
  FunctionName: string;
81
81
  /**
@@ -137,9 +137,9 @@ export type LambdaEventSourceMappingProperties = {
137
137
  SourceAccessConfigurations?: SourceAccessConfiguration[];
138
138
  /**
139
139
  * The position in a stream from which to start reading. Required for Amazon Kinesis and Amazon DynamoDB.
140
- + *LATEST* - Read only new records.
141
- + *TRIM_HORIZON* - Process all available records.
142
- + *AT_TIMESTAMP* - Specify a time from which to start reading records.
140
+ + *LATEST* - Read only new records.
141
+ + *TRIM_HORIZON* - Process all available records.
142
+ + *AT_TIMESTAMP* - Specify a time from which to start reading records.
143
143
  * @minLength `6`
144
144
  * @maxLength `12`
145
145
  * @pattern `(LATEST|TRIM_HORIZON|AT_TIMESTAMP)+`
@@ -275,7 +275,7 @@ export type OnFailure = {
275
275
  To retain records of failed invocations from [self-managed Kafka](https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-smaa-onfailure-destination) or [Amazon MSK](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-onfailure-destination), you can configure an Amazon SNS topic, Amazon SQS queue, or Amazon S3 bucket as the destination.
276
276
  * @minLength `12`
277
277
  * @maxLength `1024`
278
- * @pattern `arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso)?(-isob)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
278
+ * @pattern `arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
279
279
  */
280
280
  Destination?: string;
281
281
  };
@@ -347,13 +347,13 @@ export type SourceAccessConfiguration = {
347
347
  /**
348
348
  * The ``AWS::Lambda::EventSourceMapping`` resource creates a mapping between an event source and an LAMlong function. LAM reads items from the event source and triggers the function.
349
349
  For details about each event source type, see the following topics. In particular, each of the topics describes the required and optional parameters for the specific event source.
350
- + [Configuring a Dynamo DB stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping)
351
- + [Configuring a Kinesis stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping)
352
- + [Configuring an SQS queue as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource)
353
- + [Configuring an MQ broker as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping)
354
- + [Configuring MSK as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html)
355
- + [Configuring Self-Managed Apache Kafka as an event source](https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html)
356
- + [Configuring Amazon DocumentDB as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html)
350
+ + [Configuring a Dynamo DB stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping)
351
+ + [Configuring a Kinesis stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping)
352
+ + [Configuring an SQS queue as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource)
353
+ + [Configuring an MQ broker as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping)
354
+ + [Configuring MSK as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html)
355
+ + [Configuring Self-Managed Apache Kafka as an event source](https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html)
356
+ + [Configuring Amazon DocumentDB as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html)
357
357
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html}
358
358
  */
359
359
  export declare class LambdaEventSourceMapping extends $Resource<"AWS::Lambda::EventSourceMapping", LambdaEventSourceMappingProperties, LambdaEventSourceMappingAttributes> {
@@ -2,13 +2,13 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
2
2
  /**
3
3
  * The ``AWS::Lambda::EventSourceMapping`` resource creates a mapping between an event source and an LAMlong function. LAM reads items from the event source and triggers the function.
4
4
  For details about each event source type, see the following topics. In particular, each of the topics describes the required and optional parameters for the specific event source.
5
- + [Configuring a Dynamo DB stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping)
6
- + [Configuring a Kinesis stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping)
7
- + [Configuring an SQS queue as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource)
8
- + [Configuring an MQ broker as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping)
9
- + [Configuring MSK as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html)
10
- + [Configuring Self-Managed Apache Kafka as an event source](https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html)
11
- + [Configuring Amazon DocumentDB as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html)
5
+ + [Configuring a Dynamo DB stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping)
6
+ + [Configuring a Kinesis stream as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping)
7
+ + [Configuring an SQS queue as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource)
8
+ + [Configuring an MQ broker as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping)
9
+ + [Configuring MSK as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html)
10
+ + [Configuring Self-Managed Apache Kafka as an event source](https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html)
11
+ + [Configuring Amazon DocumentDB as an event source](https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html)
12
12
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html}
13
13
  */
14
14
  export class LambdaEventSourceMapping extends $Resource {
@@ -9,6 +9,14 @@ export type MediaConnectFlowProperties = {
9
9
  * The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS.
10
10
  */
11
11
  AvailabilityZone?: string;
12
+ /**
13
+ * The maintenance settings you want to use for the flow.
14
+ */
15
+ Maintenance?: Maintenance;
16
+ /**
17
+ * The media streams associated with the flow. You can associate any of these media streams with sources and outputs on the flow.
18
+ */
19
+ MediaStreams?: MediaStream[];
12
20
  /**
13
21
  * The name of the flow.
14
22
  */
@@ -21,12 +29,20 @@ export type MediaConnectFlowProperties = {
21
29
  * The source failover config of the flow.
22
30
  */
23
31
  SourceFailoverConfig?: FailoverConfig;
32
+ /**
33
+ * The VPC interfaces that you added to this flow.
34
+ */
35
+ VpcInterfaces?: VpcInterface[];
24
36
  };
25
37
  /**
26
38
  * Attribute type definition for `AWS::MediaConnect::Flow`.
27
39
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-flow.html#aws-resource-mediaconnect-flow-return-values}
28
40
  */
29
41
  export type MediaConnectFlowAttributes = {
42
+ /**
43
+ * The IP address from which video will be sent to output destinations.
44
+ */
45
+ EgressIp: string;
30
46
  /**
31
47
  * The Amazon Resource Name (ARN), a unique identifier for any AWS resource, of the flow.
32
48
  */
@@ -35,6 +51,15 @@ export type MediaConnectFlowAttributes = {
35
51
  * The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS.(ReadOnly)
36
52
  */
37
53
  FlowAvailabilityZone: string;
54
+ /**
55
+ * The media streams associated with the flow. You can associate any of these media streams with sources and outputs on the flow.
56
+ */
57
+ MediaStreams: {
58
+ /**
59
+ * The format type number (sometimes referred to as RTP payload type) of the media stream. MediaConnect assigns this value to the media stream. For ST 2110 JPEG XS outputs, you need to provide this value to the receiver.
60
+ */
61
+ Fmt: number;
62
+ }[];
38
63
  /**
39
64
  * The source of the flow.
40
65
  */
@@ -52,6 +77,15 @@ export type MediaConnectFlowAttributes = {
52
77
  */
53
78
  SourceIngestPort: string;
54
79
  };
80
+ /**
81
+ * The VPC interfaces that you added to this flow.
82
+ */
83
+ VpcInterfaces: {
84
+ /**
85
+ * IDs of the network interfaces created in customer's account by MediaConnect.
86
+ */
87
+ NetworkInterfaceIds: string[];
88
+ }[];
55
89
  };
56
90
  /**
57
91
  * Type definition for `AWS::MediaConnect::Flow.Encryption`.
@@ -121,6 +155,41 @@ export type FailoverConfig = {
121
155
  };
122
156
  State?: "ENABLED" | "DISABLED";
123
157
  };
158
+ /**
159
+ * Type definition for `AWS::MediaConnect::Flow.Fmtp`.
160
+ * A set of parameters that define the media stream.
161
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-fmtp.html}
162
+ */
163
+ export type Fmtp = {
164
+ /**
165
+ * The format of the audio channel.
166
+ */
167
+ ChannelOrder?: string;
168
+ /**
169
+ * The format used for the representation of color.
170
+ */
171
+ Colorimetry?: "BT601" | "BT709" | "BT2020" | "BT2100" | "ST2065-1" | "ST2065-3" | "XYZ";
172
+ /**
173
+ * The frame rate for the video stream, in frames/second. For example: 60000/1001.
174
+ */
175
+ ExactFramerate?: string;
176
+ /**
177
+ * The pixel aspect ratio (PAR) of the video.
178
+ */
179
+ Par?: string;
180
+ /**
181
+ * The encoding range of the video.
182
+ */
183
+ Range?: "NARROW" | "FULL" | "FULLPROTECT";
184
+ /**
185
+ * The type of compression that was used to smooth the video's appearance.
186
+ */
187
+ ScanMode?: "progressive" | "interlace" | "progressive-segmented-frame";
188
+ /**
189
+ * The transfer characteristic system (TCS) that is used in the video.
190
+ */
191
+ Tcs?: "SDR" | "PQ" | "HLG" | "LINEAR" | "BT2100LINPQ" | "BT2100LINHLG" | "ST2065-1" | "ST428-1" | "DENSITY";
192
+ };
124
193
  /**
125
194
  * Type definition for `AWS::MediaConnect::Flow.GatewayBridgeSource`.
126
195
  * The source configuration for cloud flows receiving a stream from a bridge.
@@ -136,6 +205,116 @@ export type GatewayBridgeSource = {
136
205
  */
137
206
  VpcInterfaceAttachment?: VpcInterfaceAttachment;
138
207
  };
208
+ /**
209
+ * Type definition for `AWS::MediaConnect::Flow.InputConfiguration`.
210
+ * The transport parameters associated with an incoming media stream.
211
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-inputconfiguration.html}
212
+ */
213
+ export type InputConfiguration = {
214
+ /**
215
+ * The port that the flow listens on for an incoming media stream.
216
+ */
217
+ InputPort: number;
218
+ /**
219
+ * The VPC interface where the media stream comes in from.
220
+ */
221
+ Interface: Interface;
222
+ };
223
+ /**
224
+ * Type definition for `AWS::MediaConnect::Flow.Interface`.
225
+ * The VPC interface that you want to use for the media stream associated with the output.
226
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-interface.html}
227
+ */
228
+ export type Interface = {
229
+ /**
230
+ * The name of the VPC interface that you want to use for the media stream associated with the output.
231
+ */
232
+ Name: string;
233
+ };
234
+ /**
235
+ * Type definition for `AWS::MediaConnect::Flow.Maintenance`.
236
+ * The maintenance setting of a flow.
237
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-maintenance.html}
238
+ */
239
+ export type Maintenance = {
240
+ /**
241
+ * A day of a week when the maintenance will happen. Use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
242
+ */
243
+ MaintenanceDay: "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday";
244
+ /**
245
+ * UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes must be 00. Example: 13:00. The default value is 02:00.
246
+ */
247
+ MaintenanceStartHour: string;
248
+ };
249
+ /**
250
+ * Type definition for `AWS::MediaConnect::Flow.MediaStream`.
251
+ * A single track or stream of media that contains video, audio, or ancillary data. After you add a media stream to a flow, you can associate it with sources and outputs on that flow, as long as they use the CDI protocol or the ST 2110 JPEG XS protocol. Each source or output can consist of one or many media streams.
252
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-mediastream.html}
253
+ */
254
+ export type MediaStream = {
255
+ /**
256
+ * Attributes that are related to the media stream.
257
+ */
258
+ Attributes?: MediaStreamAttributes;
259
+ /**
260
+ * The sample rate for the stream. This value in measured in kHz.
261
+ */
262
+ ClockRate?: number;
263
+ /**
264
+ * A description that can help you quickly identify what your media stream is used for.
265
+ */
266
+ Description?: string;
267
+ /**
268
+ * A unique identifier for the media stream.
269
+ */
270
+ MediaStreamId: number;
271
+ /**
272
+ * A name that helps you distinguish one media stream from another.
273
+ */
274
+ MediaStreamName: string;
275
+ /**
276
+ * The type of media stream.
277
+ */
278
+ MediaStreamType: "video" | "audio" | "ancillary-data";
279
+ /**
280
+ * The resolution of the video.
281
+ */
282
+ VideoFormat?: "2160p" | "1080p" | "1080i" | "720p" | "480p";
283
+ };
284
+ /**
285
+ * Type definition for `AWS::MediaConnect::Flow.MediaStreamAttributes`.
286
+ * Attributes that are related to the media stream.
287
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-mediastreamattributes.html}
288
+ */
289
+ export type MediaStreamAttributes = {
290
+ /**
291
+ * A set of parameters that define the media stream.
292
+ */
293
+ Fmtp?: Fmtp;
294
+ /**
295
+ * The audio language, in a format that is recognized by the receiver.
296
+ */
297
+ Lang?: string;
298
+ };
299
+ /**
300
+ * Type definition for `AWS::MediaConnect::Flow.MediaStreamSourceConfiguration`.
301
+ * The media stream that is associated with the source, and the parameters for that association.
302
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-mediastreamsourceconfiguration.html}
303
+ */
304
+ export type MediaStreamSourceConfiguration = {
305
+ /**
306
+ * The format that was used to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.
307
+ */
308
+ EncodingName: "jxsv" | "raw" | "smpte291" | "pcm";
309
+ /**
310
+ * The media streams that you want to associate with the source.
311
+ */
312
+ InputConfigurations?: InputConfiguration[];
313
+ /**
314
+ * A name that helps you distinguish one media stream from another.
315
+ */
316
+ MediaStreamName: string;
317
+ };
139
318
  /**
140
319
  * Type definition for `AWS::MediaConnect::Flow.Source`.
141
320
  * The settings for the source of the flow.
@@ -170,6 +349,14 @@ export type Source = {
170
349
  * The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams.
171
350
  */
172
351
  MaxLatency?: number;
352
+ /**
353
+ * The size of the buffer (in milliseconds) to use to sync incoming source data.
354
+ */
355
+ MaxSyncBuffer?: number;
356
+ /**
357
+ * The media stream that is associated with the source, and the parameters for that association.
358
+ */
359
+ MediaStreamSourceConfigurations?: MediaStreamSourceConfiguration[];
173
360
  /**
174
361
  * The minimum latency in milliseconds.
175
362
  */
@@ -181,7 +368,7 @@ export type Source = {
181
368
  /**
182
369
  * The protocol that is used by the source.
183
370
  */
184
- Protocol?: "zixi-push" | "rtp-fec" | "rtp" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller";
371
+ Protocol?: "zixi-push" | "rtp-fec" | "rtp" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller" | "st2110-jpegxs" | "cdi";
185
372
  /**
186
373
  * The port that the flow uses to send outbound requests to initiate connection with the sender for fujitsu-qos protocol.
187
374
  */
@@ -211,6 +398,33 @@ export type Source = {
211
398
  */
212
399
  WhitelistCidr?: string;
213
400
  };
401
+ /**
402
+ * Type definition for `AWS::MediaConnect::Flow.VpcInterface`.
403
+ * The details of a VPC interface.
404
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-vpcinterface.html}
405
+ */
406
+ export type VpcInterface = {
407
+ /**
408
+ * Immutable and has to be a unique against other VpcInterfaces in this Flow.
409
+ */
410
+ Name: string;
411
+ /**
412
+ * The type of network adapter that you want MediaConnect to use on this interface. If you don't set this value, it defaults to ENA.
413
+ */
414
+ NetworkInterfaceType?: "ena" | "efa";
415
+ /**
416
+ * Role Arn MediaConnect can assume to create ENIs in customer's account.
417
+ */
418
+ RoleArn: string;
419
+ /**
420
+ * Security Group IDs to be used on ENI.
421
+ */
422
+ SecurityGroupIds: string[];
423
+ /**
424
+ * Subnet must be in the AZ of the Flow
425
+ */
426
+ SubnetId: string;
427
+ };
214
428
  /**
215
429
  * Type definition for `AWS::MediaConnect::Flow.VpcInterfaceAttachment`.
216
430
  * The settings for attaching a VPC interface to an resource.
@@ -29,6 +29,10 @@ export type MediaConnectFlowOutputProperties = {
29
29
  * The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams.
30
30
  */
31
31
  MaxLatency?: number;
32
+ /**
33
+ * The definition for each media stream that is associated with the output.
34
+ */
35
+ MediaStreamOutputConfigurations?: MediaStreamOutputConfiguration[];
32
36
  /**
33
37
  * The minimum latency in milliseconds.
34
38
  */
@@ -44,7 +48,7 @@ export type MediaConnectFlowOutputProperties = {
44
48
  /**
45
49
  * The protocol that is used by the source or output.
46
50
  */
47
- Protocol: "zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller";
51
+ Protocol: "zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller" | "st2110-jpegxs" | "cdi";
48
52
  /**
49
53
  * The remote ID for the Zixi-pull stream.
50
54
  */
@@ -72,6 +76,40 @@ export type MediaConnectFlowOutputAttributes = {
72
76
  */
73
77
  OutputArn: string;
74
78
  };
79
+ /**
80
+ * Type definition for `AWS::MediaConnect::FlowOutput.DestinationConfiguration`.
81
+ * The definition of a media stream that is associated with the output.
82
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-destinationconfiguration.html}
83
+ */
84
+ export type DestinationConfiguration = {
85
+ /**
86
+ * The IP address where contents of the media stream will be sent.
87
+ */
88
+ DestinationIp: string;
89
+ /**
90
+ * The port to use when the content of the media stream is distributed to the output.
91
+ */
92
+ DestinationPort: number;
93
+ /**
94
+ * The VPC interface that is used for the media stream associated with the output.
95
+ */
96
+ Interface: Interface;
97
+ };
98
+ /**
99
+ * Type definition for `AWS::MediaConnect::FlowOutput.EncodingParameters`.
100
+ * A collection of parameters that determine how MediaConnect will convert the content. These fields only apply to outputs on flows that have a CDI source.
101
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-encodingparameters.html}
102
+ */
103
+ export type EncodingParameters = {
104
+ /**
105
+ * A value that is used to calculate compression for an output. The bitrate of the output is calculated as follows: Output bitrate = (1 / compressionFactor) * (source bitrate) This property only applies to outputs that use the ST 2110 JPEG XS protocol, with a flow source that uses the CDI protocol. Valid values are in the range of 3.0 to 10.0, inclusive.
106
+ */
107
+ CompressionFactor: number;
108
+ /**
109
+ * A setting on the encoder that drives compression settings. This property only applies to video media streams associated with outputs that use the ST 2110 JPEG XS protocol, with a flow source that uses the CDI protocol.
110
+ */
111
+ EncoderProfile?: "main" | "high";
112
+ };
75
113
  /**
76
114
  * Type definition for `AWS::MediaConnect::FlowOutput.Encryption`.
77
115
  * Information about the encryption of the flow.
@@ -95,6 +133,40 @@ export type Encryption = {
95
133
  */
96
134
  SecretArn: string;
97
135
  };
136
+ /**
137
+ * Type definition for `AWS::MediaConnect::FlowOutput.Interface`.
138
+ * The VPC interface that you want to use for the media stream associated with the output.
139
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-interface.html}
140
+ */
141
+ export type Interface = {
142
+ /**
143
+ * The name of the VPC interface that you want to use for the media stream associated with the output.
144
+ */
145
+ Name: string;
146
+ };
147
+ /**
148
+ * Type definition for `AWS::MediaConnect::FlowOutput.MediaStreamOutputConfiguration`.
149
+ * The media stream that is associated with the output, and the parameters for that association.
150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-mediastreamoutputconfiguration.html}
151
+ */
152
+ export type MediaStreamOutputConfiguration = {
153
+ /**
154
+ * The media streams that you want to associate with the output.
155
+ */
156
+ DestinationConfigurations?: DestinationConfiguration[];
157
+ /**
158
+ * The format that will be used to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video streams on sources or outputs that use the CDI protocol, set the encoding name to raw. For video streams on sources or outputs that use the ST 2110 JPEG XS protocol, set the encoding name to jxsv.
159
+ */
160
+ EncodingName: "jxsv" | "raw" | "smpte291" | "pcm";
161
+ /**
162
+ * A collection of parameters that determine how MediaConnect will convert the content. These fields only apply to outputs on flows that have a CDI source.
163
+ */
164
+ EncodingParameters?: EncodingParameters;
165
+ /**
166
+ * A name that helps you distinguish one media stream from another.
167
+ */
168
+ MediaStreamName: string;
169
+ };
98
170
  /**
99
171
  * Type definition for `AWS::MediaConnect::FlowOutput.VpcInterfaceAttachment`.
100
172
  * The settings for attaching a VPC interface to an output.
@@ -14,7 +14,7 @@ export type MediaConnectFlowVpcInterfaceProperties = {
14
14
  */
15
15
  Name: string;
16
16
  /**
17
- * Role Arn MediaConnect can assumes to create ENIs in customer's account.
17
+ * Role Arn MediaConnect can assume to create ENIs in customer's account.
18
18
  */
19
19
  RoleArn: string;
20
20
  /**
@@ -0,0 +1,29 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::Neptune::EventSubscription
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html}
6
+ */
7
+ export type NeptuneEventSubscriptionProperties = {
8
+ Enabled?: boolean;
9
+ EventCategories?: string[];
10
+ SnsTopicArn?: string;
11
+ SourceIds?: string[];
12
+ SourceType?: string;
13
+ };
14
+ /**
15
+ * Attribute type definition for `AWS::Neptune::EventSubscription`.
16
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html#aws-resource-neptune-eventsubscription-return-values}
17
+ */
18
+ export type NeptuneEventSubscriptionAttributes = {
19
+ Id: string;
20
+ };
21
+ /**
22
+ * Resource Type definition for AWS::Neptune::EventSubscription
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html}
24
+ */
25
+ export declare class NeptuneEventSubscription extends $Resource<"AWS::Neptune::EventSubscription", NeptuneEventSubscriptionProperties, NeptuneEventSubscriptionAttributes> {
26
+ static readonly Type = "AWS::Neptune::EventSubscription";
27
+ constructor(logicalId: string, properties: NeptuneEventSubscriptionProperties, options?: $ResourceOptions);
28
+ }
29
+ //# sourceMappingURL=AWS-Neptune-EventSubscription.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::Neptune::EventSubscription
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html}
5
+ */
6
+ export class NeptuneEventSubscription extends $Resource {
7
+ static Type = "AWS::Neptune::EventSubscription";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NeptuneEventSubscription.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Neptune-EventSubscription.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.74",
3
+ "version": "0.1.76",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },