@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
@@ -101,6 +101,7 @@ export declare class AppConfigApplication extends ResourceBase<"AWS::AppConfig::
|
|
101
101
|
export interface AppConfigConfigurationProfileProps {
|
102
102
|
LocationUri: string;
|
103
103
|
Type?: string;
|
104
|
+
KmsKeyIdentifier?: string;
|
104
105
|
Description?: string;
|
105
106
|
Validators?: any[];
|
106
107
|
RetrievalRoleArn?: string;
|
@@ -34,7 +34,7 @@ export interface AppIntegrationsEventIntegrationEventFilter {
|
|
34
34
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-dataintegration.html | AWS::AppIntegrations::DataIntegration}
|
35
35
|
*/
|
36
36
|
export interface AppIntegrationsDataIntegrationProps {
|
37
|
-
ScheduleConfig
|
37
|
+
ScheduleConfig?: AppIntegrationsDataIntegrationScheduleConfig;
|
38
38
|
FileConfiguration?: AppIntegrationsDataIntegrationFileConfiguration;
|
39
39
|
Description?: string;
|
40
40
|
SourceURI: string;
|
@@ -7,8 +7,8 @@ import { Tag } from "./core.js";
|
|
7
7
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-acceleratorcountrequest.html | AWS::AutoScaling::AutoScalingGroup.AcceleratorCountRequest}
|
8
8
|
*/
|
9
9
|
export interface AutoScalingAutoScalingGroupAcceleratorCountRequest {
|
10
|
-
Max?: number;
|
11
10
|
Min?: number;
|
11
|
+
Max?: number;
|
12
12
|
}
|
13
13
|
/**
|
14
14
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.AcceleratorTotalMemoryMiBRequest
|
@@ -16,8 +16,8 @@ export interface AutoScalingAutoScalingGroupAcceleratorCountRequest {
|
|
16
16
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-acceleratortotalmemorymibrequest.html | AWS::AutoScaling::AutoScalingGroup.AcceleratorTotalMemoryMiBRequest}
|
17
17
|
*/
|
18
18
|
export interface AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest {
|
19
|
-
Max?: number;
|
20
19
|
Min?: number;
|
20
|
+
Max?: number;
|
21
21
|
}
|
22
22
|
/**
|
23
23
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.BaselineEbsBandwidthMbpsRequest
|
@@ -25,56 +25,56 @@ export interface AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest {
|
|
25
25
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-baselineebsbandwidthmbpsrequest.html | AWS::AutoScaling::AutoScalingGroup.BaselineEbsBandwidthMbpsRequest}
|
26
26
|
*/
|
27
27
|
export interface AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest {
|
28
|
-
Max?: number;
|
29
28
|
Min?: number;
|
29
|
+
Max?: number;
|
30
30
|
}
|
31
31
|
/**
|
32
32
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.InstanceRequirements
|
33
33
|
*
|
34
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
34
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-instancerequirements.html | AWS::AutoScaling::AutoScalingGroup.InstanceRequirements}
|
35
35
|
*/
|
36
36
|
export interface AutoScalingAutoScalingGroupInstanceRequirements {
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
AcceleratorTotalMemoryMiB?: AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest;
|
37
|
+
LocalStorageTypes?: any[];
|
38
|
+
InstanceGenerations?: any[];
|
39
|
+
NetworkInterfaceCount?: AutoScalingAutoScalingGroupNetworkInterfaceCountRequest;
|
41
40
|
AcceleratorTypes?: any[];
|
42
|
-
|
43
|
-
|
44
|
-
BaselineEbsBandwidthMbps?: AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest;
|
45
|
-
BurstablePerformance?: string;
|
46
|
-
CpuManufacturers?: any[];
|
41
|
+
MemoryGiBPerVCpu?: AutoScalingAutoScalingGroupMemoryGiBPerVCpuRequest;
|
42
|
+
AcceleratorManufacturers?: any[];
|
47
43
|
ExcludedInstanceTypes?: any[];
|
48
|
-
|
44
|
+
VCpuCount?: AutoScalingAutoScalingGroupVCpuCountRequest;
|
45
|
+
AllowedInstanceTypes?: any[];
|
49
46
|
LocalStorage?: string;
|
50
|
-
|
51
|
-
|
52
|
-
MemoryMiB?: AutoScalingAutoScalingGroupMemoryMiBRequest;
|
47
|
+
CpuManufacturers?: any[];
|
48
|
+
AcceleratorCount?: AutoScalingAutoScalingGroupAcceleratorCountRequest;
|
53
49
|
NetworkBandwidthGbps?: AutoScalingAutoScalingGroupNetworkBandwidthGbpsRequest;
|
54
|
-
|
55
|
-
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
50
|
+
BareMetal?: string;
|
56
51
|
RequireHibernateSupport?: boolean;
|
52
|
+
BaselineEbsBandwidthMbps?: AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest;
|
57
53
|
SpotMaxPricePercentageOverLowestPrice?: number;
|
54
|
+
AcceleratorNames?: any[];
|
55
|
+
AcceleratorTotalMemoryMiB?: AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest;
|
56
|
+
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
57
|
+
BurstablePerformance?: string;
|
58
|
+
MemoryMiB?: AutoScalingAutoScalingGroupMemoryMiBRequest;
|
58
59
|
TotalLocalStorageGB?: AutoScalingAutoScalingGroupTotalLocalStorageGBRequest;
|
59
|
-
VCpuCount?: AutoScalingAutoScalingGroupVCpuCountRequest;
|
60
60
|
}
|
61
61
|
/**
|
62
62
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.InstancesDistribution
|
63
63
|
*
|
64
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
64
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-instancesdistribution.html | AWS::AutoScaling::AutoScalingGroup.InstancesDistribution}
|
65
65
|
*/
|
66
66
|
export interface AutoScalingAutoScalingGroupInstancesDistribution {
|
67
67
|
OnDemandAllocationStrategy?: string;
|
68
68
|
OnDemandBaseCapacity?: number;
|
69
69
|
OnDemandPercentageAboveBaseCapacity?: number;
|
70
|
-
SpotAllocationStrategy?: string;
|
71
70
|
SpotInstancePools?: number;
|
71
|
+
SpotAllocationStrategy?: string;
|
72
72
|
SpotMaxPrice?: string;
|
73
73
|
}
|
74
74
|
/**
|
75
75
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.LaunchTemplate
|
76
76
|
*
|
77
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
77
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplate.html | AWS::AutoScaling::AutoScalingGroup.LaunchTemplate}
|
78
78
|
*/
|
79
79
|
export interface AutoScalingAutoScalingGroupLaunchTemplate {
|
80
80
|
LaunchTemplateSpecification: AutoScalingAutoScalingGroupLaunchTemplateSpecification;
|
@@ -83,13 +83,13 @@ export interface AutoScalingAutoScalingGroupLaunchTemplate {
|
|
83
83
|
/**
|
84
84
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.LaunchTemplateOverrides
|
85
85
|
*
|
86
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
86
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html | AWS::AutoScaling::AutoScalingGroup.LaunchTemplateOverrides}
|
87
87
|
*/
|
88
88
|
export interface AutoScalingAutoScalingGroupLaunchTemplateOverrides {
|
89
|
-
InstanceRequirements?: AutoScalingAutoScalingGroupInstanceRequirements;
|
90
|
-
InstanceType?: string;
|
91
89
|
LaunchTemplateSpecification?: AutoScalingAutoScalingGroupLaunchTemplateSpecification;
|
92
90
|
WeightedCapacity?: string;
|
91
|
+
InstanceRequirements?: AutoScalingAutoScalingGroupInstanceRequirements;
|
92
|
+
InstanceType?: string;
|
93
93
|
}
|
94
94
|
/**
|
95
95
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.LaunchTemplateSpecification
|
@@ -97,9 +97,9 @@ export interface AutoScalingAutoScalingGroupLaunchTemplateOverrides {
|
|
97
97
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html | AWS::AutoScaling::AutoScalingGroup.LaunchTemplateSpecification}
|
98
98
|
*/
|
99
99
|
export interface AutoScalingAutoScalingGroupLaunchTemplateSpecification {
|
100
|
-
LaunchTemplateId?: string;
|
101
100
|
LaunchTemplateName?: string;
|
102
101
|
Version: string;
|
102
|
+
LaunchTemplateId?: string;
|
103
103
|
}
|
104
104
|
/**
|
105
105
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.LifecycleHookSpecification
|
@@ -107,11 +107,11 @@ export interface AutoScalingAutoScalingGroupLaunchTemplateSpecification {
|
|
107
107
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-lifecyclehookspecification.html | AWS::AutoScaling::AutoScalingGroup.LifecycleHookSpecification}
|
108
108
|
*/
|
109
109
|
export interface AutoScalingAutoScalingGroupLifecycleHookSpecification {
|
110
|
-
DefaultResult?: string;
|
111
|
-
HeartbeatTimeout?: number;
|
112
110
|
LifecycleHookName: string;
|
113
111
|
LifecycleTransition: string;
|
112
|
+
HeartbeatTimeout?: number;
|
114
113
|
NotificationMetadata?: string;
|
114
|
+
DefaultResult?: string;
|
115
115
|
NotificationTargetARN?: string;
|
116
116
|
RoleARN?: string;
|
117
117
|
}
|
@@ -121,8 +121,8 @@ export interface AutoScalingAutoScalingGroupLifecycleHookSpecification {
|
|
121
121
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-memorygibpervcpurequest.html | AWS::AutoScaling::AutoScalingGroup.MemoryGiBPerVCpuRequest}
|
122
122
|
*/
|
123
123
|
export interface AutoScalingAutoScalingGroupMemoryGiBPerVCpuRequest {
|
124
|
-
Max?: number;
|
125
124
|
Min?: number;
|
125
|
+
Max?: number;
|
126
126
|
}
|
127
127
|
/**
|
128
128
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.MemoryMiBRequest
|
@@ -130,22 +130,22 @@ export interface AutoScalingAutoScalingGroupMemoryGiBPerVCpuRequest {
|
|
130
130
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-memorymibrequest.html | AWS::AutoScaling::AutoScalingGroup.MemoryMiBRequest}
|
131
131
|
*/
|
132
132
|
export interface AutoScalingAutoScalingGroupMemoryMiBRequest {
|
133
|
-
Max?: number;
|
134
133
|
Min?: number;
|
134
|
+
Max?: number;
|
135
135
|
}
|
136
136
|
/**
|
137
137
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.MetricsCollection
|
138
138
|
*
|
139
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-
|
139
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-metricscollection.html | AWS::AutoScaling::AutoScalingGroup.MetricsCollection}
|
140
140
|
*/
|
141
141
|
export interface AutoScalingAutoScalingGroupMetricsCollection {
|
142
|
-
Granularity: string;
|
143
142
|
Metrics?: any[];
|
143
|
+
Granularity: string;
|
144
144
|
}
|
145
145
|
/**
|
146
146
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.MixedInstancesPolicy
|
147
147
|
*
|
148
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
148
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-mixedinstancespolicy.html | AWS::AutoScaling::AutoScalingGroup.MixedInstancesPolicy}
|
149
149
|
*/
|
150
150
|
export interface AutoScalingAutoScalingGroupMixedInstancesPolicy {
|
151
151
|
InstancesDistribution?: AutoScalingAutoScalingGroupInstancesDistribution;
|
@@ -157,8 +157,8 @@ export interface AutoScalingAutoScalingGroupMixedInstancesPolicy {
|
|
157
157
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-networkbandwidthgbpsrequest.html | AWS::AutoScaling::AutoScalingGroup.NetworkBandwidthGbpsRequest}
|
158
158
|
*/
|
159
159
|
export interface AutoScalingAutoScalingGroupNetworkBandwidthGbpsRequest {
|
160
|
-
Max?: number;
|
161
160
|
Min?: number;
|
161
|
+
Max?: number;
|
162
162
|
}
|
163
163
|
/**
|
164
164
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.NetworkInterfaceCountRequest
|
@@ -166,27 +166,27 @@ export interface AutoScalingAutoScalingGroupNetworkBandwidthGbpsRequest {
|
|
166
166
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-networkinterfacecountrequest.html | AWS::AutoScaling::AutoScalingGroup.NetworkInterfaceCountRequest}
|
167
167
|
*/
|
168
168
|
export interface AutoScalingAutoScalingGroupNetworkInterfaceCountRequest {
|
169
|
-
Max?: number;
|
170
169
|
Min?: number;
|
170
|
+
Max?: number;
|
171
171
|
}
|
172
172
|
/**
|
173
173
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.NotificationConfiguration
|
174
174
|
*
|
175
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-
|
175
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-notificationconfiguration.html | AWS::AutoScaling::AutoScalingGroup.NotificationConfiguration}
|
176
176
|
*/
|
177
177
|
export interface AutoScalingAutoScalingGroupNotificationConfiguration {
|
178
|
+
TopicARN: any[];
|
178
179
|
NotificationTypes?: any[];
|
179
|
-
TopicARN: string;
|
180
180
|
}
|
181
181
|
/**
|
182
182
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.TagProperty
|
183
183
|
*
|
184
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-
|
184
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-tagproperty.html | AWS::AutoScaling::AutoScalingGroup.TagProperty}
|
185
185
|
*/
|
186
186
|
export interface AutoScalingAutoScalingGroupTagProperty {
|
187
|
+
Value: string;
|
187
188
|
Key: string;
|
188
189
|
PropagateAtLaunch: boolean;
|
189
|
-
Value: string;
|
190
190
|
}
|
191
191
|
/**
|
192
192
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.TotalLocalStorageGBRequest
|
@@ -194,8 +194,8 @@ export interface AutoScalingAutoScalingGroupTagProperty {
|
|
194
194
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-totallocalstoragegbrequest.html | AWS::AutoScaling::AutoScalingGroup.TotalLocalStorageGBRequest}
|
195
195
|
*/
|
196
196
|
export interface AutoScalingAutoScalingGroupTotalLocalStorageGBRequest {
|
197
|
-
Max?: number;
|
198
197
|
Min?: number;
|
198
|
+
Max?: number;
|
199
199
|
}
|
200
200
|
/**
|
201
201
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.VCpuCountRequest
|
@@ -203,8 +203,8 @@ export interface AutoScalingAutoScalingGroupTotalLocalStorageGBRequest {
|
|
203
203
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-vcpucountrequest.html | AWS::AutoScaling::AutoScalingGroup.VCpuCountRequest}
|
204
204
|
*/
|
205
205
|
export interface AutoScalingAutoScalingGroupVCpuCountRequest {
|
206
|
-
Max?: number;
|
207
206
|
Min?: number;
|
207
|
+
Max?: number;
|
208
208
|
}
|
209
209
|
/**
|
210
210
|
* Type definition for AWS::AutoScaling::LaunchConfiguration.BlockDevice
|
@@ -412,58 +412,46 @@ export interface AutoScalingWarmPoolInstanceReusePolicy {
|
|
412
412
|
/**
|
413
413
|
* Type definition for AWS::AutoScaling::AutoScalingGroup
|
414
414
|
*
|
415
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
415
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html | AWS::AutoScaling::AutoScalingGroup}
|
416
416
|
*/
|
417
417
|
export interface AutoScalingAutoScalingGroupProps {
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
418
|
+
LifecycleHookSpecificationList?: any[];
|
419
|
+
LoadBalancerNames?: any[];
|
420
|
+
LaunchConfigurationName?: string;
|
421
|
+
ServiceLinkedRoleARN?: string;
|
422
|
+
TargetGroupARNs?: any[];
|
422
423
|
Cooldown?: string;
|
423
|
-
|
424
|
+
NotificationConfigurations?: any[];
|
424
425
|
DesiredCapacity?: string;
|
425
|
-
DesiredCapacityType?: string;
|
426
426
|
HealthCheckGracePeriod?: number;
|
427
|
-
|
428
|
-
|
429
|
-
LaunchConfigurationName?: string;
|
427
|
+
DefaultInstanceWarmup?: number;
|
428
|
+
NewInstancesProtectedFromScaleIn?: boolean;
|
430
429
|
LaunchTemplate?: AutoScalingAutoScalingGroupLaunchTemplateSpecification;
|
431
|
-
LifecycleHookSpecificationList?: any[];
|
432
|
-
LoadBalancerNames?: any[];
|
433
|
-
MaxInstanceLifetime?: number;
|
434
|
-
MaxSize: string;
|
435
|
-
MetricsCollection?: any[];
|
436
|
-
MinSize: string;
|
437
430
|
MixedInstancesPolicy?: AutoScalingAutoScalingGroupMixedInstancesPolicy;
|
438
|
-
|
439
|
-
NotificationConfigurations?: any[];
|
440
|
-
PlacementGroup?: string;
|
441
|
-
ServiceLinkedRoleARN?: string;
|
431
|
+
VPCZoneIdentifier?: any[];
|
442
432
|
Tags?: Tag[];
|
443
|
-
|
433
|
+
Context?: string;
|
434
|
+
CapacityRebalance?: boolean;
|
435
|
+
InstanceId?: string;
|
436
|
+
AvailabilityZones?: any[];
|
437
|
+
MetricsCollection?: any[];
|
438
|
+
MaxSize: string;
|
439
|
+
MinSize: string;
|
444
440
|
TerminationPolicies?: any[];
|
445
|
-
|
446
|
-
|
447
|
-
/**
|
448
|
-
* Attributes type definition for AWS::AutoScaling::AutoScalingGroup
|
449
|
-
*
|
450
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html | AWS::AutoScaling::AutoScalingGroup}
|
451
|
-
*/
|
452
|
-
export interface AutoScalingAutoScalingGroupAttribs {
|
453
|
-
LaunchConfigurationName?: string;
|
454
|
-
LaunchTemplateSpecification?: string;
|
455
|
-
MixedInstancesPolicy?: string;
|
441
|
+
AutoScalingGroupName?: string;
|
442
|
+
DesiredCapacityType?: string;
|
456
443
|
PlacementGroup?: string;
|
457
|
-
|
444
|
+
HealthCheckType?: string;
|
445
|
+
MaxInstanceLifetime?: number;
|
458
446
|
}
|
459
447
|
/**
|
460
448
|
* Resource class for AWS::AutoScaling::AutoScalingGroup
|
461
449
|
*
|
462
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
450
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html | AWS::AutoScaling::AutoScalingGroup}
|
463
451
|
*/
|
464
|
-
export declare class AutoScalingAutoScalingGroup extends ResourceBase<"AWS::AutoScaling::AutoScalingGroup", AutoScalingAutoScalingGroupProps,
|
452
|
+
export declare class AutoScalingAutoScalingGroup extends ResourceBase<"AWS::AutoScaling::AutoScalingGroup", AutoScalingAutoScalingGroupProps, Record<string, never>> {
|
465
453
|
static readonly Type = "AWS::AutoScaling::AutoScalingGroup";
|
466
|
-
static readonly AttributeNames:
|
454
|
+
static readonly AttributeNames: never[];
|
467
455
|
constructor(logicalId: string, properties: AutoScalingAutoScalingGroupProps, options?: ResourceOptions);
|
468
456
|
}
|
469
457
|
/**
|
@@ -2,7 +2,7 @@ import { ResourceBase } from "../util.js";
|
|
2
2
|
/**
|
3
3
|
* Resource class for AWS::AutoScaling::AutoScalingGroup
|
4
4
|
*
|
5
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
5
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html | AWS::AutoScaling::AutoScalingGroup}
|
6
6
|
*/
|
7
7
|
class AutoScalingAutoScalingGroup extends ResourceBase {
|
8
8
|
constructor(logicalId, properties, options) {
|
@@ -10,13 +10,7 @@ class AutoScalingAutoScalingGroup extends ResourceBase {
|
|
10
10
|
}
|
11
11
|
}
|
12
12
|
AutoScalingAutoScalingGroup.Type = "AWS::AutoScaling::AutoScalingGroup";
|
13
|
-
AutoScalingAutoScalingGroup.AttributeNames = [
|
14
|
-
"LaunchConfigurationName",
|
15
|
-
"LaunchTemplateSpecification",
|
16
|
-
"MixedInstancesPolicy",
|
17
|
-
"PlacementGroup",
|
18
|
-
"VPCZoneIdentifier",
|
19
|
-
];
|
13
|
+
AutoScalingAutoScalingGroup.AttributeNames = [];
|
20
14
|
export { AutoScalingAutoScalingGroup };
|
21
15
|
/**
|
22
16
|
* Resource class for AWS::AutoScaling::LaunchConfiguration
|
@@ -59,6 +59,24 @@ export interface CognitoIdentityPoolRoleAttachmentRoleMapping {
|
|
59
59
|
export interface CognitoIdentityPoolRoleAttachmentRulesConfigurationType {
|
60
60
|
Rules: any[];
|
61
61
|
}
|
62
|
+
/**
|
63
|
+
* Type definition for AWS::Cognito::LogDeliveryConfiguration.CloudWatchLogsConfiguration
|
64
|
+
*
|
65
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-logdeliveryconfiguration-cloudwatchlogsconfiguration.html | AWS::Cognito::LogDeliveryConfiguration.CloudWatchLogsConfiguration}
|
66
|
+
*/
|
67
|
+
export interface CognitoLogDeliveryConfigurationCloudWatchLogsConfiguration {
|
68
|
+
LogGroupArn?: string;
|
69
|
+
}
|
70
|
+
/**
|
71
|
+
* Type definition for AWS::Cognito::LogDeliveryConfiguration.LogConfiguration
|
72
|
+
*
|
73
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-logdeliveryconfiguration-logconfiguration.html | AWS::Cognito::LogDeliveryConfiguration.LogConfiguration}
|
74
|
+
*/
|
75
|
+
export interface CognitoLogDeliveryConfigurationLogConfiguration {
|
76
|
+
EventSource?: string;
|
77
|
+
CloudWatchLogsConfiguration?: CognitoLogDeliveryConfigurationCloudWatchLogsConfiguration;
|
78
|
+
LogLevel?: string;
|
79
|
+
}
|
62
80
|
/**
|
63
81
|
* Type definition for AWS::Cognito::UserPool.AccountRecoverySetting
|
64
82
|
*
|
@@ -457,6 +475,33 @@ export declare class CognitoIdentityPoolRoleAttachment extends ResourceBase<"AWS
|
|
457
475
|
static readonly AttributeNames: never[];
|
458
476
|
constructor(logicalId: string, properties: CognitoIdentityPoolRoleAttachmentProps, options?: ResourceOptions);
|
459
477
|
}
|
478
|
+
/**
|
479
|
+
* Type definition for AWS::Cognito::LogDeliveryConfiguration
|
480
|
+
*
|
481
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-logdeliveryconfiguration.html | AWS::Cognito::LogDeliveryConfiguration}
|
482
|
+
*/
|
483
|
+
export interface CognitoLogDeliveryConfigurationProps {
|
484
|
+
UserPoolId: string;
|
485
|
+
LogConfigurations?: any[];
|
486
|
+
}
|
487
|
+
/**
|
488
|
+
* Attributes type definition for AWS::Cognito::LogDeliveryConfiguration
|
489
|
+
*
|
490
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-logdeliveryconfiguration.html | AWS::Cognito::LogDeliveryConfiguration}
|
491
|
+
*/
|
492
|
+
export interface CognitoLogDeliveryConfigurationAttribs {
|
493
|
+
Id?: string;
|
494
|
+
}
|
495
|
+
/**
|
496
|
+
* Resource class for AWS::Cognito::LogDeliveryConfiguration
|
497
|
+
*
|
498
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-logdeliveryconfiguration.html | AWS::Cognito::LogDeliveryConfiguration}
|
499
|
+
*/
|
500
|
+
export declare class CognitoLogDeliveryConfiguration extends ResourceBase<"AWS::Cognito::LogDeliveryConfiguration", CognitoLogDeliveryConfigurationProps, CognitoLogDeliveryConfigurationAttribs> {
|
501
|
+
static readonly Type = "AWS::Cognito::LogDeliveryConfiguration";
|
502
|
+
static readonly AttributeNames: readonly (keyof CognitoLogDeliveryConfigurationAttribs)[];
|
503
|
+
constructor(logicalId: string, properties: CognitoLogDeliveryConfigurationProps, options?: ResourceOptions);
|
504
|
+
}
|
460
505
|
/**
|
461
506
|
* Type definition for AWS::Cognito::UserPool
|
462
507
|
*
|
@@ -38,6 +38,19 @@ class CognitoIdentityPoolRoleAttachment extends ResourceBase {
|
|
38
38
|
CognitoIdentityPoolRoleAttachment.Type = "AWS::Cognito::IdentityPoolRoleAttachment";
|
39
39
|
CognitoIdentityPoolRoleAttachment.AttributeNames = [];
|
40
40
|
export { CognitoIdentityPoolRoleAttachment };
|
41
|
+
/**
|
42
|
+
* Resource class for AWS::Cognito::LogDeliveryConfiguration
|
43
|
+
*
|
44
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-logdeliveryconfiguration.html | AWS::Cognito::LogDeliveryConfiguration}
|
45
|
+
*/
|
46
|
+
class CognitoLogDeliveryConfiguration extends ResourceBase {
|
47
|
+
constructor(logicalId, properties, options) {
|
48
|
+
super(CognitoLogDeliveryConfiguration.Type, CognitoLogDeliveryConfiguration.AttributeNames, logicalId, properties, options);
|
49
|
+
}
|
50
|
+
}
|
51
|
+
CognitoLogDeliveryConfiguration.Type = "AWS::Cognito::LogDeliveryConfiguration";
|
52
|
+
CognitoLogDeliveryConfiguration.AttributeNames = ["Id"];
|
53
|
+
export { CognitoLogDeliveryConfiguration };
|
41
54
|
/**
|
42
55
|
* Resource class for AWS::Cognito::UserPool
|
43
56
|
*
|
@@ -840,6 +840,7 @@ export interface ConnectRoutingProfileProps {
|
|
840
840
|
Description: string;
|
841
841
|
MediaConcurrencies: any[];
|
842
842
|
InstanceArn: string;
|
843
|
+
AgentAvailabilityTimer?: string;
|
843
844
|
QueueConfigs?: any[];
|
844
845
|
DefaultOutboundQueueArn: string;
|
845
846
|
Tags?: Tag[];
|
@@ -1063,6 +1064,7 @@ export declare class ConnectUser extends ResourceBase<"AWS::Connect::User", Conn
|
|
1063
1064
|
export interface ConnectUserHierarchyGroupProps {
|
1064
1065
|
InstanceArn: string;
|
1065
1066
|
ParentGroupArn?: string;
|
1067
|
+
Tags?: Tag[];
|
1066
1068
|
Name: string;
|
1067
1069
|
}
|
1068
1070
|
/**
|
@@ -1789,6 +1789,24 @@ export interface EC2VerifiedAccessEndpointNetworkInterfaceOptions {
|
|
1789
1789
|
NetworkInterfaceId?: string;
|
1790
1790
|
Protocol?: string;
|
1791
1791
|
}
|
1792
|
+
/**
|
1793
|
+
* Type definition for AWS::EC2::VerifiedAccessEndpoint.SseSpecification
|
1794
|
+
*
|
1795
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-ssespecification.html | AWS::EC2::VerifiedAccessEndpoint.SseSpecification}
|
1796
|
+
*/
|
1797
|
+
export interface EC2VerifiedAccessEndpointSseSpecification {
|
1798
|
+
CustomerManagedKeyEnabled?: boolean;
|
1799
|
+
KmsKeyArn?: string;
|
1800
|
+
}
|
1801
|
+
/**
|
1802
|
+
* Type definition for AWS::EC2::VerifiedAccessGroup.SseSpecification
|
1803
|
+
*
|
1804
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessgroup-ssespecification.html | AWS::EC2::VerifiedAccessGroup.SseSpecification}
|
1805
|
+
*/
|
1806
|
+
export interface EC2VerifiedAccessGroupSseSpecification {
|
1807
|
+
CustomerManagedKeyEnabled?: boolean;
|
1808
|
+
KmsKeyArn?: string;
|
1809
|
+
}
|
1792
1810
|
/**
|
1793
1811
|
* Type definition for AWS::EC2::VerifiedAccessInstance.CloudWatchLogs
|
1794
1812
|
*
|
@@ -1864,6 +1882,15 @@ export interface EC2VerifiedAccessTrustProviderOidcOptions {
|
|
1864
1882
|
ClientId?: string;
|
1865
1883
|
AuthorizationEndpoint?: string;
|
1866
1884
|
}
|
1885
|
+
/**
|
1886
|
+
* Type definition for AWS::EC2::VerifiedAccessTrustProvider.SseSpecification
|
1887
|
+
*
|
1888
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccesstrustprovider-ssespecification.html | AWS::EC2::VerifiedAccessTrustProvider.SseSpecification}
|
1889
|
+
*/
|
1890
|
+
export interface EC2VerifiedAccessTrustProviderSseSpecification {
|
1891
|
+
CustomerManagedKeyEnabled?: boolean;
|
1892
|
+
KmsKeyArn?: string;
|
1893
|
+
}
|
1867
1894
|
/**
|
1868
1895
|
* Type definition for AWS::EC2::CapacityReservation
|
1869
1896
|
*
|
@@ -4473,6 +4500,7 @@ export interface EC2VerifiedAccessEndpointProps {
|
|
4473
4500
|
EndpointDomainPrefix: string;
|
4474
4501
|
EndpointType: string;
|
4475
4502
|
PolicyDocument?: string;
|
4503
|
+
SseSpecification?: EC2VerifiedAccessEndpointSseSpecification;
|
4476
4504
|
Tags?: Tag[];
|
4477
4505
|
NetworkInterfaceOptions?: EC2VerifiedAccessEndpointNetworkInterfaceOptions;
|
4478
4506
|
}
|
@@ -4508,6 +4536,7 @@ export declare class EC2VerifiedAccessEndpoint extends ResourceBase<"AWS::EC2::V
|
|
4508
4536
|
export interface EC2VerifiedAccessGroupProps {
|
4509
4537
|
Description?: string;
|
4510
4538
|
PolicyDocument?: string;
|
4539
|
+
SseSpecification?: EC2VerifiedAccessGroupSseSpecification;
|
4511
4540
|
VerifiedAccessInstanceId: string;
|
4512
4541
|
Tags?: Tag[];
|
4513
4542
|
PolicyEnabled?: boolean;
|
@@ -4542,6 +4571,7 @@ export declare class EC2VerifiedAccessGroup extends ResourceBase<"AWS::EC2::Veri
|
|
4542
4571
|
export interface EC2VerifiedAccessInstanceProps {
|
4543
4572
|
VerifiedAccessTrustProviders?: any[];
|
4544
4573
|
Description?: string;
|
4574
|
+
FipsEnabled?: boolean;
|
4545
4575
|
LoggingConfigurations?: EC2VerifiedAccessInstanceVerifiedAccessLogs;
|
4546
4576
|
VerifiedAccessTrustProviderIds?: any[];
|
4547
4577
|
Tags?: Tag[];
|
@@ -4578,6 +4608,7 @@ export interface EC2VerifiedAccessTrustProviderProps {
|
|
4578
4608
|
Description?: string;
|
4579
4609
|
OidcOptions?: EC2VerifiedAccessTrustProviderOidcOptions;
|
4580
4610
|
TrustProviderType: string;
|
4611
|
+
SseSpecification?: EC2VerifiedAccessTrustProviderSseSpecification;
|
4581
4612
|
UserTrustProviderType?: string;
|
4582
4613
|
Tags?: Tag[];
|
4583
4614
|
}
|
@@ -527,22 +527,22 @@ export interface EMRInstanceGroupConfigVolumeSpecification {
|
|
527
527
|
/**
|
528
528
|
* Type definition for AWS::EMR::Step.HadoopJarStepConfig
|
529
529
|
*
|
530
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-
|
530
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-step-hadoopjarstepconfig.html | AWS::EMR::Step.HadoopJarStepConfig}
|
531
531
|
*/
|
532
532
|
export interface EMRStepHadoopJarStepConfig {
|
533
533
|
Args?: any[];
|
534
|
-
Jar: string;
|
535
534
|
MainClass?: string;
|
536
535
|
StepProperties?: any[];
|
536
|
+
Jar: string;
|
537
537
|
}
|
538
538
|
/**
|
539
539
|
* Type definition for AWS::EMR::Step.KeyValue
|
540
540
|
*
|
541
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-
|
541
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-step-keyvalue.html | AWS::EMR::Step.KeyValue}
|
542
542
|
*/
|
543
543
|
export interface EMRStepKeyValue {
|
544
|
-
Key?: string;
|
545
544
|
Value?: string;
|
545
|
+
Key?: string;
|
546
546
|
}
|
547
547
|
/**
|
548
548
|
* Type definition for AWS::EMR::Cluster
|
@@ -670,19 +670,27 @@ export declare class EMRSecurityConfiguration extends ResourceBase<"AWS::EMR::Se
|
|
670
670
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html | AWS::EMR::Step}
|
671
671
|
*/
|
672
672
|
export interface EMRStepProps {
|
673
|
+
JobFlowId: string;
|
673
674
|
ActionOnFailure: string;
|
674
675
|
HadoopJarStep: EMRStepHadoopJarStepConfig;
|
675
|
-
JobFlowId: string;
|
676
676
|
Name: string;
|
677
677
|
}
|
678
|
+
/**
|
679
|
+
* Attributes type definition for AWS::EMR::Step
|
680
|
+
*
|
681
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html | AWS::EMR::Step}
|
682
|
+
*/
|
683
|
+
export interface EMRStepAttribs {
|
684
|
+
Id?: string;
|
685
|
+
}
|
678
686
|
/**
|
679
687
|
* Resource class for AWS::EMR::Step
|
680
688
|
*
|
681
689
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html | AWS::EMR::Step}
|
682
690
|
*/
|
683
|
-
export declare class EMRStep extends ResourceBase<"AWS::EMR::Step", EMRStepProps,
|
691
|
+
export declare class EMRStep extends ResourceBase<"AWS::EMR::Step", EMRStepProps, EMRStepAttribs> {
|
684
692
|
static readonly Type = "AWS::EMR::Step";
|
685
|
-
static readonly AttributeNames:
|
693
|
+
static readonly AttributeNames: readonly (keyof EMRStepAttribs)[];
|
686
694
|
constructor(logicalId: string, properties: EMRStepProps, options?: ResourceOptions);
|
687
695
|
}
|
688
696
|
/**
|