@awboost/cfntypes 1.0.0-beta.63 → 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-ConnectCampaigns.d.ts +12 -1
- 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-ElasticLoadBalancingV2.d.ts +11 -10
- package/lib/resources.generated/AWS-ElasticLoadBalancingV2.js +3 -2
- 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 +32 -40
- 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 +72 -1
- package/lib/resources.generated/AWS-IoT.js +26 -0
- package/lib/resources.generated/AWS-Kendra.d.ts +0 -9
- package/lib/resources.generated/AWS-Lambda.d.ts +24 -11
- package/lib/resources.generated/AWS-Lambda.js +1 -1
- package/lib/resources.generated/AWS-NetworkManager.d.ts +7 -0
- package/lib/resources.generated/AWS-NetworkManager.js +3 -3
- package/lib/resources.generated/AWS-QuickSight.d.ts +207 -1
- package/lib/resources.generated/AWS-S3ObjectLambda.d.ts +1 -11
- package/lib/resources.generated/AWS-S3ObjectLambda.js +0 -2
- package/lib/resources.generated/AWS-SageMaker.d.ts +6 -0
- package/lib/resources.generated/AWS-WAFv2.d.ts +1 -0
- package/lib/resources.generated/core.d.ts +1 -1
- package/package.json +2 -2
@@ -291,11 +291,11 @@ export interface ElasticLoadBalancingV2ListenerRuleTargetGroupTuple {
|
|
291
291
|
/**
|
292
292
|
* Type definition for AWS::ElasticLoadBalancingV2::LoadBalancer.LoadBalancerAttribute
|
293
293
|
*
|
294
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-
|
294
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-loadbalancerattribute.html | AWS::ElasticLoadBalancingV2::LoadBalancer.LoadBalancerAttribute}
|
295
295
|
*/
|
296
296
|
export interface ElasticLoadBalancingV2LoadBalancerLoadBalancerAttribute {
|
297
|
-
Key?: string;
|
298
297
|
Value?: string;
|
298
|
+
Key?: string;
|
299
299
|
}
|
300
300
|
/**
|
301
301
|
* Type definition for AWS::ElasticLoadBalancingV2::LoadBalancer.SubnetMapping
|
@@ -305,8 +305,8 @@ export interface ElasticLoadBalancingV2LoadBalancerLoadBalancerAttribute {
|
|
305
305
|
export interface ElasticLoadBalancingV2LoadBalancerSubnetMapping {
|
306
306
|
AllocationId?: string;
|
307
307
|
IPv6Address?: string;
|
308
|
-
PrivateIPv4Address?: string;
|
309
308
|
SubnetId: string;
|
309
|
+
PrivateIPv4Address?: string;
|
310
310
|
}
|
311
311
|
/**
|
312
312
|
* Type definition for AWS::ElasticLoadBalancingV2::TargetGroup.Matcher
|
@@ -424,14 +424,14 @@ export declare class ElasticLoadBalancingV2ListenerRule extends ResourceBase<"AW
|
|
424
424
|
*/
|
425
425
|
export interface ElasticLoadBalancingV2LoadBalancerProps {
|
426
426
|
IpAddressType?: string;
|
427
|
-
LoadBalancerAttributes?: any[];
|
428
|
-
Name?: string;
|
429
|
-
Scheme?: string;
|
430
427
|
SecurityGroups?: any[];
|
431
|
-
|
428
|
+
LoadBalancerAttributes?: any[];
|
432
429
|
Subnets?: any[];
|
433
|
-
Tags?: Tag[];
|
434
430
|
Type?: string;
|
431
|
+
Scheme?: string;
|
432
|
+
Tags?: Tag[];
|
433
|
+
Name?: string;
|
434
|
+
SubnetMappings?: any[];
|
435
435
|
}
|
436
436
|
/**
|
437
437
|
* Attributes type definition for AWS::ElasticLoadBalancingV2::LoadBalancer
|
@@ -439,11 +439,12 @@ export interface ElasticLoadBalancingV2LoadBalancerProps {
|
|
439
439
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html | AWS::ElasticLoadBalancingV2::LoadBalancer}
|
440
440
|
*/
|
441
441
|
export interface ElasticLoadBalancingV2LoadBalancerAttribs {
|
442
|
+
SecurityGroups?: any[];
|
443
|
+
LoadBalancerName?: string;
|
442
444
|
CanonicalHostedZoneID?: string;
|
445
|
+
LoadBalancerArn?: string;
|
443
446
|
DNSName?: string;
|
444
447
|
LoadBalancerFullName?: string;
|
445
|
-
LoadBalancerName?: string;
|
446
|
-
SecurityGroups?: any[];
|
447
448
|
}
|
448
449
|
/**
|
449
450
|
* Resource class for AWS::ElasticLoadBalancingV2::LoadBalancer
|
@@ -50,11 +50,12 @@ class ElasticLoadBalancingV2LoadBalancer extends ResourceBase {
|
|
50
50
|
}
|
51
51
|
ElasticLoadBalancingV2LoadBalancer.Type = "AWS::ElasticLoadBalancingV2::LoadBalancer";
|
52
52
|
ElasticLoadBalancingV2LoadBalancer.AttributeNames = [
|
53
|
+
"SecurityGroups",
|
54
|
+
"LoadBalancerName",
|
53
55
|
"CanonicalHostedZoneID",
|
56
|
+
"LoadBalancerArn",
|
54
57
|
"DNSName",
|
55
58
|
"LoadBalancerFullName",
|
56
|
-
"LoadBalancerName",
|
57
|
-
"SecurityGroups",
|
58
59
|
];
|
59
60
|
export { ElasticLoadBalancingV2LoadBalancer };
|
60
61
|
/**
|
@@ -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
|
*
|
@@ -135,9 +135,9 @@ export interface EventsEventBusPolicyCondition {
|
|
135
135
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-awsvpcconfiguration.html | AWS::Events::Rule.AwsVpcConfiguration}
|
136
136
|
*/
|
137
137
|
export interface EventsRuleAwsVpcConfiguration {
|
138
|
-
AssignPublicIp?: string;
|
139
138
|
SecurityGroups?: any[];
|
140
139
|
Subnets: any[];
|
140
|
+
AssignPublicIp?: string;
|
141
141
|
}
|
142
142
|
/**
|
143
143
|
* Type definition for AWS::Events::Rule.BatchArrayProperties
|
@@ -154,9 +154,9 @@ export interface EventsRuleBatchArrayProperties {
|
|
154
154
|
*/
|
155
155
|
export interface EventsRuleBatchParameters {
|
156
156
|
ArrayProperties?: EventsRuleBatchArrayProperties;
|
157
|
-
JobDefinition: string;
|
158
157
|
JobName: string;
|
159
158
|
RetryStrategy?: EventsRuleBatchRetryStrategy;
|
159
|
+
JobDefinition: string;
|
160
160
|
}
|
161
161
|
/**
|
162
162
|
* Type definition for AWS::Events::Rule.BatchRetryStrategy
|
@@ -172,8 +172,8 @@ export interface EventsRuleBatchRetryStrategy {
|
|
172
172
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-capacityproviderstrategyitem.html | AWS::Events::Rule.CapacityProviderStrategyItem}
|
173
173
|
*/
|
174
174
|
export interface EventsRuleCapacityProviderStrategyItem {
|
175
|
-
Base?: number;
|
176
175
|
CapacityProvider: string;
|
176
|
+
Base?: number;
|
177
177
|
Weight?: number;
|
178
178
|
}
|
179
179
|
/**
|
@@ -190,19 +190,19 @@ export interface EventsRuleDeadLetterConfig {
|
|
190
190
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html | AWS::Events::Rule.EcsParameters}
|
191
191
|
*/
|
192
192
|
export interface EventsRuleEcsParameters {
|
193
|
-
|
193
|
+
PlatformVersion?: string;
|
194
|
+
Group?: string;
|
194
195
|
EnableECSManagedTags?: boolean;
|
195
196
|
EnableExecuteCommand?: boolean;
|
196
|
-
Group?: string;
|
197
|
-
LaunchType?: string;
|
198
|
-
NetworkConfiguration?: EventsRuleNetworkConfiguration;
|
199
197
|
PlacementConstraints?: any[];
|
200
|
-
PlacementStrategies?: any[];
|
201
|
-
PlatformVersion?: string;
|
202
198
|
PropagateTags?: string;
|
199
|
+
TaskCount?: number;
|
200
|
+
PlacementStrategies?: any[];
|
201
|
+
CapacityProviderStrategy?: any[];
|
202
|
+
LaunchType?: string;
|
203
203
|
ReferenceId?: string;
|
204
204
|
TagList?: any[];
|
205
|
-
|
205
|
+
NetworkConfiguration?: EventsRuleNetworkConfiguration;
|
206
206
|
TaskDefinitionArn: string;
|
207
207
|
}
|
208
208
|
/**
|
@@ -211,8 +211,8 @@ export interface EventsRuleEcsParameters {
|
|
211
211
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-httpparameters.html | AWS::Events::Rule.HttpParameters}
|
212
212
|
*/
|
213
213
|
export interface EventsRuleHttpParameters {
|
214
|
-
HeaderParameters?: Record<string, any>;
|
215
214
|
PathParameterValues?: any[];
|
215
|
+
HeaderParameters?: Record<string, any>;
|
216
216
|
QueryStringParameters?: Record<string, any>;
|
217
217
|
}
|
218
218
|
/**
|
@@ -246,8 +246,8 @@ export interface EventsRuleNetworkConfiguration {
|
|
246
246
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-placementconstraint.html | AWS::Events::Rule.PlacementConstraint}
|
247
247
|
*/
|
248
248
|
export interface EventsRulePlacementConstraint {
|
249
|
-
Expression?: string;
|
250
249
|
Type?: string;
|
250
|
+
Expression?: string;
|
251
251
|
}
|
252
252
|
/**
|
253
253
|
* Type definition for AWS::Events::Rule.PlacementStrategy
|
@@ -264,11 +264,12 @@ export interface EventsRulePlacementStrategy {
|
|
264
264
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-redshiftdataparameters.html | AWS::Events::Rule.RedshiftDataParameters}
|
265
265
|
*/
|
266
266
|
export interface EventsRuleRedshiftDataParameters {
|
267
|
+
StatementName?: string;
|
268
|
+
Sqls?: any[];
|
267
269
|
Database: string;
|
268
|
-
DbUser?: string;
|
269
270
|
SecretManagerArn?: string;
|
271
|
+
DbUser?: string;
|
270
272
|
Sql?: string;
|
271
|
-
StatementName?: string;
|
272
273
|
WithEvent?: boolean;
|
273
274
|
}
|
274
275
|
/**
|
@@ -277,8 +278,8 @@ export interface EventsRuleRedshiftDataParameters {
|
|
277
278
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-retrypolicy.html | AWS::Events::Rule.RetryPolicy}
|
278
279
|
*/
|
279
280
|
export interface EventsRuleRetryPolicy {
|
280
|
-
MaximumEventAgeInSeconds?: number;
|
281
281
|
MaximumRetryAttempts?: number;
|
282
|
+
MaximumEventAgeInSeconds?: number;
|
282
283
|
}
|
283
284
|
/**
|
284
285
|
* Type definition for AWS::Events::Rule.RunCommandParameters
|
@@ -294,8 +295,8 @@ export interface EventsRuleRunCommandParameters {
|
|
294
295
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandtarget.html | AWS::Events::Rule.RunCommandTarget}
|
295
296
|
*/
|
296
297
|
export interface EventsRuleRunCommandTarget {
|
297
|
-
Key: string;
|
298
298
|
Values: any[];
|
299
|
+
Key: string;
|
299
300
|
}
|
300
301
|
/**
|
301
302
|
* Type definition for AWS::Events::Rule.SageMakerPipelineParameter
|
@@ -303,8 +304,8 @@ export interface EventsRuleRunCommandTarget {
|
|
303
304
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-sagemakerpipelineparameter.html | AWS::Events::Rule.SageMakerPipelineParameter}
|
304
305
|
*/
|
305
306
|
export interface EventsRuleSageMakerPipelineParameter {
|
306
|
-
Name: string;
|
307
307
|
Value: string;
|
308
|
+
Name: string;
|
308
309
|
}
|
309
310
|
/**
|
310
311
|
* Type definition for AWS::Events::Rule.SageMakerPipelineParameters
|
@@ -322,37 +323,28 @@ export interface EventsRuleSageMakerPipelineParameters {
|
|
322
323
|
export interface EventsRuleSqsParameters {
|
323
324
|
MessageGroupId: string;
|
324
325
|
}
|
325
|
-
/**
|
326
|
-
* Type definition for AWS::Events::Rule.Tag
|
327
|
-
*
|
328
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-tag.html | AWS::Events::Rule.Tag}
|
329
|
-
*/
|
330
|
-
export interface EventsRuleTag {
|
331
|
-
Key?: string;
|
332
|
-
Value?: string;
|
333
|
-
}
|
334
326
|
/**
|
335
327
|
* Type definition for AWS::Events::Rule.Target
|
336
328
|
*
|
337
329
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html | AWS::Events::Rule.Target}
|
338
330
|
*/
|
339
331
|
export interface EventsRuleTarget {
|
340
|
-
Arn: string;
|
341
|
-
BatchParameters?: EventsRuleBatchParameters;
|
342
|
-
DeadLetterConfig?: EventsRuleDeadLetterConfig;
|
343
|
-
EcsParameters?: EventsRuleEcsParameters;
|
344
|
-
HttpParameters?: EventsRuleHttpParameters;
|
345
|
-
Id: string;
|
346
|
-
Input?: string;
|
347
332
|
InputPath?: string;
|
333
|
+
HttpParameters?: EventsRuleHttpParameters;
|
334
|
+
DeadLetterConfig?: EventsRuleDeadLetterConfig;
|
335
|
+
RunCommandParameters?: EventsRuleRunCommandParameters;
|
348
336
|
InputTransformer?: EventsRuleInputTransformer;
|
349
337
|
KinesisParameters?: EventsRuleKinesisParameters;
|
350
|
-
RedshiftDataParameters?: EventsRuleRedshiftDataParameters;
|
351
|
-
RetryPolicy?: EventsRuleRetryPolicy;
|
352
338
|
RoleArn?: string;
|
353
|
-
|
354
|
-
|
339
|
+
RedshiftDataParameters?: EventsRuleRedshiftDataParameters;
|
340
|
+
Input?: string;
|
355
341
|
SqsParameters?: EventsRuleSqsParameters;
|
342
|
+
EcsParameters?: EventsRuleEcsParameters;
|
343
|
+
BatchParameters?: EventsRuleBatchParameters;
|
344
|
+
Id: string;
|
345
|
+
Arn: string;
|
346
|
+
SageMakerPipelineParameters?: EventsRuleSageMakerPipelineParameters;
|
347
|
+
RetryPolicy?: EventsRuleRetryPolicy;
|
356
348
|
}
|
357
349
|
/**
|
358
350
|
* Type definition for AWS::Events::ApiDestination
|
@@ -539,14 +531,14 @@ export declare class EventsEventBusPolicy extends ResourceBase<"AWS::Events::Eve
|
|
539
531
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html | AWS::Events::Rule}
|
540
532
|
*/
|
541
533
|
export interface EventsRuleProps {
|
542
|
-
Description?: string;
|
543
534
|
EventBusName?: string;
|
544
535
|
EventPattern?: object;
|
545
|
-
Name?: string;
|
546
|
-
RoleArn?: string;
|
547
536
|
ScheduleExpression?: string;
|
537
|
+
Description?: string;
|
548
538
|
State?: string;
|
549
539
|
Targets?: any[];
|
540
|
+
RoleArn?: string;
|
541
|
+
Name?: string;
|
550
542
|
}
|
551
543
|
/**
|
552
544
|
* Attributes type definition for AWS::Events::Rule
|
@@ -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) {
|
@@ -393,8 +393,8 @@ export interface IoTTopicRuleAction {
|
|
393
393
|
IotEvents?: IoTTopicRuleIotEventsAction;
|
394
394
|
Firehose?: IoTTopicRuleFirehoseAction;
|
395
395
|
Republish?: IoTTopicRuleRepublishAction;
|
396
|
-
StepFunctions?: IoTTopicRuleStepFunctionsAction;
|
397
396
|
Kafka?: IoTTopicRuleKafkaAction;
|
397
|
+
StepFunctions?: IoTTopicRuleStepFunctionsAction;
|
398
398
|
DynamoDB?: IoTTopicRuleDynamoDBAction;
|
399
399
|
Http?: IoTTopicRuleHttpAction;
|
400
400
|
OpenSearch?: IoTTopicRuleOpenSearchAction;
|
@@ -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
|
@@ -1379,6 +1390,66 @@ export declare class IoTSecurityProfile extends ResourceBase<"AWS::IoT::Security
|
|
1379
1390
|
static readonly AttributeNames: readonly (keyof IoTSecurityProfileAttribs)[];
|
1380
1391
|
constructor(logicalId: string, properties: IoTSecurityProfileProps, options?: ResourceOptions);
|
1381
1392
|
}
|
1393
|
+
/**
|
1394
|
+
* Type definition for AWS::IoT::SoftwarePackage
|
1395
|
+
*
|
1396
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html | AWS::IoT::SoftwarePackage}
|
1397
|
+
*/
|
1398
|
+
export interface IoTSoftwarePackageProps {
|
1399
|
+
Description?: string;
|
1400
|
+
PackageName?: string;
|
1401
|
+
Tags?: Tag[];
|
1402
|
+
}
|
1403
|
+
/**
|
1404
|
+
* Attributes type definition for AWS::IoT::SoftwarePackage
|
1405
|
+
*
|
1406
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html | AWS::IoT::SoftwarePackage}
|
1407
|
+
*/
|
1408
|
+
export interface IoTSoftwarePackageAttribs {
|
1409
|
+
PackageArn?: string;
|
1410
|
+
}
|
1411
|
+
/**
|
1412
|
+
* Resource class for AWS::IoT::SoftwarePackage
|
1413
|
+
*
|
1414
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html | AWS::IoT::SoftwarePackage}
|
1415
|
+
*/
|
1416
|
+
export declare class IoTSoftwarePackage extends ResourceBase<"AWS::IoT::SoftwarePackage", IoTSoftwarePackageProps, IoTSoftwarePackageAttribs> {
|
1417
|
+
static readonly Type = "AWS::IoT::SoftwarePackage";
|
1418
|
+
static readonly AttributeNames: readonly (keyof IoTSoftwarePackageAttribs)[];
|
1419
|
+
constructor(logicalId: string, properties: IoTSoftwarePackageProps, options?: ResourceOptions);
|
1420
|
+
}
|
1421
|
+
/**
|
1422
|
+
* Type definition for AWS::IoT::SoftwarePackageVersion
|
1423
|
+
*
|
1424
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html | AWS::IoT::SoftwarePackageVersion}
|
1425
|
+
*/
|
1426
|
+
export interface IoTSoftwarePackageVersionProps {
|
1427
|
+
Description?: string;
|
1428
|
+
PackageName: string;
|
1429
|
+
Attributes?: Record<string, any>;
|
1430
|
+
VersionName?: string;
|
1431
|
+
Tags?: Tag[];
|
1432
|
+
}
|
1433
|
+
/**
|
1434
|
+
* Attributes type definition for AWS::IoT::SoftwarePackageVersion
|
1435
|
+
*
|
1436
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html | AWS::IoT::SoftwarePackageVersion}
|
1437
|
+
*/
|
1438
|
+
export interface IoTSoftwarePackageVersionAttribs {
|
1439
|
+
PackageVersionArn?: string;
|
1440
|
+
Status?: string;
|
1441
|
+
ErrorReason?: string;
|
1442
|
+
}
|
1443
|
+
/**
|
1444
|
+
* Resource class for AWS::IoT::SoftwarePackageVersion
|
1445
|
+
*
|
1446
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html | AWS::IoT::SoftwarePackageVersion}
|
1447
|
+
*/
|
1448
|
+
export declare class IoTSoftwarePackageVersion extends ResourceBase<"AWS::IoT::SoftwarePackageVersion", IoTSoftwarePackageVersionProps, IoTSoftwarePackageVersionAttribs> {
|
1449
|
+
static readonly Type = "AWS::IoT::SoftwarePackageVersion";
|
1450
|
+
static readonly AttributeNames: readonly (keyof IoTSoftwarePackageVersionAttribs)[];
|
1451
|
+
constructor(logicalId: string, properties: IoTSoftwarePackageVersionProps, options?: ResourceOptions);
|
1452
|
+
}
|
1382
1453
|
/**
|
1383
1454
|
* Type definition for AWS::IoT::Thing
|
1384
1455
|
*
|
@@ -249,6 +249,32 @@ class IoTSecurityProfile extends ResourceBase {
|
|
249
249
|
IoTSecurityProfile.Type = "AWS::IoT::SecurityProfile";
|
250
250
|
IoTSecurityProfile.AttributeNames = ["SecurityProfileArn"];
|
251
251
|
export { IoTSecurityProfile };
|
252
|
+
/**
|
253
|
+
* Resource class for AWS::IoT::SoftwarePackage
|
254
|
+
*
|
255
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html | AWS::IoT::SoftwarePackage}
|
256
|
+
*/
|
257
|
+
class IoTSoftwarePackage extends ResourceBase {
|
258
|
+
constructor(logicalId, properties, options) {
|
259
|
+
super(IoTSoftwarePackage.Type, IoTSoftwarePackage.AttributeNames, logicalId, properties, options);
|
260
|
+
}
|
261
|
+
}
|
262
|
+
IoTSoftwarePackage.Type = "AWS::IoT::SoftwarePackage";
|
263
|
+
IoTSoftwarePackage.AttributeNames = ["PackageArn"];
|
264
|
+
export { IoTSoftwarePackage };
|
265
|
+
/**
|
266
|
+
* Resource class for AWS::IoT::SoftwarePackageVersion
|
267
|
+
*
|
268
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html | AWS::IoT::SoftwarePackageVersion}
|
269
|
+
*/
|
270
|
+
class IoTSoftwarePackageVersion extends ResourceBase {
|
271
|
+
constructor(logicalId, properties, options) {
|
272
|
+
super(IoTSoftwarePackageVersion.Type, IoTSoftwarePackageVersion.AttributeNames, logicalId, properties, options);
|
273
|
+
}
|
274
|
+
}
|
275
|
+
IoTSoftwarePackageVersion.Type = "AWS::IoT::SoftwarePackageVersion";
|
276
|
+
IoTSoftwarePackageVersion.AttributeNames = ["PackageVersionArn", "Status", "ErrorReason"];
|
277
|
+
export { IoTSoftwarePackageVersion };
|
252
278
|
/**
|
253
279
|
* Resource class for AWS::IoT::Thing
|
254
280
|
*
|
@@ -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
|
*
|