@propulsionworks/cloudformation 0.1.37 → 0.1.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/exports/resources.generated/aws-connect-datatable.d.ts +82 -0
- package/out/exports/resources.generated/aws-connect-datatableattribute.d.ts +84 -0
- package/out/exports/resources.generated/aws-connect-datatablerecord.d.ts +55 -0
- package/out/exports/resources.generated/aws-connect-evaluationform.d.ts +120 -1
- package/out/exports/resources.generated/aws-devopsagent-agentspace.d.ts +56 -0
- package/out/exports/resources.generated/aws-devopsagent-association.d.ts +444 -0
- package/out/exports/resources.generated/aws-gamelift-script.d.ts +1 -1
- package/out/exports/resources.generated/aws-glue-identitycenterconfiguration.d.ts +49 -0
- package/out/exports/resources.generated/aws-iotfleethub-application.d.ts +0 -15
- package/out/exports/resources.generated/aws-lambda-capacityprovider.d.ts +5 -1
- package/out/exports/resources.generated/aws-lambda-function.d.ts +24 -0
- package/out/exports/resources.generated/aws-lambda-version.d.ts +1 -1
- package/out/exports/resources.generated/aws-medialive-channel.d.ts +12 -0
- package/out/exports/resources.generated/aws-medialive-input.d.ts +30 -0
- package/out/exports/resources.generated/aws-observabilityadmin-s3tableintegration.d.ts +88 -0
- package/out/exports/resources.generated/aws-observabilityadmin-telemetrypipelines.d.ts +66 -0
- package/out/exports/resources.generated/aws-s3-accessgrantslocation.d.ts +2 -2
- package/out/exports/resources.generated/aws-s3-storagelens.d.ts +68 -0
- package/out/exports/resources.generated/aws-s3tables-table.d.ts +16 -0
- package/out/exports/resources.generated/aws-s3tables-tablebucket.d.ts +16 -0
- package/out/exports/resources.generated/aws-securityhub-connectorv2.d.ts +137 -0
- package/package.json +1 -1
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
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 type DevOpsAgentAssociation = ResourceDefinitionWithAttributes<"AWS::DevOpsAgent::Association", DevOpsAgentAssociationProps, DevOpsAgentAssociationAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::DevOpsAgent::Association defining how the AgentSpace interacts with external services like GitHub, Slack, AWS accounts, and others.
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html}
|
|
10
|
+
*/
|
|
11
|
+
export type DevOpsAgentAssociationProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The unique identifier of the AgentSpace
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html#cfn-devopsagent-association-agentspaceid}
|
|
15
|
+
*/
|
|
16
|
+
AgentSpaceId: string;
|
|
17
|
+
/**
|
|
18
|
+
* The configuration that directs how AgentSpace interacts with the given service
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html#cfn-devopsagent-association-configuration}
|
|
20
|
+
*/
|
|
21
|
+
Configuration: ServiceConfiguration;
|
|
22
|
+
/**
|
|
23
|
+
* The identifier for the associated service. For SourceAws and Aws configurations, this must be 'aws'. For all other service types, this is a UUID generated from the RegisterService command
|
|
24
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html#cfn-devopsagent-association-serviceid}
|
|
25
|
+
*/
|
|
26
|
+
ServiceId: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html#aws-resource-devopsagent-association-return-values}
|
|
30
|
+
*/
|
|
31
|
+
export type DevOpsAgentAssociationAttribs = {
|
|
32
|
+
/**
|
|
33
|
+
* The unique identifier of the association
|
|
34
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html#cfn-devopsagent-association-associationid}
|
|
35
|
+
*/
|
|
36
|
+
AssociationId: string;
|
|
37
|
+
/**
|
|
38
|
+
* The timestamp when the association was created
|
|
39
|
+
* @format date-time
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html#cfn-devopsagent-association-createdat}
|
|
41
|
+
*/
|
|
42
|
+
CreatedAt: string;
|
|
43
|
+
/**
|
|
44
|
+
* The timestamp when the association was last updated
|
|
45
|
+
* @format date-time
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html#cfn-devopsagent-association-updatedat}
|
|
47
|
+
*/
|
|
48
|
+
UpdatedAt: string;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* AWS association for 'monitor' account
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsconfiguration.html}
|
|
53
|
+
*/
|
|
54
|
+
export type AWSConfiguration = {
|
|
55
|
+
/**
|
|
56
|
+
* AWS Account Id corresponding to provided resources
|
|
57
|
+
* @pattern \d{12}
|
|
58
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsconfiguration.html#cfn-devopsagent-association-awsconfiguration-accountid}
|
|
59
|
+
*/
|
|
60
|
+
AccountId: string;
|
|
61
|
+
/**
|
|
62
|
+
* Account Type 'monitor' for DevOpsAgent monitoring
|
|
63
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsconfiguration.html#cfn-devopsagent-association-awsconfiguration-accounttype}
|
|
64
|
+
*/
|
|
65
|
+
AccountType: "monitor";
|
|
66
|
+
/**
|
|
67
|
+
* Role ARN to be assumed by DevOpsAgent to operate on behalf of customer
|
|
68
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsconfiguration.html#cfn-devopsagent-association-awsconfiguration-assumablerolearn}
|
|
69
|
+
*/
|
|
70
|
+
AssumableRoleArn: string;
|
|
71
|
+
/**
|
|
72
|
+
* List of AWS resources
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsconfiguration.html#cfn-devopsagent-association-awsconfiguration-resources}
|
|
74
|
+
*/
|
|
75
|
+
Resources?: AWSResource[] | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* List of AWS tags as key-value pairs
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsconfiguration.html#cfn-devopsagent-association-awsconfiguration-tags}
|
|
79
|
+
*/
|
|
80
|
+
Tags?: KeyValuePair[] | undefined;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* AWS resource definition
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsresource.html}
|
|
85
|
+
*/
|
|
86
|
+
export type AWSResource = {
|
|
87
|
+
/**
|
|
88
|
+
* The Amazon Resource Name (ARN) of the resource
|
|
89
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsresource.html#cfn-devopsagent-association-awsresource-resourcearn}
|
|
90
|
+
*/
|
|
91
|
+
ResourceArn: string;
|
|
92
|
+
/**
|
|
93
|
+
* Additional metadata for the resource
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsresource.html#cfn-devopsagent-association-awsresource-resourcemetadata}
|
|
95
|
+
*/
|
|
96
|
+
ResourceMetadata?: Record<string, unknown> | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* Resource type
|
|
99
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsresource.html#cfn-devopsagent-association-awsresource-resourcetype}
|
|
100
|
+
*/
|
|
101
|
+
ResourceType?: "AWS::CloudFormation::Stack" | "AWS::ECR::Repository" | "AWS::S3::Bucket" | "AWS::S3::Object" | undefined;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* Dynatrace monitoring configuration
|
|
105
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-dynatraceconfiguration.html}
|
|
106
|
+
*/
|
|
107
|
+
export type DynatraceConfiguration = {
|
|
108
|
+
/**
|
|
109
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-dynatraceconfiguration.html#cfn-devopsagent-association-dynatraceconfiguration-enablewebhookupdates}
|
|
111
|
+
*/
|
|
112
|
+
EnableWebhookUpdates?: boolean | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* Dynatrace environment id
|
|
115
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-dynatraceconfiguration.html#cfn-devopsagent-association-dynatraceconfiguration-envid}
|
|
116
|
+
*/
|
|
117
|
+
EnvId: string;
|
|
118
|
+
/**
|
|
119
|
+
* List of Dynatrace resources to monitor
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-dynatraceconfiguration.html#cfn-devopsagent-association-dynatraceconfiguration-resources}
|
|
121
|
+
*/
|
|
122
|
+
Resources?: string[] | undefined;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* EventChannelconfiguration
|
|
126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-eventchannelconfiguration.html}
|
|
127
|
+
*/
|
|
128
|
+
export type EventChannelConfiguration = {
|
|
129
|
+
/**
|
|
130
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
131
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-eventchannelconfiguration.html#cfn-devopsagent-association-eventchannelconfiguration-enablewebhookupdates}
|
|
132
|
+
*/
|
|
133
|
+
EnableWebhookUpdates?: boolean | undefined;
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* GitHub repository integration configuration
|
|
137
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-githubconfiguration.html}
|
|
138
|
+
*/
|
|
139
|
+
export type GitHubConfiguration = {
|
|
140
|
+
/**
|
|
141
|
+
* Repository owner
|
|
142
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-githubconfiguration.html#cfn-devopsagent-association-githubconfiguration-owner}
|
|
143
|
+
*/
|
|
144
|
+
Owner: string;
|
|
145
|
+
/**
|
|
146
|
+
* Type of repository owner
|
|
147
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-githubconfiguration.html#cfn-devopsagent-association-githubconfiguration-ownertype}
|
|
148
|
+
*/
|
|
149
|
+
OwnerType: "organization" | "user";
|
|
150
|
+
/**
|
|
151
|
+
* Associated Github repo ID
|
|
152
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-githubconfiguration.html#cfn-devopsagent-association-githubconfiguration-repoid}
|
|
153
|
+
*/
|
|
154
|
+
RepoId: string;
|
|
155
|
+
/**
|
|
156
|
+
* Associated Github repo name
|
|
157
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-githubconfiguration.html#cfn-devopsagent-association-githubconfiguration-reponame}
|
|
158
|
+
*/
|
|
159
|
+
RepoName: string;
|
|
160
|
+
};
|
|
161
|
+
/**
|
|
162
|
+
* GitLab project integration configuration
|
|
163
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-gitlabconfiguration.html}
|
|
164
|
+
*/
|
|
165
|
+
export type GitLabConfiguration = {
|
|
166
|
+
/**
|
|
167
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
168
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-gitlabconfiguration.html#cfn-devopsagent-association-gitlabconfiguration-enablewebhookupdates}
|
|
169
|
+
*/
|
|
170
|
+
EnableWebhookUpdates?: boolean | undefined;
|
|
171
|
+
/**
|
|
172
|
+
* GitLab instance identifier
|
|
173
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-gitlabconfiguration.html#cfn-devopsagent-association-gitlabconfiguration-instanceidentifier}
|
|
174
|
+
*/
|
|
175
|
+
InstanceIdentifier?: string | undefined;
|
|
176
|
+
/**
|
|
177
|
+
* GitLab numeric project ID
|
|
178
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-gitlabconfiguration.html#cfn-devopsagent-association-gitlabconfiguration-projectid}
|
|
179
|
+
*/
|
|
180
|
+
ProjectId: string;
|
|
181
|
+
/**
|
|
182
|
+
* Full GitLab project path (e.g., namespace/project-name)
|
|
183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-gitlabconfiguration.html#cfn-devopsagent-association-gitlabconfiguration-projectpath}
|
|
184
|
+
*/
|
|
185
|
+
ProjectPath: string;
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* A key-value pair for tags
|
|
189
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-keyvaluepair.html}
|
|
190
|
+
*/
|
|
191
|
+
export type KeyValuePair = {
|
|
192
|
+
/**
|
|
193
|
+
* @minLength 1
|
|
194
|
+
* @maxLength 512
|
|
195
|
+
* @pattern ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$
|
|
196
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-keyvaluepair.html#cfn-devopsagent-association-keyvaluepair-key}
|
|
197
|
+
*/
|
|
198
|
+
Key: string;
|
|
199
|
+
/**
|
|
200
|
+
* @minLength 1
|
|
201
|
+
* @maxLength 512
|
|
202
|
+
* @pattern ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$
|
|
203
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-keyvaluepair.html#cfn-devopsagent-association-keyvaluepair-value}
|
|
204
|
+
*/
|
|
205
|
+
Value: string;
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* MCP server configuration
|
|
209
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html}
|
|
210
|
+
*/
|
|
211
|
+
export type MCPServerConfiguration = {
|
|
212
|
+
/**
|
|
213
|
+
* The description of the MCP server
|
|
214
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html#cfn-devopsagent-association-mcpserverconfiguration-description}
|
|
215
|
+
*/
|
|
216
|
+
Description?: string | undefined;
|
|
217
|
+
/**
|
|
218
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
219
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html#cfn-devopsagent-association-mcpserverconfiguration-enablewebhookupdates}
|
|
220
|
+
*/
|
|
221
|
+
EnableWebhookUpdates?: boolean | undefined;
|
|
222
|
+
/**
|
|
223
|
+
* MCP server endpoint URL
|
|
224
|
+
* @pattern ^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$
|
|
225
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html#cfn-devopsagent-association-mcpserverconfiguration-endpoint}
|
|
226
|
+
*/
|
|
227
|
+
Endpoint: string;
|
|
228
|
+
/**
|
|
229
|
+
* The name of the MCP server
|
|
230
|
+
* @pattern ^[a-zA-Z0-9_-]+$
|
|
231
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html#cfn-devopsagent-association-mcpserverconfiguration-name}
|
|
232
|
+
*/
|
|
233
|
+
Name: string;
|
|
234
|
+
/**
|
|
235
|
+
* List of MCP tools that can be used with the association
|
|
236
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html#cfn-devopsagent-association-mcpserverconfiguration-tools}
|
|
237
|
+
*/
|
|
238
|
+
Tools: string[];
|
|
239
|
+
};
|
|
240
|
+
/**
|
|
241
|
+
* Datadog MCP server configuration
|
|
242
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverdatadogconfiguration.html}
|
|
243
|
+
*/
|
|
244
|
+
export type MCPServerDatadogConfiguration = {
|
|
245
|
+
/**
|
|
246
|
+
* The description of the MCP server
|
|
247
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverdatadogconfiguration.html#cfn-devopsagent-association-mcpserverdatadogconfiguration-description}
|
|
248
|
+
*/
|
|
249
|
+
Description?: string | undefined;
|
|
250
|
+
/**
|
|
251
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
252
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverdatadogconfiguration.html#cfn-devopsagent-association-mcpserverdatadogconfiguration-enablewebhookupdates}
|
|
253
|
+
*/
|
|
254
|
+
EnableWebhookUpdates?: boolean | undefined;
|
|
255
|
+
/**
|
|
256
|
+
* MCP server endpoint URL
|
|
257
|
+
* @pattern ^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$
|
|
258
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverdatadogconfiguration.html#cfn-devopsagent-association-mcpserverdatadogconfiguration-endpoint}
|
|
259
|
+
*/
|
|
260
|
+
Endpoint: string;
|
|
261
|
+
/**
|
|
262
|
+
* The name of the MCP server
|
|
263
|
+
* @pattern ^[a-zA-Z0-9_-]+$
|
|
264
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverdatadogconfiguration.html#cfn-devopsagent-association-mcpserverdatadogconfiguration-name}
|
|
265
|
+
*/
|
|
266
|
+
Name: string;
|
|
267
|
+
};
|
|
268
|
+
/**
|
|
269
|
+
* NewRelic MCP server configuration
|
|
270
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpservernewrelicconfiguration.html}
|
|
271
|
+
*/
|
|
272
|
+
export type MCPServerNewRelicConfiguration = {
|
|
273
|
+
/**
|
|
274
|
+
* New Relic Account ID
|
|
275
|
+
* @minLength 6
|
|
276
|
+
* @pattern ^[0-9]+$
|
|
277
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpservernewrelicconfiguration.html#cfn-devopsagent-association-mcpservernewrelicconfiguration-accountid}
|
|
278
|
+
*/
|
|
279
|
+
AccountId: string;
|
|
280
|
+
/**
|
|
281
|
+
* MCP server endpoint URL (e.g., https://mcp.newrelic.com/mcp/)
|
|
282
|
+
* @pattern ^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$
|
|
283
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpservernewrelicconfiguration.html#cfn-devopsagent-association-mcpservernewrelicconfiguration-endpoint}
|
|
284
|
+
*/
|
|
285
|
+
Endpoint: string;
|
|
286
|
+
};
|
|
287
|
+
/**
|
|
288
|
+
* Splunk MCP server configuration
|
|
289
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserversplunkconfiguration.html}
|
|
290
|
+
*/
|
|
291
|
+
export type MCPServerSplunkConfiguration = {
|
|
292
|
+
/**
|
|
293
|
+
* The description of the MCP server
|
|
294
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserversplunkconfiguration.html#cfn-devopsagent-association-mcpserversplunkconfiguration-description}
|
|
295
|
+
*/
|
|
296
|
+
Description?: string | undefined;
|
|
297
|
+
/**
|
|
298
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
299
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserversplunkconfiguration.html#cfn-devopsagent-association-mcpserversplunkconfiguration-enablewebhookupdates}
|
|
300
|
+
*/
|
|
301
|
+
EnableWebhookUpdates?: boolean | undefined;
|
|
302
|
+
/**
|
|
303
|
+
* MCP server endpoint URL
|
|
304
|
+
* @pattern ^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$
|
|
305
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserversplunkconfiguration.html#cfn-devopsagent-association-mcpserversplunkconfiguration-endpoint}
|
|
306
|
+
*/
|
|
307
|
+
Endpoint: string;
|
|
308
|
+
/**
|
|
309
|
+
* The name of the MCP server
|
|
310
|
+
* @pattern ^[a-zA-Z0-9_-]+$
|
|
311
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserversplunkconfiguration.html#cfn-devopsagent-association-mcpserversplunkconfiguration-name}
|
|
312
|
+
*/
|
|
313
|
+
Name: string;
|
|
314
|
+
};
|
|
315
|
+
/**
|
|
316
|
+
* The configuration that directs how AgentSpace interacts with the given service
|
|
317
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-serviceconfiguration.html}
|
|
318
|
+
*/
|
|
319
|
+
export type ServiceConfiguration = {
|
|
320
|
+
SourceAws: SourceAwsConfiguration;
|
|
321
|
+
} | {
|
|
322
|
+
Aws: AWSConfiguration;
|
|
323
|
+
} | {
|
|
324
|
+
GitHub: GitHubConfiguration;
|
|
325
|
+
} | {
|
|
326
|
+
Slack: SlackConfiguration;
|
|
327
|
+
} | {
|
|
328
|
+
Dynatrace: DynatraceConfiguration;
|
|
329
|
+
} | {
|
|
330
|
+
ServiceNow: ServiceNowConfiguration;
|
|
331
|
+
} | {
|
|
332
|
+
MCPServer: MCPServerConfiguration;
|
|
333
|
+
} | {
|
|
334
|
+
GitLab: GitLabConfiguration;
|
|
335
|
+
} | {
|
|
336
|
+
MCPServerDatadog: MCPServerDatadogConfiguration;
|
|
337
|
+
} | {
|
|
338
|
+
MCPServerSplunk: MCPServerSplunkConfiguration;
|
|
339
|
+
} | {
|
|
340
|
+
MCPServerNewRelic: MCPServerNewRelicConfiguration;
|
|
341
|
+
} | {
|
|
342
|
+
EventChannel: EventChannelConfiguration;
|
|
343
|
+
};
|
|
344
|
+
/**
|
|
345
|
+
* ServiceNow integration configuration
|
|
346
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-servicenowconfiguration.html}
|
|
347
|
+
*/
|
|
348
|
+
export type ServiceNowConfiguration = {
|
|
349
|
+
/**
|
|
350
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
351
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-servicenowconfiguration.html#cfn-devopsagent-association-servicenowconfiguration-enablewebhookupdates}
|
|
352
|
+
*/
|
|
353
|
+
EnableWebhookUpdates?: boolean | undefined;
|
|
354
|
+
/**
|
|
355
|
+
* ServiceNow instance ID
|
|
356
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-servicenowconfiguration.html#cfn-devopsagent-association-servicenowconfiguration-instanceid}
|
|
357
|
+
*/
|
|
358
|
+
InstanceId?: string | undefined;
|
|
359
|
+
};
|
|
360
|
+
/**
|
|
361
|
+
* Slack channel configuration
|
|
362
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackchannel.html}
|
|
363
|
+
*/
|
|
364
|
+
export type SlackChannel = {
|
|
365
|
+
/**
|
|
366
|
+
* Slack channel ID
|
|
367
|
+
* @minLength 8
|
|
368
|
+
* @maxLength 16
|
|
369
|
+
* @pattern ^[CGD][A-Z0-9]+$
|
|
370
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackchannel.html#cfn-devopsagent-association-slackchannel-channelid}
|
|
371
|
+
*/
|
|
372
|
+
ChannelId: string;
|
|
373
|
+
/**
|
|
374
|
+
* Slack channel name
|
|
375
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackchannel.html#cfn-devopsagent-association-slackchannel-channelname}
|
|
376
|
+
*/
|
|
377
|
+
ChannelName?: string | undefined;
|
|
378
|
+
};
|
|
379
|
+
/**
|
|
380
|
+
* Slack workspace integration configuration
|
|
381
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html}
|
|
382
|
+
*/
|
|
383
|
+
export type SlackConfiguration = {
|
|
384
|
+
/**
|
|
385
|
+
* Transmission targets for agent notifications
|
|
386
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html#cfn-devopsagent-association-slackconfiguration-transmissiontarget}
|
|
387
|
+
*/
|
|
388
|
+
TransmissionTarget: SlackTransmissionTarget;
|
|
389
|
+
/**
|
|
390
|
+
* Associated Slack workspace ID
|
|
391
|
+
* @pattern ^[TE][A-Z0-9]+$
|
|
392
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html#cfn-devopsagent-association-slackconfiguration-workspaceid}
|
|
393
|
+
*/
|
|
394
|
+
WorkspaceId: string;
|
|
395
|
+
/**
|
|
396
|
+
* Associated Slack workspace name
|
|
397
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html#cfn-devopsagent-association-slackconfiguration-workspacename}
|
|
398
|
+
*/
|
|
399
|
+
WorkspaceName: string;
|
|
400
|
+
};
|
|
401
|
+
/**
|
|
402
|
+
* Transmission targets for agent notifications
|
|
403
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slacktransmissiontarget.html}
|
|
404
|
+
*/
|
|
405
|
+
export type SlackTransmissionTarget = {
|
|
406
|
+
/**
|
|
407
|
+
* Slack channel configuration
|
|
408
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slacktransmissiontarget.html#cfn-devopsagent-association-slacktransmissiontarget-incidentresponsetarget}
|
|
409
|
+
*/
|
|
410
|
+
IncidentResponseTarget: SlackChannel;
|
|
411
|
+
};
|
|
412
|
+
/**
|
|
413
|
+
* AWS association for 'source' account
|
|
414
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-sourceawsconfiguration.html}
|
|
415
|
+
*/
|
|
416
|
+
export type SourceAwsConfiguration = {
|
|
417
|
+
/**
|
|
418
|
+
* AWS Account Id corresponding to provided resources
|
|
419
|
+
* @pattern \d{12}
|
|
420
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-sourceawsconfiguration.html#cfn-devopsagent-association-sourceawsconfiguration-accountid}
|
|
421
|
+
*/
|
|
422
|
+
AccountId: string;
|
|
423
|
+
/**
|
|
424
|
+
* Account Type 'source' for DevOpsAgent monitoring
|
|
425
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-sourceawsconfiguration.html#cfn-devopsagent-association-sourceawsconfiguration-accounttype}
|
|
426
|
+
*/
|
|
427
|
+
AccountType: "source";
|
|
428
|
+
/**
|
|
429
|
+
* Role ARN to be assumed by DevOpsAgent to operate on behalf of customer
|
|
430
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-sourceawsconfiguration.html#cfn-devopsagent-association-sourceawsconfiguration-assumablerolearn}
|
|
431
|
+
*/
|
|
432
|
+
AssumableRoleArn: string;
|
|
433
|
+
/**
|
|
434
|
+
* List of AWS resources
|
|
435
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-sourceawsconfiguration.html#cfn-devopsagent-association-sourceawsconfiguration-resources}
|
|
436
|
+
*/
|
|
437
|
+
Resources?: AWSResource[] | undefined;
|
|
438
|
+
/**
|
|
439
|
+
* List of AWS tags as key-value pairs
|
|
440
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-sourceawsconfiguration.html#cfn-devopsagent-association-sourceawsconfiguration-tags}
|
|
441
|
+
*/
|
|
442
|
+
Tags?: KeyValuePair[] | undefined;
|
|
443
|
+
};
|
|
444
|
+
//# sourceMappingURL=aws-devopsagent-association.d.ts.map
|
|
@@ -57,7 +57,7 @@ export type GameLiftScriptAttribs = {
|
|
|
57
57
|
Id: string;
|
|
58
58
|
/**
|
|
59
59
|
* The file size of the uploaded Realtime script, expressed in bytes. When files are uploaded from an S3 location, this value remains at "0".
|
|
60
|
-
* @min
|
|
60
|
+
* @min 0
|
|
61
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-sizeondisk}
|
|
62
62
|
*/
|
|
63
63
|
SizeOnDisk: number;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::Glue::IdentityCenterConfiguration
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html}
|
|
5
|
+
*/
|
|
6
|
+
export type GlueIdentityCenterConfiguration = ResourceDefinitionWithAttributes<"AWS::Glue::IdentityCenterConfiguration", GlueIdentityCenterConfigurationProps, GlueIdentityCenterConfigurationAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::Glue::IdentityCenterConfiguration
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html}
|
|
10
|
+
*/
|
|
11
|
+
export type GlueIdentityCenterConfigurationProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The IAM identity center instance arn
|
|
14
|
+
* @minLength 10
|
|
15
|
+
* @maxLength 1224
|
|
16
|
+
* @pattern ^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$
|
|
17
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#cfn-glue-identitycenterconfiguration-instancearn}
|
|
18
|
+
*/
|
|
19
|
+
InstanceArn: string;
|
|
20
|
+
/**
|
|
21
|
+
* The downstream scopes that Glue identity center configuration can access
|
|
22
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#cfn-glue-identitycenterconfiguration-scopes}
|
|
23
|
+
*/
|
|
24
|
+
Scopes?: string[] | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* Enable or disable user background sessions for Glue Identity Center
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#cfn-glue-identitycenterconfiguration-userbackgroundsessionsenabled}
|
|
28
|
+
*/
|
|
29
|
+
UserBackgroundSessionsEnabled?: boolean | undefined;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#aws-resource-glue-identitycenterconfiguration-return-values}
|
|
33
|
+
*/
|
|
34
|
+
export type GlueIdentityCenterConfigurationAttribs = {
|
|
35
|
+
/**
|
|
36
|
+
* The identifier for the specified AWS account.
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#cfn-glue-identitycenterconfiguration-accountid}
|
|
38
|
+
*/
|
|
39
|
+
AccountId: string;
|
|
40
|
+
/**
|
|
41
|
+
* The Glue IAM identity center application arn
|
|
42
|
+
* @minLength 10
|
|
43
|
+
* @maxLength 1224
|
|
44
|
+
* @pattern ^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso::\d{12}:application/(sso)?ins-[a-zA-Z0-9-.]{16}/apl-[a-zA-Z0-9]{16}$
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#cfn-glue-identitycenterconfiguration-applicationarn}
|
|
46
|
+
*/
|
|
47
|
+
ApplicationArn: string;
|
|
48
|
+
};
|
|
49
|
+
//# sourceMappingURL=aws-glue-identitycenterconfiguration.d.ts.map
|
|
@@ -11,17 +11,11 @@ export type IoTFleetHubApplication = ResourceDefinitionWithAttributes<"AWS::IoTF
|
|
|
11
11
|
export type IoTFleetHubApplicationProps = {
|
|
12
12
|
/**
|
|
13
13
|
* An optional description of the web application.
|
|
14
|
-
* @minLength 1
|
|
15
|
-
* @maxLength 2048
|
|
16
|
-
* @pattern ^[ -~]*$
|
|
17
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#cfn-iotfleethub-application-applicationdescription}
|
|
18
15
|
*/
|
|
19
16
|
ApplicationDescription?: string | undefined;
|
|
20
17
|
/**
|
|
21
18
|
* The name of the web application.
|
|
22
|
-
* @minLength 1
|
|
23
|
-
* @maxLength 256
|
|
24
|
-
* @pattern ^[ -~]*$
|
|
25
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#cfn-iotfleethub-application-applicationname}
|
|
26
20
|
*/
|
|
27
21
|
ApplicationName: string;
|
|
@@ -31,9 +25,6 @@ export type IoTFleetHubApplicationProps = {
|
|
|
31
25
|
* > The name of the role must be in the form `FleetHub_random_string` .
|
|
32
26
|
*
|
|
33
27
|
* Pattern: `^arn:[!-~]+$`
|
|
34
|
-
* @minLength 1
|
|
35
|
-
* @maxLength 1600
|
|
36
|
-
* @pattern ^arn:[!-~]+$
|
|
37
28
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#cfn-iotfleethub-application-rolearn}
|
|
38
29
|
*/
|
|
39
30
|
RoleArn: string;
|
|
@@ -49,9 +40,6 @@ export type IoTFleetHubApplicationProps = {
|
|
|
49
40
|
export type IoTFleetHubApplicationAttribs = {
|
|
50
41
|
/**
|
|
51
42
|
* The ARN of the web application.
|
|
52
|
-
* @minLength 1
|
|
53
|
-
* @maxLength 1600
|
|
54
|
-
* @pattern ^arn:[!-~]+$
|
|
55
43
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#cfn-iotfleethub-application-applicationarn}
|
|
56
44
|
*/
|
|
57
45
|
ApplicationArn: string;
|
|
@@ -62,9 +50,6 @@ export type IoTFleetHubApplicationAttribs = {
|
|
|
62
50
|
ApplicationCreationDate: number;
|
|
63
51
|
/**
|
|
64
52
|
* The unique Id of the web application.
|
|
65
|
-
* @minLength 36
|
|
66
|
-
* @maxLength 36
|
|
67
|
-
* @pattern ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
|
|
68
53
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#cfn-iotfleethub-application-applicationid}
|
|
69
54
|
*/
|
|
70
55
|
ApplicationId: string;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
+
* Resource Type definition for AWS::Lambda::CapacityProvider
|
|
3
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-capacityprovider.html}
|
|
4
5
|
*/
|
|
5
6
|
export type LambdaCapacityProvider = ResourceDefinitionWithAttributes<"AWS::Lambda::CapacityProvider", LambdaCapacityProviderProps, LambdaCapacityProviderAttribs>;
|
|
6
7
|
/**
|
|
8
|
+
* Resource Type definition for AWS::Lambda::CapacityProvider
|
|
7
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-capacityprovider.html}
|
|
8
10
|
*/
|
|
9
11
|
export type LambdaCapacityProviderProps = {
|
|
@@ -62,7 +64,7 @@ export type LambdaCapacityProviderAttribs = {
|
|
|
62
64
|
*/
|
|
63
65
|
Arn: string;
|
|
64
66
|
/**
|
|
65
|
-
* The current state of the capacity provider.
|
|
67
|
+
* The current state of the capacity provider. Indicates whether the provider is being created, is active and ready for use, has failed, or is being deleted.
|
|
66
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-capacityprovider.html#cfn-lambda-capacityprovider-state}
|
|
67
69
|
*/
|
|
68
70
|
State: CapacityProviderState;
|
|
@@ -104,6 +106,7 @@ export type CapacityProviderScalingConfig = {
|
|
|
104
106
|
*/
|
|
105
107
|
MaxVCpuCount?: number | undefined;
|
|
106
108
|
/**
|
|
109
|
+
* The scaling mode for the capacity provider.
|
|
107
110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-capacityprovider-capacityproviderscalingconfig.html#cfn-lambda-capacityprovider-capacityproviderscalingconfig-scalingmode}
|
|
108
111
|
*/
|
|
109
112
|
ScalingMode?: CapacityProviderScalingMode | undefined;
|
|
@@ -166,6 +169,7 @@ export type InstanceRequirements = {
|
|
|
166
169
|
*/
|
|
167
170
|
export type TargetTrackingScalingPolicy = {
|
|
168
171
|
/**
|
|
172
|
+
* The predefined metric for target tracking.
|
|
169
173
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-capacityprovider-targettrackingscalingpolicy.html#cfn-lambda-capacityprovider-targettrackingscalingpolicy-predefinedmetrictype}
|
|
170
174
|
*/
|
|
171
175
|
PredefinedMetricType: CapacityProviderPredefinedMetricType;
|
|
@@ -69,6 +69,10 @@ export type LambdaFunctionProps = {
|
|
|
69
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description}
|
|
70
70
|
*/
|
|
71
71
|
Description?: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-durableconfig}
|
|
74
|
+
*/
|
|
75
|
+
DurableConfig?: DurableConfig | undefined;
|
|
72
76
|
/**
|
|
73
77
|
* Environment variables that are accessible from function code during execution.
|
|
74
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-environment}
|
|
@@ -313,6 +317,26 @@ export type DeadLetterConfig = {
|
|
|
313
317
|
*/
|
|
314
318
|
TargetArn?: string | undefined;
|
|
315
319
|
};
|
|
320
|
+
/**
|
|
321
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-durableconfig.html}
|
|
322
|
+
*/
|
|
323
|
+
export type DurableConfig = {
|
|
324
|
+
/**
|
|
325
|
+
* 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.
|
|
326
|
+
* @min 1
|
|
327
|
+
* @max 31622400
|
|
328
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-durableconfig.html#cfn-lambda-function-durableconfig-executiontimeout}
|
|
329
|
+
*/
|
|
330
|
+
ExecutionTimeout: number;
|
|
331
|
+
/**
|
|
332
|
+
* 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.
|
|
333
|
+
* @min 1
|
|
334
|
+
* @max 90
|
|
335
|
+
* @default 14
|
|
336
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-durableconfig.html#cfn-lambda-function-durableconfig-retentionperiodindays}
|
|
337
|
+
*/
|
|
338
|
+
RetentionPeriodInDays?: number | undefined;
|
|
339
|
+
};
|
|
316
340
|
/**
|
|
317
341
|
* 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.
|
|
318
342
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-environment.html}
|
|
@@ -36,7 +36,7 @@ export type LambdaVersionProps = {
|
|
|
36
36
|
*/
|
|
37
37
|
FunctionName: string;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* Configuration that defines the scaling behavior for a Lambda Managed Instances function, including the minimum and maximum number of execution environments that can be provisioned.
|
|
40
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionscalingconfig}
|
|
41
41
|
*/
|
|
42
42
|
FunctionScalingConfig?: FunctionScalingConfig | undefined;
|