@awboost/cfntypes 1.0.0-beta.64 → 1.0.0-beta.65
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/lib/resources.generated/AWS-AppConfig.d.ts +1 -0
- package/lib/resources.generated/AWS-AppIntegrations.d.ts +1 -1
- package/lib/resources.generated/AWS-AutoScaling.d.ts +66 -78
- package/lib/resources.generated/AWS-AutoScaling.js +2 -8
- package/lib/resources.generated/AWS-Cognito.d.ts +45 -0
- package/lib/resources.generated/AWS-Cognito.js +13 -0
- package/lib/resources.generated/AWS-Connect.d.ts +2 -0
- package/lib/resources.generated/AWS-EC2.d.ts +31 -0
- package/lib/resources.generated/AWS-EMR.d.ts +15 -7
- package/lib/resources.generated/AWS-EMR.js +3 -1
- package/lib/resources.generated/AWS-EntityResolution.d.ts +99 -0
- package/lib/resources.generated/AWS-EntityResolution.js +13 -0
- package/lib/resources.generated/AWS-Events.d.ts +33 -50
- package/lib/resources.generated/AWS-Events.js +1 -1
- package/lib/resources.generated/AWS-GameLift.d.ts +1 -0
- package/lib/resources.generated/AWS-IAM.d.ts +13 -13
- package/lib/resources.generated/AWS-IAM.js +1 -1
- package/lib/resources.generated/AWS-IoT.d.ts +11 -0
- package/lib/resources.generated/AWS-Kendra.d.ts +0 -9
- package/lib/resources.generated/AWS-Lambda.d.ts +23 -11
- package/lib/resources.generated/AWS-Lambda.js +1 -1
- package/lib/resources.generated/AWS-NetworkManager.d.ts +2 -0
- package/lib/resources.generated/AWS-NetworkManager.js +1 -1
- package/lib/resources.generated/AWS-QuickSight.d.ts +33 -1
- package/lib/resources.generated/AWS-SageMaker.d.ts +6 -0
- package/lib/resources.generated/AWS-WAFv2.d.ts +1 -0
- package/package.json +2 -2
@@ -1,6 +1,51 @@
|
|
1
1
|
import { ResourceBase } from "../util.js";
|
2
2
|
import { ResourceOptions } from "../template.js";
|
3
3
|
import { Tag } from "./core.js";
|
4
|
+
/**
|
5
|
+
* Type definition for AWS::EntityResolution::IdMappingWorkflow.IdMappingTechniques
|
6
|
+
*
|
7
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html | AWS::EntityResolution::IdMappingWorkflow.IdMappingTechniques}
|
8
|
+
*/
|
9
|
+
export interface EntityResolutionIdMappingWorkflowIdMappingTechniques {
|
10
|
+
ProviderProperties?: EntityResolutionIdMappingWorkflowProviderProperties;
|
11
|
+
IdMappingType?: string;
|
12
|
+
}
|
13
|
+
/**
|
14
|
+
* Type definition for AWS::EntityResolution::IdMappingWorkflow.IdMappingWorkflowInputSource
|
15
|
+
*
|
16
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowinputsource.html | AWS::EntityResolution::IdMappingWorkflow.IdMappingWorkflowInputSource}
|
17
|
+
*/
|
18
|
+
export interface EntityResolutionIdMappingWorkflowIdMappingWorkflowInputSource {
|
19
|
+
InputSourceARN: string;
|
20
|
+
SchemaArn: string;
|
21
|
+
}
|
22
|
+
/**
|
23
|
+
* Type definition for AWS::EntityResolution::IdMappingWorkflow.IdMappingWorkflowOutputSource
|
24
|
+
*
|
25
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowoutputsource.html | AWS::EntityResolution::IdMappingWorkflow.IdMappingWorkflowOutputSource}
|
26
|
+
*/
|
27
|
+
export interface EntityResolutionIdMappingWorkflowIdMappingWorkflowOutputSource {
|
28
|
+
KMSArn?: string;
|
29
|
+
OutputS3Path: string;
|
30
|
+
}
|
31
|
+
/**
|
32
|
+
* Type definition for AWS::EntityResolution::IdMappingWorkflow.IntermediateSourceConfiguration
|
33
|
+
*
|
34
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-intermediatesourceconfiguration.html | AWS::EntityResolution::IdMappingWorkflow.IntermediateSourceConfiguration}
|
35
|
+
*/
|
36
|
+
export interface EntityResolutionIdMappingWorkflowIntermediateSourceConfiguration {
|
37
|
+
IntermediateS3Path: string;
|
38
|
+
}
|
39
|
+
/**
|
40
|
+
* Type definition for AWS::EntityResolution::IdMappingWorkflow.ProviderProperties
|
41
|
+
*
|
42
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-providerproperties.html | AWS::EntityResolution::IdMappingWorkflow.ProviderProperties}
|
43
|
+
*/
|
44
|
+
export interface EntityResolutionIdMappingWorkflowProviderProperties {
|
45
|
+
IntermediateSourceConfiguration?: EntityResolutionIdMappingWorkflowIntermediateSourceConfiguration;
|
46
|
+
ProviderServiceArn: string;
|
47
|
+
ProviderConfiguration?: Record<string, any>;
|
48
|
+
}
|
4
49
|
/**
|
5
50
|
* Type definition for AWS::EntityResolution::MatchingWorkflow.InputSource
|
6
51
|
*
|
@@ -11,6 +56,14 @@ export interface EntityResolutionMatchingWorkflowInputSource {
|
|
11
56
|
InputSourceARN: string;
|
12
57
|
SchemaArn: string;
|
13
58
|
}
|
59
|
+
/**
|
60
|
+
* Type definition for AWS::EntityResolution::MatchingWorkflow.IntermediateSourceConfiguration
|
61
|
+
*
|
62
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-intermediatesourceconfiguration.html | AWS::EntityResolution::MatchingWorkflow.IntermediateSourceConfiguration}
|
63
|
+
*/
|
64
|
+
export interface EntityResolutionMatchingWorkflowIntermediateSourceConfiguration {
|
65
|
+
IntermediateS3Path: string;
|
66
|
+
}
|
14
67
|
/**
|
15
68
|
* Type definition for AWS::EntityResolution::MatchingWorkflow.OutputAttribute
|
16
69
|
*
|
@@ -31,6 +84,16 @@ export interface EntityResolutionMatchingWorkflowOutputSource {
|
|
31
84
|
Output: any[];
|
32
85
|
ApplyNormalization?: boolean;
|
33
86
|
}
|
87
|
+
/**
|
88
|
+
* Type definition for AWS::EntityResolution::MatchingWorkflow.ProviderProperties
|
89
|
+
*
|
90
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-providerproperties.html | AWS::EntityResolution::MatchingWorkflow.ProviderProperties}
|
91
|
+
*/
|
92
|
+
export interface EntityResolutionMatchingWorkflowProviderProperties {
|
93
|
+
IntermediateSourceConfiguration?: EntityResolutionMatchingWorkflowIntermediateSourceConfiguration;
|
94
|
+
ProviderServiceArn: string;
|
95
|
+
ProviderConfiguration?: Record<string, any>;
|
96
|
+
}
|
34
97
|
/**
|
35
98
|
* Type definition for AWS::EntityResolution::MatchingWorkflow.ResolutionTechniques
|
36
99
|
*
|
@@ -38,6 +101,7 @@ export interface EntityResolutionMatchingWorkflowOutputSource {
|
|
38
101
|
*/
|
39
102
|
export interface EntityResolutionMatchingWorkflowResolutionTechniques {
|
40
103
|
RuleBasedProperties?: EntityResolutionMatchingWorkflowRuleBasedProperties;
|
104
|
+
ProviderProperties?: EntityResolutionMatchingWorkflowProviderProperties;
|
41
105
|
ResolutionType?: string;
|
42
106
|
}
|
43
107
|
/**
|
@@ -66,9 +130,44 @@ export interface EntityResolutionMatchingWorkflowRuleBasedProperties {
|
|
66
130
|
export interface EntityResolutionSchemaMappingSchemaInputAttribute {
|
67
131
|
GroupName?: string;
|
68
132
|
Type: string;
|
133
|
+
SubType?: string;
|
69
134
|
MatchKey?: string;
|
70
135
|
FieldName: string;
|
71
136
|
}
|
137
|
+
/**
|
138
|
+
* Type definition for AWS::EntityResolution::IdMappingWorkflow
|
139
|
+
*
|
140
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html | AWS::EntityResolution::IdMappingWorkflow}
|
141
|
+
*/
|
142
|
+
export interface EntityResolutionIdMappingWorkflowProps {
|
143
|
+
Description?: string;
|
144
|
+
InputSourceConfig: any[];
|
145
|
+
IdMappingTechniques: EntityResolutionIdMappingWorkflowIdMappingTechniques;
|
146
|
+
WorkflowName: string;
|
147
|
+
OutputSourceConfig: any[];
|
148
|
+
RoleArn: string;
|
149
|
+
Tags?: Tag[];
|
150
|
+
}
|
151
|
+
/**
|
152
|
+
* Attributes type definition for AWS::EntityResolution::IdMappingWorkflow
|
153
|
+
*
|
154
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html | AWS::EntityResolution::IdMappingWorkflow}
|
155
|
+
*/
|
156
|
+
export interface EntityResolutionIdMappingWorkflowAttribs {
|
157
|
+
CreatedAt?: string;
|
158
|
+
WorkflowArn?: string;
|
159
|
+
UpdatedAt?: string;
|
160
|
+
}
|
161
|
+
/**
|
162
|
+
* Resource class for AWS::EntityResolution::IdMappingWorkflow
|
163
|
+
*
|
164
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html | AWS::EntityResolution::IdMappingWorkflow}
|
165
|
+
*/
|
166
|
+
export declare class EntityResolutionIdMappingWorkflow extends ResourceBase<"AWS::EntityResolution::IdMappingWorkflow", EntityResolutionIdMappingWorkflowProps, EntityResolutionIdMappingWorkflowAttribs> {
|
167
|
+
static readonly Type = "AWS::EntityResolution::IdMappingWorkflow";
|
168
|
+
static readonly AttributeNames: readonly (keyof EntityResolutionIdMappingWorkflowAttribs)[];
|
169
|
+
constructor(logicalId: string, properties: EntityResolutionIdMappingWorkflowProps, options?: ResourceOptions);
|
170
|
+
}
|
72
171
|
/**
|
73
172
|
* Type definition for AWS::EntityResolution::MatchingWorkflow
|
74
173
|
*
|
@@ -1,4 +1,17 @@
|
|
1
1
|
import { ResourceBase } from "../util.js";
|
2
|
+
/**
|
3
|
+
* Resource class for AWS::EntityResolution::IdMappingWorkflow
|
4
|
+
*
|
5
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html | AWS::EntityResolution::IdMappingWorkflow}
|
6
|
+
*/
|
7
|
+
class EntityResolutionIdMappingWorkflow extends ResourceBase {
|
8
|
+
constructor(logicalId, properties, options) {
|
9
|
+
super(EntityResolutionIdMappingWorkflow.Type, EntityResolutionIdMappingWorkflow.AttributeNames, logicalId, properties, options);
|
10
|
+
}
|
11
|
+
}
|
12
|
+
EntityResolutionIdMappingWorkflow.Type = "AWS::EntityResolution::IdMappingWorkflow";
|
13
|
+
EntityResolutionIdMappingWorkflow.AttributeNames = ["CreatedAt", "WorkflowArn", "UpdatedAt"];
|
14
|
+
export { EntityResolutionIdMappingWorkflow };
|
2
15
|
/**
|
3
16
|
* Resource class for AWS::EntityResolution::MatchingWorkflow
|
4
17
|
*
|
@@ -119,15 +119,6 @@ export interface EventsEndpointRoutingConfig {
|
|
119
119
|
export interface EventsEndpointSecondary {
|
120
120
|
Route: string;
|
121
121
|
}
|
122
|
-
/**
|
123
|
-
* Type definition for AWS::Events::EventBus.TagEntry
|
124
|
-
*
|
125
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbus-tagentry.html | AWS::Events::EventBus.TagEntry}
|
126
|
-
*/
|
127
|
-
export interface EventsEventBusTagEntry {
|
128
|
-
Value: string;
|
129
|
-
Key: string;
|
130
|
-
}
|
131
122
|
/**
|
132
123
|
* Type definition for AWS::Events::EventBusPolicy.Condition
|
133
124
|
*
|
@@ -144,9 +135,9 @@ export interface EventsEventBusPolicyCondition {
|
|
144
135
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-awsvpcconfiguration.html | AWS::Events::Rule.AwsVpcConfiguration}
|
145
136
|
*/
|
146
137
|
export interface EventsRuleAwsVpcConfiguration {
|
147
|
-
AssignPublicIp?: string;
|
148
138
|
SecurityGroups?: any[];
|
149
139
|
Subnets: any[];
|
140
|
+
AssignPublicIp?: string;
|
150
141
|
}
|
151
142
|
/**
|
152
143
|
* Type definition for AWS::Events::Rule.BatchArrayProperties
|
@@ -163,9 +154,9 @@ export interface EventsRuleBatchArrayProperties {
|
|
163
154
|
*/
|
164
155
|
export interface EventsRuleBatchParameters {
|
165
156
|
ArrayProperties?: EventsRuleBatchArrayProperties;
|
166
|
-
JobDefinition: string;
|
167
157
|
JobName: string;
|
168
158
|
RetryStrategy?: EventsRuleBatchRetryStrategy;
|
159
|
+
JobDefinition: string;
|
169
160
|
}
|
170
161
|
/**
|
171
162
|
* Type definition for AWS::Events::Rule.BatchRetryStrategy
|
@@ -181,8 +172,8 @@ export interface EventsRuleBatchRetryStrategy {
|
|
181
172
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-capacityproviderstrategyitem.html | AWS::Events::Rule.CapacityProviderStrategyItem}
|
182
173
|
*/
|
183
174
|
export interface EventsRuleCapacityProviderStrategyItem {
|
184
|
-
Base?: number;
|
185
175
|
CapacityProvider: string;
|
176
|
+
Base?: number;
|
186
177
|
Weight?: number;
|
187
178
|
}
|
188
179
|
/**
|
@@ -199,19 +190,19 @@ export interface EventsRuleDeadLetterConfig {
|
|
199
190
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html | AWS::Events::Rule.EcsParameters}
|
200
191
|
*/
|
201
192
|
export interface EventsRuleEcsParameters {
|
202
|
-
|
193
|
+
PlatformVersion?: string;
|
194
|
+
Group?: string;
|
203
195
|
EnableECSManagedTags?: boolean;
|
204
196
|
EnableExecuteCommand?: boolean;
|
205
|
-
Group?: string;
|
206
|
-
LaunchType?: string;
|
207
|
-
NetworkConfiguration?: EventsRuleNetworkConfiguration;
|
208
197
|
PlacementConstraints?: any[];
|
209
|
-
PlacementStrategies?: any[];
|
210
|
-
PlatformVersion?: string;
|
211
198
|
PropagateTags?: string;
|
199
|
+
TaskCount?: number;
|
200
|
+
PlacementStrategies?: any[];
|
201
|
+
CapacityProviderStrategy?: any[];
|
202
|
+
LaunchType?: string;
|
212
203
|
ReferenceId?: string;
|
213
204
|
TagList?: any[];
|
214
|
-
|
205
|
+
NetworkConfiguration?: EventsRuleNetworkConfiguration;
|
215
206
|
TaskDefinitionArn: string;
|
216
207
|
}
|
217
208
|
/**
|
@@ -220,8 +211,8 @@ export interface EventsRuleEcsParameters {
|
|
220
211
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-httpparameters.html | AWS::Events::Rule.HttpParameters}
|
221
212
|
*/
|
222
213
|
export interface EventsRuleHttpParameters {
|
223
|
-
HeaderParameters?: Record<string, any>;
|
224
214
|
PathParameterValues?: any[];
|
215
|
+
HeaderParameters?: Record<string, any>;
|
225
216
|
QueryStringParameters?: Record<string, any>;
|
226
217
|
}
|
227
218
|
/**
|
@@ -255,8 +246,8 @@ export interface EventsRuleNetworkConfiguration {
|
|
255
246
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-placementconstraint.html | AWS::Events::Rule.PlacementConstraint}
|
256
247
|
*/
|
257
248
|
export interface EventsRulePlacementConstraint {
|
258
|
-
Expression?: string;
|
259
249
|
Type?: string;
|
250
|
+
Expression?: string;
|
260
251
|
}
|
261
252
|
/**
|
262
253
|
* Type definition for AWS::Events::Rule.PlacementStrategy
|
@@ -273,11 +264,12 @@ export interface EventsRulePlacementStrategy {
|
|
273
264
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-redshiftdataparameters.html | AWS::Events::Rule.RedshiftDataParameters}
|
274
265
|
*/
|
275
266
|
export interface EventsRuleRedshiftDataParameters {
|
267
|
+
StatementName?: string;
|
268
|
+
Sqls?: any[];
|
276
269
|
Database: string;
|
277
|
-
DbUser?: string;
|
278
270
|
SecretManagerArn?: string;
|
271
|
+
DbUser?: string;
|
279
272
|
Sql?: string;
|
280
|
-
StatementName?: string;
|
281
273
|
WithEvent?: boolean;
|
282
274
|
}
|
283
275
|
/**
|
@@ -286,8 +278,8 @@ export interface EventsRuleRedshiftDataParameters {
|
|
286
278
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-retrypolicy.html | AWS::Events::Rule.RetryPolicy}
|
287
279
|
*/
|
288
280
|
export interface EventsRuleRetryPolicy {
|
289
|
-
MaximumEventAgeInSeconds?: number;
|
290
281
|
MaximumRetryAttempts?: number;
|
282
|
+
MaximumEventAgeInSeconds?: number;
|
291
283
|
}
|
292
284
|
/**
|
293
285
|
* Type definition for AWS::Events::Rule.RunCommandParameters
|
@@ -303,8 +295,8 @@ export interface EventsRuleRunCommandParameters {
|
|
303
295
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandtarget.html | AWS::Events::Rule.RunCommandTarget}
|
304
296
|
*/
|
305
297
|
export interface EventsRuleRunCommandTarget {
|
306
|
-
Key: string;
|
307
298
|
Values: any[];
|
299
|
+
Key: string;
|
308
300
|
}
|
309
301
|
/**
|
310
302
|
* Type definition for AWS::Events::Rule.SageMakerPipelineParameter
|
@@ -312,8 +304,8 @@ export interface EventsRuleRunCommandTarget {
|
|
312
304
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-sagemakerpipelineparameter.html | AWS::Events::Rule.SageMakerPipelineParameter}
|
313
305
|
*/
|
314
306
|
export interface EventsRuleSageMakerPipelineParameter {
|
315
|
-
Name: string;
|
316
307
|
Value: string;
|
308
|
+
Name: string;
|
317
309
|
}
|
318
310
|
/**
|
319
311
|
* Type definition for AWS::Events::Rule.SageMakerPipelineParameters
|
@@ -331,37 +323,28 @@ export interface EventsRuleSageMakerPipelineParameters {
|
|
331
323
|
export interface EventsRuleSqsParameters {
|
332
324
|
MessageGroupId: string;
|
333
325
|
}
|
334
|
-
/**
|
335
|
-
* Type definition for AWS::Events::Rule.Tag
|
336
|
-
*
|
337
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-tag.html | AWS::Events::Rule.Tag}
|
338
|
-
*/
|
339
|
-
export interface EventsRuleTag {
|
340
|
-
Key?: string;
|
341
|
-
Value?: string;
|
342
|
-
}
|
343
326
|
/**
|
344
327
|
* Type definition for AWS::Events::Rule.Target
|
345
328
|
*
|
346
329
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html | AWS::Events::Rule.Target}
|
347
330
|
*/
|
348
331
|
export interface EventsRuleTarget {
|
349
|
-
Arn: string;
|
350
|
-
BatchParameters?: EventsRuleBatchParameters;
|
351
|
-
DeadLetterConfig?: EventsRuleDeadLetterConfig;
|
352
|
-
EcsParameters?: EventsRuleEcsParameters;
|
353
|
-
HttpParameters?: EventsRuleHttpParameters;
|
354
|
-
Id: string;
|
355
|
-
Input?: string;
|
356
332
|
InputPath?: string;
|
333
|
+
HttpParameters?: EventsRuleHttpParameters;
|
334
|
+
DeadLetterConfig?: EventsRuleDeadLetterConfig;
|
335
|
+
RunCommandParameters?: EventsRuleRunCommandParameters;
|
357
336
|
InputTransformer?: EventsRuleInputTransformer;
|
358
337
|
KinesisParameters?: EventsRuleKinesisParameters;
|
359
|
-
RedshiftDataParameters?: EventsRuleRedshiftDataParameters;
|
360
|
-
RetryPolicy?: EventsRuleRetryPolicy;
|
361
338
|
RoleArn?: string;
|
362
|
-
|
363
|
-
|
339
|
+
RedshiftDataParameters?: EventsRuleRedshiftDataParameters;
|
340
|
+
Input?: string;
|
364
341
|
SqsParameters?: EventsRuleSqsParameters;
|
342
|
+
EcsParameters?: EventsRuleEcsParameters;
|
343
|
+
BatchParameters?: EventsRuleBatchParameters;
|
344
|
+
Id: string;
|
345
|
+
Arn: string;
|
346
|
+
SageMakerPipelineParameters?: EventsRuleSageMakerPipelineParameters;
|
347
|
+
RetryPolicy?: EventsRuleRetryPolicy;
|
365
348
|
}
|
366
349
|
/**
|
367
350
|
* Type definition for AWS::Events::ApiDestination
|
@@ -495,6 +478,7 @@ export declare class EventsEndpoint extends ResourceBase<"AWS::Events::Endpoint"
|
|
495
478
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html | AWS::Events::EventBus}
|
496
479
|
*/
|
497
480
|
export interface EventsEventBusProps {
|
481
|
+
Policy?: object;
|
498
482
|
EventSourceName?: string;
|
499
483
|
Tags?: Tag[];
|
500
484
|
Name: string;
|
@@ -505,7 +489,6 @@ export interface EventsEventBusProps {
|
|
505
489
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html | AWS::Events::EventBus}
|
506
490
|
*/
|
507
491
|
export interface EventsEventBusAttribs {
|
508
|
-
Policy?: string;
|
509
492
|
Arn?: string;
|
510
493
|
Name?: string;
|
511
494
|
}
|
@@ -548,14 +531,14 @@ export declare class EventsEventBusPolicy extends ResourceBase<"AWS::Events::Eve
|
|
548
531
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html | AWS::Events::Rule}
|
549
532
|
*/
|
550
533
|
export interface EventsRuleProps {
|
551
|
-
Description?: string;
|
552
534
|
EventBusName?: string;
|
553
535
|
EventPattern?: object;
|
554
|
-
Name?: string;
|
555
|
-
RoleArn?: string;
|
556
536
|
ScheduleExpression?: string;
|
537
|
+
Description?: string;
|
557
538
|
State?: string;
|
558
539
|
Targets?: any[];
|
540
|
+
RoleArn?: string;
|
541
|
+
Name?: string;
|
559
542
|
}
|
560
543
|
/**
|
561
544
|
* Attributes type definition for AWS::Events::Rule
|
@@ -62,7 +62,7 @@ class EventsEventBus extends ResourceBase {
|
|
62
62
|
}
|
63
63
|
}
|
64
64
|
EventsEventBus.Type = "AWS::Events::EventBus";
|
65
|
-
EventsEventBus.AttributeNames = ["
|
65
|
+
EventsEventBus.AttributeNames = ["Arn", "Name"];
|
66
66
|
export { EventsEventBus };
|
67
67
|
/**
|
68
68
|
* Resource class for AWS::Events::EventBusPolicy
|
@@ -271,6 +271,7 @@ export interface GameLiftFleetProps {
|
|
271
271
|
ResourceCreationLimitPolicy?: GameLiftFleetResourceCreationLimitPolicy;
|
272
272
|
EC2InstanceType?: string;
|
273
273
|
CertificateConfiguration?: GameLiftFleetCertificateConfiguration;
|
274
|
+
InstanceRoleCredentialsProvider?: string;
|
274
275
|
DesiredEC2Instances?: number;
|
275
276
|
}
|
276
277
|
/**
|
@@ -4,20 +4,20 @@ import { Tag } from "./core.js";
|
|
4
4
|
/**
|
5
5
|
* Type definition for AWS::IAM::Group.Policy
|
6
6
|
*
|
7
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html | AWS::IAM::Group.Policy}
|
7
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group-policy.html | AWS::IAM::Group.Policy}
|
8
8
|
*/
|
9
9
|
export interface IAMGroupPolicy {
|
10
|
-
PolicyDocument: object;
|
11
10
|
PolicyName: string;
|
11
|
+
PolicyDocument: object;
|
12
12
|
}
|
13
13
|
/**
|
14
14
|
* Type definition for AWS::IAM::Role.Policy
|
15
15
|
*
|
16
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html | AWS::IAM::Role.Policy}
|
16
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-role-policy.html | AWS::IAM::Role.Policy}
|
17
17
|
*/
|
18
18
|
export interface IAMRolePolicy {
|
19
|
-
PolicyDocument: object;
|
20
19
|
PolicyName: string;
|
20
|
+
PolicyDocument: object;
|
21
21
|
}
|
22
22
|
/**
|
23
23
|
* Type definition for AWS::IAM::User.LoginProfile
|
@@ -68,18 +68,18 @@ export declare class IAMAccessKey extends ResourceBase<"AWS::IAM::AccessKey", IA
|
|
68
68
|
/**
|
69
69
|
* Type definition for AWS::IAM::Group
|
70
70
|
*
|
71
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
71
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html | AWS::IAM::Group}
|
72
72
|
*/
|
73
73
|
export interface IAMGroupProps {
|
74
74
|
GroupName?: string;
|
75
|
-
ManagedPolicyArns?: any[];
|
76
75
|
Path?: string;
|
76
|
+
ManagedPolicyArns?: any[];
|
77
77
|
Policies?: any[];
|
78
78
|
}
|
79
79
|
/**
|
80
80
|
* Attributes type definition for AWS::IAM::Group
|
81
81
|
*
|
82
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
82
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html | AWS::IAM::Group}
|
83
83
|
*/
|
84
84
|
export interface IAMGroupAttribs {
|
85
85
|
Arn?: string;
|
@@ -87,7 +87,7 @@ export interface IAMGroupAttribs {
|
|
87
87
|
/**
|
88
88
|
* Resource class for AWS::IAM::Group
|
89
89
|
*
|
90
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
90
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html | AWS::IAM::Group}
|
91
91
|
*/
|
92
92
|
export declare class IAMGroup extends ResourceBase<"AWS::IAM::Group", IAMGroupProps, IAMGroupAttribs> {
|
93
93
|
static readonly Type = "AWS::IAM::Group";
|
@@ -246,15 +246,15 @@ export declare class IAMPolicy extends ResourceBase<"AWS::IAM::Policy", IAMPolic
|
|
246
246
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html | AWS::IAM::Role}
|
247
247
|
*/
|
248
248
|
export interface IAMRoleProps {
|
249
|
-
|
250
|
-
Description?: string;
|
249
|
+
Path?: string;
|
251
250
|
ManagedPolicyArns?: any[];
|
252
251
|
MaxSessionDuration?: number;
|
253
|
-
Path?: string;
|
254
|
-
PermissionsBoundary?: string;
|
255
|
-
Policies?: any[];
|
256
252
|
RoleName?: string;
|
253
|
+
Description?: string;
|
254
|
+
Policies?: any[];
|
255
|
+
AssumeRolePolicyDocument: object;
|
257
256
|
Tags?: Tag[];
|
257
|
+
PermissionsBoundary?: string;
|
258
258
|
}
|
259
259
|
/**
|
260
260
|
* Attributes type definition for AWS::IAM::Role
|
@@ -15,7 +15,7 @@ export { IAMAccessKey };
|
|
15
15
|
/**
|
16
16
|
* Resource class for AWS::IAM::Group
|
17
17
|
*
|
18
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
18
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html | AWS::IAM::Group}
|
19
19
|
*/
|
20
20
|
class IAMGroup extends ResourceBase {
|
21
21
|
constructor(logicalId, properties, options) {
|
@@ -589,10 +589,20 @@ export interface IoTTopicRuleIotSiteWiseAction {
|
|
589
589
|
export interface IoTTopicRuleKafkaAction {
|
590
590
|
Partition?: string;
|
591
591
|
ClientProperties: Record<string, any>;
|
592
|
+
Headers?: any[];
|
592
593
|
Topic: string;
|
593
594
|
DestinationArn: string;
|
594
595
|
Key?: string;
|
595
596
|
}
|
597
|
+
/**
|
598
|
+
* Type definition for AWS::IoT::TopicRule.KafkaActionHeader
|
599
|
+
*
|
600
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kafkaactionheader.html | AWS::IoT::TopicRule.KafkaActionHeader}
|
601
|
+
*/
|
602
|
+
export interface IoTTopicRuleKafkaActionHeader {
|
603
|
+
Value: string;
|
604
|
+
Key: string;
|
605
|
+
}
|
596
606
|
/**
|
597
607
|
* Type definition for AWS::IoT::TopicRule.KinesisAction
|
598
608
|
*
|
@@ -1187,6 +1197,7 @@ export declare class IoTMitigationAction extends ResourceBase<"AWS::IoT::Mitigat
|
|
1187
1197
|
export interface IoTPolicyProps {
|
1188
1198
|
PolicyName?: string;
|
1189
1199
|
PolicyDocument: object;
|
1200
|
+
Tags?: Tag[];
|
1190
1201
|
}
|
1191
1202
|
/**
|
1192
1203
|
* Attributes type definition for AWS::IoT::Policy
|
@@ -161,7 +161,6 @@ export interface KendraDataSourceDataSourceConfiguration {
|
|
161
161
|
ConfluenceConfiguration?: KendraDataSourceConfluenceConfiguration;
|
162
162
|
WorkDocsConfiguration?: KendraDataSourceWorkDocsConfiguration;
|
163
163
|
OneDriveConfiguration?: KendraDataSourceOneDriveConfiguration;
|
164
|
-
TemplateConfiguration?: KendraDataSourceTemplateConfiguration;
|
165
164
|
ServiceNowConfiguration?: KendraDataSourceServiceNowConfiguration;
|
166
165
|
}
|
167
166
|
/**
|
@@ -469,14 +468,6 @@ export interface KendraDataSourceSharePointConfiguration {
|
|
469
468
|
export interface KendraDataSourceSqlConfiguration {
|
470
469
|
QueryIdentifiersEnclosingOption?: string;
|
471
470
|
}
|
472
|
-
/**
|
473
|
-
* Type definition for AWS::Kendra::DataSource.TemplateConfiguration
|
474
|
-
*
|
475
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-templateconfiguration.html | AWS::Kendra::DataSource.TemplateConfiguration}
|
476
|
-
*/
|
477
|
-
export interface KendraDataSourceTemplateConfiguration {
|
478
|
-
Template: string;
|
479
|
-
}
|
480
471
|
/**
|
481
472
|
* Type definition for AWS::Kendra::DataSource.WebCrawlerAuthenticationConfiguration
|
482
473
|
*
|
@@ -288,6 +288,15 @@ export interface LambdaUrlCors {
|
|
288
288
|
export interface LambdaVersionProvisionedConcurrencyConfiguration {
|
289
289
|
ProvisionedConcurrentExecutions: number;
|
290
290
|
}
|
291
|
+
/**
|
292
|
+
* Type definition for AWS::Lambda::Version.RuntimePolicy
|
293
|
+
*
|
294
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-runtimepolicy.html | AWS::Lambda::Version.RuntimePolicy}
|
295
|
+
*/
|
296
|
+
export interface LambdaVersionRuntimePolicy {
|
297
|
+
UpdateRuntimeOn: string;
|
298
|
+
RuntimeVersionArn?: string;
|
299
|
+
}
|
291
300
|
/**
|
292
301
|
* Type definition for AWS::Lambda::Alias
|
293
302
|
*
|
@@ -416,29 +425,30 @@ export declare class LambdaEventSourceMapping extends ResourceBase<"AWS::Lambda:
|
|
416
425
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html | AWS::Lambda::Function}
|
417
426
|
*/
|
418
427
|
export interface LambdaFunctionProps {
|
419
|
-
|
420
|
-
MemorySize?: number;
|
428
|
+
Policy?: object;
|
421
429
|
Description?: string;
|
422
430
|
TracingConfig?: LambdaFunctionTracingConfig;
|
423
431
|
VpcConfig?: LambdaFunctionVpcConfig;
|
424
|
-
DeadLetterConfig?: LambdaFunctionDeadLetterConfig;
|
425
|
-
Timeout?: number;
|
426
432
|
RuntimeManagementConfig?: LambdaFunctionRuntimeManagementConfig;
|
427
|
-
Handler?: string;
|
428
433
|
ReservedConcurrentExecutions?: number;
|
429
434
|
SnapStart?: LambdaFunctionSnapStart;
|
430
|
-
Code: LambdaFunctionCode;
|
431
|
-
Role: string;
|
432
435
|
FileSystemConfigs?: any[];
|
433
436
|
FunctionName?: string;
|
434
437
|
Runtime?: string;
|
435
438
|
KmsKeyArn?: string;
|
436
439
|
PackageType?: string;
|
437
440
|
CodeSigningConfigArn?: string;
|
438
|
-
Environment?: LambdaFunctionEnvironment;
|
439
|
-
EphemeralStorage?: LambdaFunctionEphemeralStorage;
|
440
441
|
Layers?: any[];
|
441
442
|
Tags?: Tag[];
|
443
|
+
ImageConfig?: LambdaFunctionImageConfig;
|
444
|
+
MemorySize?: number;
|
445
|
+
DeadLetterConfig?: LambdaFunctionDeadLetterConfig;
|
446
|
+
Timeout?: number;
|
447
|
+
Handler?: string;
|
448
|
+
Code: LambdaFunctionCode;
|
449
|
+
Role: string;
|
450
|
+
Environment?: LambdaFunctionEnvironment;
|
451
|
+
EphemeralStorage?: LambdaFunctionEphemeralStorage;
|
442
452
|
Architectures?: any[];
|
443
453
|
}
|
444
454
|
/**
|
@@ -592,10 +602,11 @@ export declare class LambdaUrl extends ResourceBase<"AWS::Lambda::Url", LambdaUr
|
|
592
602
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html | AWS::Lambda::Version}
|
593
603
|
*/
|
594
604
|
export interface LambdaVersionProps {
|
595
|
-
CodeSha256?: string;
|
596
|
-
Description?: string;
|
597
605
|
FunctionName: string;
|
598
606
|
ProvisionedConcurrencyConfig?: LambdaVersionProvisionedConcurrencyConfiguration;
|
607
|
+
Description?: string;
|
608
|
+
RuntimePolicy?: LambdaVersionRuntimePolicy;
|
609
|
+
CodeSha256?: string;
|
599
610
|
}
|
600
611
|
/**
|
601
612
|
* Attributes type definition for AWS::Lambda::Version
|
@@ -603,6 +614,7 @@ export interface LambdaVersionProps {
|
|
603
614
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html | AWS::Lambda::Version}
|
604
615
|
*/
|
605
616
|
export interface LambdaVersionAttribs {
|
617
|
+
FunctionArn?: string;
|
606
618
|
Version?: string;
|
607
619
|
}
|
608
620
|
/**
|
@@ -119,7 +119,7 @@ class NetworkManagerLink extends ResourceBase {
|
|
119
119
|
}
|
120
120
|
}
|
121
121
|
NetworkManagerLink.Type = "AWS::NetworkManager::Link";
|
122
|
-
NetworkManagerLink.AttributeNames = ["LinkArn", "LinkId"];
|
122
|
+
NetworkManagerLink.AttributeNames = ["LinkArn", "State", "CreatedAt", "LinkId"];
|
123
123
|
export { NetworkManagerLink };
|
124
124
|
/**
|
125
125
|
* Resource class for AWS::NetworkManager::LinkAssociation
|