@awboost/cfn-resource-types 0.1.490 → 0.1.492

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.
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::DevOpsAgent::AgentSpace
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html}
5
+ */
6
+ export class DevOpsAgentAgentSpace extends $Resource {
7
+ static Type = "AWS::DevOpsAgent::AgentSpace";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DevOpsAgentAgentSpace.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-DevOpsAgent-AgentSpace.js.map
@@ -0,0 +1,450 @@
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::DevOpsAgent::Association defining how the AgentSpace interacts with external services like GitHub, Slack, AWS accounts, and others.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html}
6
+ */
7
+ export type DevOpsAgentAssociationProperties = {
8
+ /**
9
+ * The unique identifier of the AgentSpace
10
+ * @minLength `1`
11
+ * @maxLength `255`
12
+ */
13
+ AgentSpaceId: string;
14
+ /**
15
+ * The configuration that directs how AgentSpace interacts with the given service
16
+ */
17
+ Configuration: ServiceConfiguration;
18
+ /**
19
+ * The identifier for the associated service
20
+ * @minLength `1`
21
+ * @maxLength `255`
22
+ */
23
+ ServiceId: string;
24
+ };
25
+ /**
26
+ * Attribute type definition for `AWS::DevOpsAgent::Association`.
27
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html#aws-resource-devopsagent-association-return-values}
28
+ */
29
+ export type DevOpsAgentAssociationAttributes = {
30
+ /**
31
+ * The unique identifier of the association
32
+ * @minLength `1`
33
+ * @maxLength `255`
34
+ */
35
+ AssociationId: string;
36
+ /**
37
+ * The timestamp when the association was created
38
+ */
39
+ CreatedAt: string;
40
+ /**
41
+ * The timestamp when the association was last updated
42
+ */
43
+ UpdatedAt: string;
44
+ };
45
+ /**
46
+ * Type definition for `AWS::DevOpsAgent::Association.AWSConfiguration`.
47
+ * AWS association for 'monitor' account
48
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsconfiguration.html}
49
+ */
50
+ export type AWSConfiguration = {
51
+ /**
52
+ * AWS Account Id corresponding to provided resources
53
+ * @pattern `\d{12}`
54
+ */
55
+ AccountId: string;
56
+ /**
57
+ * Account Type 'monitor' for DevOpsAgent monitoring
58
+ */
59
+ AccountType: "monitor";
60
+ /**
61
+ * Role ARN to be assumed by DevOpsAgent to operate on behalf of customer
62
+ */
63
+ AssumableRoleArn: string;
64
+ /**
65
+ * List of AWS resources
66
+ */
67
+ Resources?: AWSResource[];
68
+ /**
69
+ * List of AWS tags as key-value pairs
70
+ */
71
+ Tags?: KeyValuePair[];
72
+ };
73
+ /**
74
+ * Type definition for `AWS::DevOpsAgent::Association.AWSResource`.
75
+ * AWS resource definition
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsresource.html}
77
+ */
78
+ export type AWSResource = {
79
+ /**
80
+ * The Amazon Resource Name (ARN) of the resource
81
+ */
82
+ ResourceArn: string;
83
+ /**
84
+ * Additional metadata for the resource
85
+ */
86
+ ResourceMetadata?: Record<string, any>;
87
+ /**
88
+ * Resource type
89
+ */
90
+ ResourceType?: "AWS::CloudFormation::Stack" | "AWS::ECR::Repository" | "AWS::S3::Bucket" | "AWS::S3::Object";
91
+ };
92
+ /**
93
+ * Type definition for `AWS::DevOpsAgent::Association.DynatraceConfiguration`.
94
+ * Dynatrace monitoring configuration
95
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-dynatraceconfiguration.html}
96
+ */
97
+ export type DynatraceConfiguration = {
98
+ /**
99
+ * When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
100
+ */
101
+ EnableWebhookUpdates?: boolean;
102
+ /**
103
+ * Dynatrace environment id
104
+ */
105
+ EnvId: string;
106
+ /**
107
+ * List of Dynatrace resources to monitor
108
+ */
109
+ Resources?: string[];
110
+ };
111
+ /**
112
+ * Type definition for `AWS::DevOpsAgent::Association.EventChannelConfiguration`.
113
+ * EventChannelconfiguration
114
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-eventchannelconfiguration.html}
115
+ */
116
+ export type EventChannelConfiguration = {
117
+ /**
118
+ * When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
119
+ */
120
+ EnableWebhookUpdates?: boolean;
121
+ };
122
+ /**
123
+ * Type definition for `AWS::DevOpsAgent::Association.GitHubConfiguration`.
124
+ * GitHub repository integration configuration
125
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-githubconfiguration.html}
126
+ */
127
+ export type GitHubConfiguration = {
128
+ /**
129
+ * Repository owner
130
+ */
131
+ Owner: string;
132
+ /**
133
+ * Type of repository owner
134
+ */
135
+ OwnerType: "organization" | "user";
136
+ /**
137
+ * Associated Github repo ID
138
+ */
139
+ RepoId: string;
140
+ /**
141
+ * Associated Github repo name
142
+ */
143
+ RepoName: string;
144
+ };
145
+ /**
146
+ * Type definition for `AWS::DevOpsAgent::Association.GitLabConfiguration`.
147
+ * GitLab project integration configuration
148
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-gitlabconfiguration.html}
149
+ */
150
+ export type GitLabConfiguration = {
151
+ /**
152
+ * When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
153
+ */
154
+ EnableWebhookUpdates?: boolean;
155
+ /**
156
+ * GitLab instance identifier
157
+ */
158
+ InstanceIdentifier?: string;
159
+ /**
160
+ * GitLab numeric project ID
161
+ */
162
+ ProjectId: string;
163
+ /**
164
+ * Full GitLab project path (e.g., namespace/project-name)
165
+ */
166
+ ProjectPath: string;
167
+ };
168
+ /**
169
+ * Type definition for `AWS::DevOpsAgent::Association.KeyValuePair`.
170
+ * A key-value pair for tags
171
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-keyvaluepair.html}
172
+ */
173
+ export type KeyValuePair = {
174
+ /**
175
+ * @minLength `1`
176
+ * @maxLength `512`
177
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
178
+ */
179
+ Key: string;
180
+ /**
181
+ * @minLength `1`
182
+ * @maxLength `512`
183
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
184
+ */
185
+ Value: string;
186
+ };
187
+ /**
188
+ * Type definition for `AWS::DevOpsAgent::Association.MCPServerConfiguration`.
189
+ * MCP server configuration
190
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html}
191
+ */
192
+ export type MCPServerConfiguration = {
193
+ /**
194
+ * The description of the MCP server
195
+ */
196
+ Description?: string;
197
+ /**
198
+ * When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
199
+ */
200
+ EnableWebhookUpdates?: boolean;
201
+ /**
202
+ * MCP server endpoint URL
203
+ * @pattern `^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$`
204
+ */
205
+ Endpoint: string;
206
+ /**
207
+ * The name of the MCP server
208
+ * @pattern `^[a-zA-Z0-9_-]+$`
209
+ */
210
+ Name: string;
211
+ /**
212
+ * List of MCP tools that can be used with the association
213
+ */
214
+ Tools: string[];
215
+ };
216
+ /**
217
+ * Type definition for `AWS::DevOpsAgent::Association.MCPServerDatadogConfiguration`.
218
+ * Datadog MCP server configuration
219
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverdatadogconfiguration.html}
220
+ */
221
+ export type MCPServerDatadogConfiguration = {
222
+ /**
223
+ * The description of the MCP server
224
+ */
225
+ Description?: string;
226
+ /**
227
+ * When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
228
+ */
229
+ EnableWebhookUpdates?: boolean;
230
+ /**
231
+ * MCP server endpoint URL
232
+ * @pattern `^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$`
233
+ */
234
+ Endpoint: string;
235
+ /**
236
+ * The name of the MCP server
237
+ * @pattern `^[a-zA-Z0-9_-]+$`
238
+ */
239
+ Name: string;
240
+ };
241
+ /**
242
+ * Type definition for `AWS::DevOpsAgent::Association.MCPServerNewRelicConfiguration`.
243
+ * NewRelic MCP server configuration
244
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpservernewrelicconfiguration.html}
245
+ */
246
+ export type MCPServerNewRelicConfiguration = {
247
+ /**
248
+ * New Relic Account ID
249
+ * @minLength `6`
250
+ * @pattern `^[0-9]+$`
251
+ */
252
+ AccountId: string;
253
+ /**
254
+ * MCP server endpoint URL (e.g., https://mcp.newrelic.com/mcp/)
255
+ * @pattern `^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$`
256
+ */
257
+ Endpoint: string;
258
+ };
259
+ /**
260
+ * Type definition for `AWS::DevOpsAgent::Association.MCPServerSplunkConfiguration`.
261
+ * Splunk MCP server configuration
262
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserversplunkconfiguration.html}
263
+ */
264
+ export type MCPServerSplunkConfiguration = {
265
+ /**
266
+ * The description of the MCP server
267
+ */
268
+ Description?: string;
269
+ /**
270
+ * When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
271
+ */
272
+ EnableWebhookUpdates?: boolean;
273
+ /**
274
+ * MCP server endpoint URL
275
+ * @pattern `^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$`
276
+ */
277
+ Endpoint: string;
278
+ /**
279
+ * The name of the MCP server
280
+ * @pattern `^[a-zA-Z0-9_-]+$`
281
+ */
282
+ Name: string;
283
+ };
284
+ /**
285
+ * Type definition for `AWS::DevOpsAgent::Association.ServiceConfiguration`.
286
+ * The configuration that directs how AgentSpace interacts with the given service
287
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-serviceconfiguration.html}
288
+ */
289
+ export type ServiceConfiguration = {
290
+ /**
291
+ * AWS association for 'source' account
292
+ */
293
+ SourceAws: SourceAwsConfiguration;
294
+ } | {
295
+ /**
296
+ * AWS association for 'monitor' account
297
+ */
298
+ Aws: AWSConfiguration;
299
+ } | {
300
+ /**
301
+ * GitHub repository integration configuration
302
+ */
303
+ GitHub: GitHubConfiguration;
304
+ } | {
305
+ /**
306
+ * Slack workspace integration configuration
307
+ */
308
+ Slack: SlackConfiguration;
309
+ } | {
310
+ /**
311
+ * Dynatrace monitoring configuration
312
+ */
313
+ Dynatrace: DynatraceConfiguration;
314
+ } | {
315
+ /**
316
+ * ServiceNow integration configuration
317
+ */
318
+ ServiceNow: ServiceNowConfiguration;
319
+ } | {
320
+ /**
321
+ * MCP server configuration
322
+ */
323
+ MCPServer: MCPServerConfiguration;
324
+ } | {
325
+ /**
326
+ * GitLab project integration configuration
327
+ */
328
+ GitLab: GitLabConfiguration;
329
+ } | {
330
+ /**
331
+ * Datadog MCP server configuration
332
+ */
333
+ MCPServerDatadog: MCPServerDatadogConfiguration;
334
+ } | {
335
+ /**
336
+ * Splunk MCP server configuration
337
+ */
338
+ MCPServerSplunk: MCPServerSplunkConfiguration;
339
+ } | {
340
+ /**
341
+ * NewRelic MCP server configuration
342
+ */
343
+ MCPServerNewRelic: MCPServerNewRelicConfiguration;
344
+ } | {
345
+ /**
346
+ * EventChannelconfiguration
347
+ */
348
+ EventChannel: EventChannelConfiguration;
349
+ };
350
+ /**
351
+ * Type definition for `AWS::DevOpsAgent::Association.ServiceNowConfiguration`.
352
+ * ServiceNow integration configuration
353
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-servicenowconfiguration.html}
354
+ */
355
+ export type ServiceNowConfiguration = {
356
+ /**
357
+ * When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
358
+ */
359
+ EnableWebhookUpdates?: boolean;
360
+ /**
361
+ * ServiceNow instance ID
362
+ */
363
+ InstanceId?: string;
364
+ };
365
+ /**
366
+ * Type definition for `AWS::DevOpsAgent::Association.SlackChannel`.
367
+ * Slack channel configuration
368
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackchannel.html}
369
+ */
370
+ export type SlackChannel = {
371
+ /**
372
+ * Slack channel ID
373
+ * @minLength `8`
374
+ * @maxLength `16`
375
+ * @pattern `^[CGD][A-Z0-9]+$`
376
+ */
377
+ ChannelId: string;
378
+ /**
379
+ * Slack channel name
380
+ */
381
+ ChannelName?: string;
382
+ };
383
+ /**
384
+ * Type definition for `AWS::DevOpsAgent::Association.SlackConfiguration`.
385
+ * Slack workspace integration configuration
386
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html}
387
+ */
388
+ export type SlackConfiguration = {
389
+ /**
390
+ * Transmission targets for agent notifications
391
+ */
392
+ TransmissionTarget: SlackTransmissionTarget;
393
+ /**
394
+ * Associated Slack workspace ID
395
+ * @pattern `^[TE][A-Z0-9]+$`
396
+ */
397
+ WorkspaceId: string;
398
+ /**
399
+ * Associated Slack workspace name
400
+ */
401
+ WorkspaceName: string;
402
+ };
403
+ /**
404
+ * Type definition for `AWS::DevOpsAgent::Association.SlackTransmissionTarget`.
405
+ * Transmission targets for agent notifications
406
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slacktransmissiontarget.html}
407
+ */
408
+ export type SlackTransmissionTarget = {
409
+ /**
410
+ * Destination for IncidentResponse agent.
411
+ */
412
+ IncidentResponseTarget: SlackChannel;
413
+ };
414
+ /**
415
+ * Type definition for `AWS::DevOpsAgent::Association.SourceAwsConfiguration`.
416
+ * AWS association for 'source' account
417
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-sourceawsconfiguration.html}
418
+ */
419
+ export type SourceAwsConfiguration = {
420
+ /**
421
+ * AWS Account Id corresponding to provided resources
422
+ * @pattern `\d{12}`
423
+ */
424
+ AccountId: string;
425
+ /**
426
+ * Account Type 'source' for DevOpsAgent monitoring
427
+ */
428
+ AccountType: "source";
429
+ /**
430
+ * Role ARN to be assumed by DevOpsAgent to operate on behalf of customer
431
+ */
432
+ AssumableRoleArn: string;
433
+ /**
434
+ * List of AWS resources
435
+ */
436
+ Resources?: AWSResource[];
437
+ /**
438
+ * List of AWS tags as key-value pairs
439
+ */
440
+ Tags?: KeyValuePair[];
441
+ };
442
+ /**
443
+ * Resource Type definition for AWS::DevOpsAgent::Association defining how the AgentSpace interacts with external services like GitHub, Slack, AWS accounts, and others.
444
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html}
445
+ */
446
+ export declare class DevOpsAgentAssociation extends $Resource<"AWS::DevOpsAgent::Association", DevOpsAgentAssociationProperties, DevOpsAgentAssociationAttributes> {
447
+ static readonly Type = "AWS::DevOpsAgent::Association";
448
+ constructor(logicalId: string, properties: DevOpsAgentAssociationProperties, options?: $ResourceOptions);
449
+ }
450
+ //# sourceMappingURL=AWS-DevOpsAgent-Association.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::DevOpsAgent::Association defining how the AgentSpace interacts with external services like GitHub, Slack, AWS accounts, and others.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html}
5
+ */
6
+ export class DevOpsAgentAssociation extends $Resource {
7
+ static Type = "AWS::DevOpsAgent::Association";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DevOpsAgentAssociation.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-DevOpsAgent-Association.js.map
@@ -39,6 +39,7 @@ export type LambdaFunctionProperties = {
39
39
  * @maxLength `256`
40
40
  */
41
41
  Description?: string;
42
+ DurableConfig?: DurableConfig;
42
43
  /**
43
44
  * Environment variables that are accessible from function code during execution.
44
45
  */
@@ -231,6 +232,24 @@ export type DeadLetterConfig = {
231
232
  */
232
233
  TargetArn?: string;
233
234
  };
235
+ /**
236
+ * Type definition for `AWS::Lambda::Function.DurableConfig`.
237
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-durableconfig.html}
238
+ */
239
+ export type DurableConfig = {
240
+ /**
241
+ * The amount of time (in seconds) that Lambda allows a durable function to run before stopping it. The maximum is one 366-day year or 31,622,400 seconds.
242
+ * @min `1`
243
+ * @max `31622400`
244
+ */
245
+ ExecutionTimeout: number;
246
+ /**
247
+ * The number of days after a durable execution is closed that Lambda retains its history, from one to 90 days. The default is 14 days.
248
+ * @min `1`
249
+ * @max `90`
250
+ */
251
+ RetentionPeriodInDays?: number;
252
+ };
234
253
  /**
235
254
  * Type definition for `AWS::Lambda::Function.Environment`.
236
255
  * A function's environment variable settings. You can use environment variables to adjust your function's behavior without updating code. An environment variable is a pair of strings that are stored in a function's version-specific configuration.
@@ -0,0 +1,118 @@
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::ObservabilityAdmin::S3TableIntegration`.
5
+ * Resource Type definition for a CloudWatch Observability Admin S3 Table Integration.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html}
7
+ */
8
+ export type ObservabilityAdminS3TableIntegrationProperties = {
9
+ /**
10
+ * Encryption configuration for the S3 Table Integration
11
+ */
12
+ Encryption: EncryptionConfig;
13
+ /**
14
+ * The CloudWatch Logs data sources to associate with the S3 Table Integration
15
+ */
16
+ LogSources?: LogSource[];
17
+ /**
18
+ * The ARN of the role used to access the S3 Table Integration
19
+ * @minLength `1`
20
+ * @maxLength `1011`
21
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
22
+ */
23
+ RoleArn: string;
24
+ /**
25
+ * An array of key-value pairs to apply to this resource
26
+ */
27
+ Tags?: Tag[];
28
+ };
29
+ /**
30
+ * Attribute type definition for `AWS::ObservabilityAdmin::S3TableIntegration`.
31
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html#aws-resource-observabilityadmin-s3tableintegration-return-values}
32
+ */
33
+ export type ObservabilityAdminS3TableIntegrationAttributes = {
34
+ /**
35
+ * The ARN of the S3 Table Integration
36
+ * @minLength `1`
37
+ * @maxLength `1011`
38
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
39
+ */
40
+ Arn: string;
41
+ /**
42
+ * The CloudWatch Logs data sources to associate with the S3 Table Integration
43
+ */
44
+ LogSources: {
45
+ /**
46
+ * The ID of the CloudWatch Logs data source association
47
+ * @minLength `1`
48
+ * @maxLength `256`
49
+ */
50
+ Identifier: string;
51
+ }[];
52
+ };
53
+ /**
54
+ * Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.EncryptionConfig`.
55
+ * Encryption configuration for the S3 Table Integration
56
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.html}
57
+ */
58
+ export type EncryptionConfig = {
59
+ /**
60
+ * The ARN of the KMS key used to encrypt the S3 Table Integration
61
+ * @minLength `1`
62
+ * @maxLength `1011`
63
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
64
+ */
65
+ KmsKeyArn?: string;
66
+ /**
67
+ * The server-side encryption algorithm used to encrypt the S3 Table(s) data
68
+ */
69
+ SseAlgorithm: "AES256" | "aws:kms";
70
+ };
71
+ /**
72
+ * Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.LogSource`.
73
+ * CloudWatch Logs data source to associate with the S3 Table Integration
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.html}
75
+ */
76
+ export type LogSource = {
77
+ /**
78
+ * The name of the CloudWatch Logs data source
79
+ * @minLength `1`
80
+ * @maxLength `256`
81
+ */
82
+ Name: string;
83
+ /**
84
+ * The type of the CloudWatch Logs data source
85
+ * @minLength `1`
86
+ * @maxLength `256`
87
+ */
88
+ Type: string;
89
+ };
90
+ /**
91
+ * Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.Tag`.
92
+ * A key-value pair to associate with a resource
93
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-tag.html}
94
+ */
95
+ export type Tag = {
96
+ /**
97
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
98
+ * @minLength `1`
99
+ * @maxLength `128`
100
+ */
101
+ Key: string;
102
+ /**
103
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
104
+ * @minLength `0`
105
+ * @maxLength `256`
106
+ */
107
+ Value: string;
108
+ };
109
+ /**
110
+ * Resource type definition for `AWS::ObservabilityAdmin::S3TableIntegration`.
111
+ * Resource Type definition for a CloudWatch Observability Admin S3 Table Integration.
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html}
113
+ */
114
+ export declare class ObservabilityAdminS3TableIntegration extends $Resource<"AWS::ObservabilityAdmin::S3TableIntegration", ObservabilityAdminS3TableIntegrationProperties, ObservabilityAdminS3TableIntegrationAttributes> {
115
+ static readonly Type = "AWS::ObservabilityAdmin::S3TableIntegration";
116
+ constructor(logicalId: string, properties: ObservabilityAdminS3TableIntegrationProperties, options?: $ResourceOptions);
117
+ }
118
+ //# sourceMappingURL=AWS-ObservabilityAdmin-S3TableIntegration.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::ObservabilityAdmin::S3TableIntegration`.
4
+ * Resource Type definition for a CloudWatch Observability Admin S3 Table Integration.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html}
6
+ */
7
+ export class ObservabilityAdminS3TableIntegration extends $Resource {
8
+ static Type = "AWS::ObservabilityAdmin::S3TableIntegration";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, ObservabilityAdminS3TableIntegration.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-ObservabilityAdmin-S3TableIntegration.js.map