@awboost/cfntypes 1.0.0-beta.65 → 1.0.0-beta.67
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-Amplify.d.ts +9 -0
- package/lib/resources.generated/AWS-ApiGateway.d.ts +12 -4
- package/lib/resources.generated/AWS-ApiGateway.js +1 -1
- package/lib/resources.generated/AWS-AppConfig.d.ts +23 -6
- package/lib/resources.generated/AWS-AppConfig.js +2 -2
- package/lib/resources.generated/AWS-AppRunner.d.ts +1 -0
- package/lib/resources.generated/AWS-AppStream.d.ts +1 -0
- package/lib/resources.generated/AWS-AutoScaling.d.ts +78 -66
- package/lib/resources.generated/AWS-AutoScaling.js +8 -2
- package/lib/resources.generated/AWS-CodeBuild.d.ts +10 -2
- package/lib/resources.generated/AWS-Cognito.d.ts +3 -1
- package/lib/resources.generated/AWS-Cognito.js +2 -2
- package/lib/resources.generated/AWS-CustomerProfiles.d.ts +118 -0
- package/lib/resources.generated/AWS-CustomerProfiles.js +10 -1
- package/lib/resources.generated/AWS-DLM.d.ts +14 -0
- package/lib/resources.generated/AWS-EC2.d.ts +36 -17
- package/lib/resources.generated/AWS-EC2.js +4 -4
- package/lib/resources.generated/AWS-EMRServerless.d.ts +43 -4
- package/lib/resources.generated/AWS-EntityResolution.d.ts +1 -0
- package/lib/resources.generated/AWS-EntityResolution.js +1 -1
- package/lib/resources.generated/AWS-IAM.d.ts +11 -11
- package/lib/resources.generated/AWS-IAM.js +1 -1
- package/lib/resources.generated/AWS-MSK.d.ts +93 -0
- package/lib/resources.generated/AWS-MSK.js +13 -0
- package/lib/resources.generated/AWS-NetworkManager.d.ts +1 -0
- package/lib/resources.generated/AWS-QuickSight.d.ts +96 -6
- package/lib/resources.generated/AWS-S3.d.ts +18 -0
- package/lib/resources.generated/AWS-SNS.d.ts +1 -0
- package/lib/resources.generated/AWS-ServiceCatalogAppRegistry.d.ts +0 -2
- package/lib/resources.generated/AWS-ServiceCatalogAppRegistry.js +2 -2
- package/package.json +2 -2
@@ -46,6 +46,116 @@ export interface CustomerProfilesCalculatedAttributeDefinitionThreshold {
|
|
46
46
|
Operator: string;
|
47
47
|
Value: string;
|
48
48
|
}
|
49
|
+
/**
|
50
|
+
* Type definition for AWS::CustomerProfiles::Domain.AttributeTypesSelector
|
51
|
+
*
|
52
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-attributetypesselector.html | AWS::CustomerProfiles::Domain.AttributeTypesSelector}
|
53
|
+
*/
|
54
|
+
export interface CustomerProfilesDomainAttributeTypesSelector {
|
55
|
+
Address?: any[];
|
56
|
+
AttributeMatchingModel: string;
|
57
|
+
PhoneNumber?: any[];
|
58
|
+
EmailAddress?: any[];
|
59
|
+
}
|
60
|
+
/**
|
61
|
+
* Type definition for AWS::CustomerProfiles::Domain.AutoMerging
|
62
|
+
*
|
63
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-automerging.html | AWS::CustomerProfiles::Domain.AutoMerging}
|
64
|
+
*/
|
65
|
+
export interface CustomerProfilesDomainAutoMerging {
|
66
|
+
Consolidation?: CustomerProfilesDomainConsolidation;
|
67
|
+
Enabled: boolean;
|
68
|
+
ConflictResolution?: CustomerProfilesDomainConflictResolution;
|
69
|
+
MinAllowedConfidenceScoreForMerging?: number;
|
70
|
+
}
|
71
|
+
/**
|
72
|
+
* Type definition for AWS::CustomerProfiles::Domain.ConflictResolution
|
73
|
+
*
|
74
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-conflictresolution.html | AWS::CustomerProfiles::Domain.ConflictResolution}
|
75
|
+
*/
|
76
|
+
export interface CustomerProfilesDomainConflictResolution {
|
77
|
+
ConflictResolvingModel: string;
|
78
|
+
SourceName?: string;
|
79
|
+
}
|
80
|
+
/**
|
81
|
+
* Type definition for AWS::CustomerProfiles::Domain.Consolidation
|
82
|
+
*
|
83
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-consolidation.html | AWS::CustomerProfiles::Domain.Consolidation}
|
84
|
+
*/
|
85
|
+
export interface CustomerProfilesDomainConsolidation {
|
86
|
+
MatchingAttributesList: object;
|
87
|
+
}
|
88
|
+
/**
|
89
|
+
* Type definition for AWS::CustomerProfiles::Domain.DomainStats
|
90
|
+
*
|
91
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-domainstats.html | AWS::CustomerProfiles::Domain.DomainStats}
|
92
|
+
*/
|
93
|
+
export interface CustomerProfilesDomainDomainStats {
|
94
|
+
MeteringProfileCount?: number;
|
95
|
+
ProfileCount?: number;
|
96
|
+
ObjectCount?: number;
|
97
|
+
TotalSize?: number;
|
98
|
+
}
|
99
|
+
/**
|
100
|
+
* Type definition for AWS::CustomerProfiles::Domain.ExportingConfig
|
101
|
+
*
|
102
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-exportingconfig.html | AWS::CustomerProfiles::Domain.ExportingConfig}
|
103
|
+
*/
|
104
|
+
export interface CustomerProfilesDomainExportingConfig {
|
105
|
+
S3Exporting?: CustomerProfilesDomainS3ExportingConfig;
|
106
|
+
}
|
107
|
+
/**
|
108
|
+
* Type definition for AWS::CustomerProfiles::Domain.JobSchedule
|
109
|
+
*
|
110
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-jobschedule.html | AWS::CustomerProfiles::Domain.JobSchedule}
|
111
|
+
*/
|
112
|
+
export interface CustomerProfilesDomainJobSchedule {
|
113
|
+
DayOfTheWeek: string;
|
114
|
+
Time: string;
|
115
|
+
}
|
116
|
+
/**
|
117
|
+
* Type definition for AWS::CustomerProfiles::Domain.Matching
|
118
|
+
*
|
119
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-matching.html | AWS::CustomerProfiles::Domain.Matching}
|
120
|
+
*/
|
121
|
+
export interface CustomerProfilesDomainMatching {
|
122
|
+
AutoMerging?: CustomerProfilesDomainAutoMerging;
|
123
|
+
JobSchedule?: CustomerProfilesDomainJobSchedule;
|
124
|
+
Enabled: boolean;
|
125
|
+
ExportingConfig?: CustomerProfilesDomainExportingConfig;
|
126
|
+
}
|
127
|
+
/**
|
128
|
+
* Type definition for AWS::CustomerProfiles::Domain.MatchingRule
|
129
|
+
*
|
130
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-matchingrule.html | AWS::CustomerProfiles::Domain.MatchingRule}
|
131
|
+
*/
|
132
|
+
export interface CustomerProfilesDomainMatchingRule {
|
133
|
+
Rule: any[];
|
134
|
+
}
|
135
|
+
/**
|
136
|
+
* Type definition for AWS::CustomerProfiles::Domain.RuleBasedMatching
|
137
|
+
*
|
138
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-rulebasedmatching.html | AWS::CustomerProfiles::Domain.RuleBasedMatching}
|
139
|
+
*/
|
140
|
+
export interface CustomerProfilesDomainRuleBasedMatching {
|
141
|
+
Status?: string;
|
142
|
+
MaxAllowedRuleLevelForMerging?: number;
|
143
|
+
Enabled: boolean;
|
144
|
+
MatchingRules?: any[];
|
145
|
+
AttributeTypesSelector?: CustomerProfilesDomainAttributeTypesSelector;
|
146
|
+
ConflictResolution?: CustomerProfilesDomainConflictResolution;
|
147
|
+
ExportingConfig?: CustomerProfilesDomainExportingConfig;
|
148
|
+
MaxAllowedRuleLevelForMatching?: number;
|
149
|
+
}
|
150
|
+
/**
|
151
|
+
* Type definition for AWS::CustomerProfiles::Domain.S3ExportingConfig
|
152
|
+
*
|
153
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-s3exportingconfig.html | AWS::CustomerProfiles::Domain.S3ExportingConfig}
|
154
|
+
*/
|
155
|
+
export interface CustomerProfilesDomainS3ExportingConfig {
|
156
|
+
S3BucketName: string;
|
157
|
+
S3KeyName?: string;
|
158
|
+
}
|
49
159
|
/**
|
50
160
|
* Type definition for AWS::CustomerProfiles::EventStream.DestinationDetails
|
51
161
|
*
|
@@ -292,10 +402,12 @@ export declare class CustomerProfilesCalculatedAttributeDefinition extends Resou
|
|
292
402
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domain.html | AWS::CustomerProfiles::Domain}
|
293
403
|
*/
|
294
404
|
export interface CustomerProfilesDomainProps {
|
405
|
+
Matching?: CustomerProfilesDomainMatching;
|
295
406
|
DefaultExpirationDays?: number;
|
296
407
|
DomainName: string;
|
297
408
|
DeadLetterQueueUrl?: string;
|
298
409
|
DefaultEncryptionKey?: string;
|
410
|
+
RuleBasedMatching?: CustomerProfilesDomainRuleBasedMatching;
|
299
411
|
Tags?: Tag[];
|
300
412
|
}
|
301
413
|
/**
|
@@ -304,8 +416,14 @@ export interface CustomerProfilesDomainProps {
|
|
304
416
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domain.html | AWS::CustomerProfiles::Domain}
|
305
417
|
*/
|
306
418
|
export interface CustomerProfilesDomainAttribs {
|
419
|
+
"Stats.ProfileCount"?: number;
|
420
|
+
"Stats.ObjectCount"?: number;
|
307
421
|
LastUpdatedAt?: string;
|
308
422
|
CreatedAt?: string;
|
423
|
+
Stats?: CustomerProfilesDomainDomainStats;
|
424
|
+
"Stats.MeteringProfileCount"?: number;
|
425
|
+
"Stats.TotalSize"?: number;
|
426
|
+
"RuleBasedMatching.Status"?: string;
|
309
427
|
}
|
310
428
|
/**
|
311
429
|
* Resource class for AWS::CustomerProfiles::Domain
|
@@ -23,7 +23,16 @@ class CustomerProfilesDomain extends ResourceBase {
|
|
23
23
|
}
|
24
24
|
}
|
25
25
|
CustomerProfilesDomain.Type = "AWS::CustomerProfiles::Domain";
|
26
|
-
CustomerProfilesDomain.AttributeNames = [
|
26
|
+
CustomerProfilesDomain.AttributeNames = [
|
27
|
+
"Stats.ProfileCount",
|
28
|
+
"Stats.ObjectCount",
|
29
|
+
"LastUpdatedAt",
|
30
|
+
"CreatedAt",
|
31
|
+
"Stats",
|
32
|
+
"Stats.MeteringProfileCount",
|
33
|
+
"Stats.TotalSize",
|
34
|
+
"RuleBasedMatching.Status",
|
35
|
+
];
|
27
36
|
export { CustomerProfilesDomain };
|
28
37
|
/**
|
29
38
|
* Resource class for AWS::CustomerProfiles::EventStream
|
@@ -33,6 +33,7 @@ export interface DLMLifecyclePolicyArchiveRule {
|
|
33
33
|
*/
|
34
34
|
export interface DLMLifecyclePolicyCreateRule {
|
35
35
|
IntervalUnit?: string;
|
36
|
+
Scripts?: any[];
|
36
37
|
Times?: any[];
|
37
38
|
CronExpression?: string;
|
38
39
|
Interval?: number;
|
@@ -192,6 +193,19 @@ export interface DLMLifecyclePolicySchedule {
|
|
192
193
|
Name?: string;
|
193
194
|
CopyTags?: boolean;
|
194
195
|
}
|
196
|
+
/**
|
197
|
+
* Type definition for AWS::DLM::LifecyclePolicy.Script
|
198
|
+
*
|
199
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-script.html | AWS::DLM::LifecyclePolicy.Script}
|
200
|
+
*/
|
201
|
+
export interface DLMLifecyclePolicyScript {
|
202
|
+
ExecutionHandlerService?: string;
|
203
|
+
ExecutionTimeout?: number;
|
204
|
+
Stages?: any[];
|
205
|
+
ExecutionHandler?: string;
|
206
|
+
MaximumRetryCount?: number;
|
207
|
+
ExecuteOperationOnScriptFailure?: boolean;
|
208
|
+
}
|
195
209
|
/**
|
196
210
|
* Type definition for AWS::DLM::LifecyclePolicy.ShareRule
|
197
211
|
*
|
@@ -968,8 +968,8 @@ export interface EC2LaunchTemplateVCpuCount {
|
|
968
968
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html | AWS::EC2::NetworkAclEntry.Icmp}
|
969
969
|
*/
|
970
970
|
export interface EC2NetworkAclEntryIcmp {
|
971
|
-
Code?: number;
|
972
971
|
Type?: number;
|
972
|
+
Code?: number;
|
973
973
|
}
|
974
974
|
/**
|
975
975
|
* Type definition for AWS::EC2::NetworkAclEntry.PortRange
|
@@ -2410,6 +2410,7 @@ export declare class EC2Host extends ResourceBase<"AWS::EC2::Host", EC2HostProps
|
|
2410
2410
|
*/
|
2411
2411
|
export interface EC2IPAMProps {
|
2412
2412
|
Description?: string;
|
2413
|
+
Tier?: string;
|
2413
2414
|
Tags?: Tag[];
|
2414
2415
|
OperatingRegions?: any[];
|
2415
2416
|
}
|
@@ -3019,27 +3020,35 @@ export declare class EC2NetworkAcl extends ResourceBase<"AWS::EC2::NetworkAcl",
|
|
3019
3020
|
/**
|
3020
3021
|
* Type definition for AWS::EC2::NetworkAclEntry
|
3021
3022
|
*
|
3022
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-
|
3023
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html | AWS::EC2::NetworkAclEntry}
|
3023
3024
|
*/
|
3024
3025
|
export interface EC2NetworkAclEntryProps {
|
3026
|
+
PortRange?: EC2NetworkAclEntryPortRange;
|
3027
|
+
NetworkAclId: string;
|
3028
|
+
RuleAction: string;
|
3025
3029
|
CidrBlock?: string;
|
3026
3030
|
Egress?: boolean;
|
3027
|
-
|
3031
|
+
RuleNumber: number;
|
3028
3032
|
Ipv6CidrBlock?: string;
|
3029
|
-
NetworkAclId: string;
|
3030
|
-
PortRange?: EC2NetworkAclEntryPortRange;
|
3031
3033
|
Protocol: number;
|
3032
|
-
|
3033
|
-
|
3034
|
+
Icmp?: EC2NetworkAclEntryIcmp;
|
3035
|
+
}
|
3036
|
+
/**
|
3037
|
+
* Attributes type definition for AWS::EC2::NetworkAclEntry
|
3038
|
+
*
|
3039
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html | AWS::EC2::NetworkAclEntry}
|
3040
|
+
*/
|
3041
|
+
export interface EC2NetworkAclEntryAttribs {
|
3042
|
+
Id?: string;
|
3034
3043
|
}
|
3035
3044
|
/**
|
3036
3045
|
* Resource class for AWS::EC2::NetworkAclEntry
|
3037
3046
|
*
|
3038
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-
|
3047
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html | AWS::EC2::NetworkAclEntry}
|
3039
3048
|
*/
|
3040
|
-
export declare class EC2NetworkAclEntry extends ResourceBase<"AWS::EC2::NetworkAclEntry", EC2NetworkAclEntryProps,
|
3049
|
+
export declare class EC2NetworkAclEntry extends ResourceBase<"AWS::EC2::NetworkAclEntry", EC2NetworkAclEntryProps, EC2NetworkAclEntryAttribs> {
|
3041
3050
|
static readonly Type = "AWS::EC2::NetworkAclEntry";
|
3042
|
-
static readonly AttributeNames:
|
3051
|
+
static readonly AttributeNames: readonly (keyof EC2NetworkAclEntryAttribs)[];
|
3043
3052
|
constructor(logicalId: string, properties: EC2NetworkAclEntryProps, options?: ResourceOptions);
|
3044
3053
|
}
|
3045
3054
|
/**
|
@@ -3543,15 +3552,17 @@ export declare class EC2SpotFleet extends ResourceBase<"AWS::EC2::SpotFleet", EC
|
|
3543
3552
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html | AWS::EC2::Subnet}
|
3544
3553
|
*/
|
3545
3554
|
export interface EC2SubnetProps {
|
3546
|
-
AssignIpv6AddressOnCreation?: boolean;
|
3547
3555
|
MapPublicIpOnLaunch?: boolean;
|
3548
3556
|
EnableDns64?: boolean;
|
3549
|
-
VpcId: string;
|
3550
3557
|
AvailabilityZoneId?: string;
|
3551
3558
|
OutpostArn?: string;
|
3552
|
-
PrivateDnsNameOptionsOnLaunch?: EC2SubnetPrivateDnsNameOptionsOnLaunch;
|
3553
3559
|
AvailabilityZone?: string;
|
3554
3560
|
CidrBlock?: string;
|
3561
|
+
Ipv6NetmaskLength?: number;
|
3562
|
+
AssignIpv6AddressOnCreation?: boolean;
|
3563
|
+
VpcId: string;
|
3564
|
+
Ipv4NetmaskLength?: number;
|
3565
|
+
PrivateDnsNameOptionsOnLaunch?: EC2SubnetPrivateDnsNameOptionsOnLaunch;
|
3555
3566
|
Ipv6Native?: boolean;
|
3556
3567
|
Ipv6CidrBlock?: string;
|
3557
3568
|
Tags?: Tag[];
|
@@ -4337,21 +4348,29 @@ export declare class EC2VPCEndpointServicePermissions extends ResourceBase<"AWS:
|
|
4337
4348
|
/**
|
4338
4349
|
* Type definition for AWS::EC2::VPCGatewayAttachment
|
4339
4350
|
*
|
4340
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-
|
4351
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcgatewayattachment.html | AWS::EC2::VPCGatewayAttachment}
|
4341
4352
|
*/
|
4342
4353
|
export interface EC2VPCGatewayAttachmentProps {
|
4343
4354
|
InternetGatewayId?: string;
|
4344
4355
|
VpcId: string;
|
4345
4356
|
VpnGatewayId?: string;
|
4346
4357
|
}
|
4358
|
+
/**
|
4359
|
+
* Attributes type definition for AWS::EC2::VPCGatewayAttachment
|
4360
|
+
*
|
4361
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcgatewayattachment.html | AWS::EC2::VPCGatewayAttachment}
|
4362
|
+
*/
|
4363
|
+
export interface EC2VPCGatewayAttachmentAttribs {
|
4364
|
+
AttachmentType?: string;
|
4365
|
+
}
|
4347
4366
|
/**
|
4348
4367
|
* Resource class for AWS::EC2::VPCGatewayAttachment
|
4349
4368
|
*
|
4350
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-
|
4369
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcgatewayattachment.html | AWS::EC2::VPCGatewayAttachment}
|
4351
4370
|
*/
|
4352
|
-
export declare class EC2VPCGatewayAttachment extends ResourceBase<"AWS::EC2::VPCGatewayAttachment", EC2VPCGatewayAttachmentProps,
|
4371
|
+
export declare class EC2VPCGatewayAttachment extends ResourceBase<"AWS::EC2::VPCGatewayAttachment", EC2VPCGatewayAttachmentProps, EC2VPCGatewayAttachmentAttribs> {
|
4353
4372
|
static readonly Type = "AWS::EC2::VPCGatewayAttachment";
|
4354
|
-
static readonly AttributeNames:
|
4373
|
+
static readonly AttributeNames: readonly (keyof EC2VPCGatewayAttachmentAttribs)[];
|
4355
4374
|
constructor(logicalId: string, properties: EC2VPCGatewayAttachmentProps, options?: ResourceOptions);
|
4356
4375
|
}
|
4357
4376
|
/**
|
@@ -528,7 +528,7 @@ export { EC2NetworkAcl };
|
|
528
528
|
/**
|
529
529
|
* Resource class for AWS::EC2::NetworkAclEntry
|
530
530
|
*
|
531
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-
|
531
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html | AWS::EC2::NetworkAclEntry}
|
532
532
|
*/
|
533
533
|
class EC2NetworkAclEntry extends ResourceBase {
|
534
534
|
constructor(logicalId, properties, options) {
|
@@ -536,7 +536,7 @@ class EC2NetworkAclEntry extends ResourceBase {
|
|
536
536
|
}
|
537
537
|
}
|
538
538
|
EC2NetworkAclEntry.Type = "AWS::EC2::NetworkAclEntry";
|
539
|
-
EC2NetworkAclEntry.AttributeNames = [];
|
539
|
+
EC2NetworkAclEntry.AttributeNames = ["Id"];
|
540
540
|
export { EC2NetworkAclEntry };
|
541
541
|
/**
|
542
542
|
* Resource class for AWS::EC2::NetworkInsightsAccessScope
|
@@ -1193,7 +1193,7 @@ export { EC2VPCEndpointServicePermissions };
|
|
1193
1193
|
/**
|
1194
1194
|
* Resource class for AWS::EC2::VPCGatewayAttachment
|
1195
1195
|
*
|
1196
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-
|
1196
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcgatewayattachment.html | AWS::EC2::VPCGatewayAttachment}
|
1197
1197
|
*/
|
1198
1198
|
class EC2VPCGatewayAttachment extends ResourceBase {
|
1199
1199
|
constructor(logicalId, properties, options) {
|
@@ -1201,7 +1201,7 @@ class EC2VPCGatewayAttachment extends ResourceBase {
|
|
1201
1201
|
}
|
1202
1202
|
}
|
1203
1203
|
EC2VPCGatewayAttachment.Type = "AWS::EC2::VPCGatewayAttachment";
|
1204
|
-
EC2VPCGatewayAttachment.AttributeNames = [];
|
1204
|
+
EC2VPCGatewayAttachment.AttributeNames = ["AttachmentType"];
|
1205
1205
|
export { EC2VPCGatewayAttachment };
|
1206
1206
|
/**
|
1207
1207
|
* Resource class for AWS::EC2::VPCPeeringConnection
|
@@ -18,6 +18,16 @@ export interface EMRServerlessApplicationAutoStopConfiguration {
|
|
18
18
|
Enabled?: boolean;
|
19
19
|
IdleTimeoutMinutes?: number;
|
20
20
|
}
|
21
|
+
/**
|
22
|
+
* Type definition for AWS::EMRServerless::Application.ConfigurationObject
|
23
|
+
*
|
24
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-configurationobject.html | AWS::EMRServerless::Application.ConfigurationObject}
|
25
|
+
*/
|
26
|
+
export interface EMRServerlessApplicationConfigurationObject {
|
27
|
+
Classification: string;
|
28
|
+
Properties?: Record<string, any>;
|
29
|
+
Configurations?: any[];
|
30
|
+
}
|
21
31
|
/**
|
22
32
|
* Type definition for AWS::EMRServerless::Application.ImageConfigurationInput
|
23
33
|
*
|
@@ -44,6 +54,15 @@ export interface EMRServerlessApplicationInitialCapacityConfigKeyValuePair {
|
|
44
54
|
Value: EMRServerlessApplicationInitialCapacityConfig;
|
45
55
|
Key: string;
|
46
56
|
}
|
57
|
+
/**
|
58
|
+
* Type definition for AWS::EMRServerless::Application.ManagedPersistenceMonitoringConfiguration
|
59
|
+
*
|
60
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-managedpersistencemonitoringconfiguration.html | AWS::EMRServerless::Application.ManagedPersistenceMonitoringConfiguration}
|
61
|
+
*/
|
62
|
+
export interface EMRServerlessApplicationManagedPersistenceMonitoringConfiguration {
|
63
|
+
EncryptionKeyArn?: string;
|
64
|
+
Enabled?: boolean;
|
65
|
+
}
|
47
66
|
/**
|
48
67
|
* Type definition for AWS::EMRServerless::Application.MaximumAllowedResources
|
49
68
|
*
|
@@ -54,6 +73,15 @@ export interface EMRServerlessApplicationMaximumAllowedResources {
|
|
54
73
|
Cpu: string;
|
55
74
|
Disk?: string;
|
56
75
|
}
|
76
|
+
/**
|
77
|
+
* Type definition for AWS::EMRServerless::Application.MonitoringConfiguration
|
78
|
+
*
|
79
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-monitoringconfiguration.html | AWS::EMRServerless::Application.MonitoringConfiguration}
|
80
|
+
*/
|
81
|
+
export interface EMRServerlessApplicationMonitoringConfiguration {
|
82
|
+
S3MonitoringConfiguration?: EMRServerlessApplicationS3MonitoringConfiguration;
|
83
|
+
ManagedPersistenceMonitoringConfiguration?: EMRServerlessApplicationManagedPersistenceMonitoringConfiguration;
|
84
|
+
}
|
57
85
|
/**
|
58
86
|
* Type definition for AWS::EMRServerless::Application.NetworkConfiguration
|
59
87
|
*
|
@@ -63,6 +91,15 @@ export interface EMRServerlessApplicationNetworkConfiguration {
|
|
63
91
|
SubnetIds?: any[];
|
64
92
|
SecurityGroupIds?: any[];
|
65
93
|
}
|
94
|
+
/**
|
95
|
+
* Type definition for AWS::EMRServerless::Application.S3MonitoringConfiguration
|
96
|
+
*
|
97
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-s3monitoringconfiguration.html | AWS::EMRServerless::Application.S3MonitoringConfiguration}
|
98
|
+
*/
|
99
|
+
export interface EMRServerlessApplicationS3MonitoringConfiguration {
|
100
|
+
LogUri?: string;
|
101
|
+
EncryptionKeyArn?: string;
|
102
|
+
}
|
66
103
|
/**
|
67
104
|
* Type definition for AWS::EMRServerless::Application.WorkerConfiguration
|
68
105
|
*
|
@@ -88,17 +125,19 @@ export interface EMRServerlessApplicationWorkerTypeSpecificationInput {
|
|
88
125
|
*/
|
89
126
|
export interface EMRServerlessApplicationProps {
|
90
127
|
AutoStartConfiguration?: EMRServerlessApplicationAutoStartConfiguration;
|
91
|
-
Type: string;
|
92
128
|
Architecture?: string;
|
93
129
|
WorkerTypeSpecifications?: Record<string, any>;
|
94
|
-
|
95
|
-
ImageConfiguration?: EMRServerlessApplicationImageConfigurationInput;
|
130
|
+
MonitoringConfiguration?: EMRServerlessApplicationMonitoringConfiguration;
|
96
131
|
MaximumCapacity?: EMRServerlessApplicationMaximumAllowedResources;
|
97
132
|
AutoStopConfiguration?: EMRServerlessApplicationAutoStopConfiguration;
|
133
|
+
RuntimeConfiguration?: any[];
|
134
|
+
Name?: string;
|
135
|
+
Type: string;
|
136
|
+
InitialCapacity?: any[];
|
137
|
+
ImageConfiguration?: EMRServerlessApplicationImageConfigurationInput;
|
98
138
|
NetworkConfiguration?: EMRServerlessApplicationNetworkConfiguration;
|
99
139
|
ReleaseLabel: string;
|
100
140
|
Tags?: Tag[];
|
101
|
-
Name?: string;
|
102
141
|
}
|
103
142
|
/**
|
104
143
|
* Attributes type definition for AWS::EMRServerless::Application
|
@@ -36,5 +36,5 @@ class EntityResolutionSchemaMapping extends ResourceBase {
|
|
36
36
|
}
|
37
37
|
}
|
38
38
|
EntityResolutionSchemaMapping.Type = "AWS::EntityResolution::SchemaMapping";
|
39
|
-
EntityResolutionSchemaMapping.AttributeNames = ["CreatedAt", "UpdatedAt", "SchemaArn"];
|
39
|
+
EntityResolutionSchemaMapping.AttributeNames = ["CreatedAt", "HasWorkflows", "UpdatedAt", "SchemaArn"];
|
40
40
|
export { EntityResolutionSchemaMapping };
|
@@ -25,17 +25,17 @@ export interface IAMRolePolicy {
|
|
25
25
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html | AWS::IAM::User.LoginProfile}
|
26
26
|
*/
|
27
27
|
export interface IAMUserLoginProfile {
|
28
|
-
Password: string;
|
29
28
|
PasswordResetRequired?: boolean;
|
29
|
+
Password: string;
|
30
30
|
}
|
31
31
|
/**
|
32
32
|
* Type definition for AWS::IAM::User.Policy
|
33
33
|
*
|
34
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html | AWS::IAM::User.Policy}
|
34
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-policy.html | AWS::IAM::User.Policy}
|
35
35
|
*/
|
36
36
|
export interface IAMUserPolicy {
|
37
|
-
PolicyDocument: object;
|
38
37
|
PolicyName: string;
|
38
|
+
PolicyDocument: object;
|
39
39
|
}
|
40
40
|
/**
|
41
41
|
* Type definition for AWS::IAM::AccessKey
|
@@ -385,22 +385,22 @@ export declare class IAMServiceLinkedRole extends ResourceBase<"AWS::IAM::Servic
|
|
385
385
|
/**
|
386
386
|
* Type definition for AWS::IAM::User
|
387
387
|
*
|
388
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
388
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html | AWS::IAM::User}
|
389
389
|
*/
|
390
390
|
export interface IAMUserProps {
|
391
|
-
Groups?: any[];
|
392
|
-
LoginProfile?: IAMUserLoginProfile;
|
393
|
-
ManagedPolicyArns?: any[];
|
394
391
|
Path?: string;
|
395
|
-
|
392
|
+
ManagedPolicyArns?: any[];
|
396
393
|
Policies?: any[];
|
397
|
-
Tags?: Tag[];
|
398
394
|
UserName?: string;
|
395
|
+
Groups?: any[];
|
396
|
+
LoginProfile?: IAMUserLoginProfile;
|
397
|
+
Tags?: Tag[];
|
398
|
+
PermissionsBoundary?: string;
|
399
399
|
}
|
400
400
|
/**
|
401
401
|
* Attributes type definition for AWS::IAM::User
|
402
402
|
*
|
403
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
403
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html | AWS::IAM::User}
|
404
404
|
*/
|
405
405
|
export interface IAMUserAttribs {
|
406
406
|
Arn?: string;
|
@@ -408,7 +408,7 @@ export interface IAMUserAttribs {
|
|
408
408
|
/**
|
409
409
|
* Resource class for AWS::IAM::User
|
410
410
|
*
|
411
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
411
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html | AWS::IAM::User}
|
412
412
|
*/
|
413
413
|
export declare class IAMUser extends ResourceBase<"AWS::IAM::User", IAMUserProps, IAMUserAttribs> {
|
414
414
|
static readonly Type = "AWS::IAM::User";
|
@@ -174,7 +174,7 @@ export { IAMServiceLinkedRole };
|
|
174
174
|
/**
|
175
175
|
* Resource class for AWS::IAM::User
|
176
176
|
*
|
177
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
177
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html | AWS::IAM::User}
|
178
178
|
*/
|
179
179
|
class IAMUser extends ResourceBase {
|
180
180
|
constructor(logicalId, properties, options) {
|
@@ -283,6 +283,67 @@ export interface MSKConfigurationLatestRevision {
|
|
283
283
|
Revision?: number;
|
284
284
|
CreationTime?: string;
|
285
285
|
}
|
286
|
+
/**
|
287
|
+
* Type definition for AWS::MSK::Replicator.AmazonMskCluster
|
288
|
+
*
|
289
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-amazonmskcluster.html | AWS::MSK::Replicator.AmazonMskCluster}
|
290
|
+
*/
|
291
|
+
export interface MSKReplicatorAmazonMskCluster {
|
292
|
+
MskClusterArn: string;
|
293
|
+
}
|
294
|
+
/**
|
295
|
+
* Type definition for AWS::MSK::Replicator.ConsumerGroupReplication
|
296
|
+
*
|
297
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-consumergroupreplication.html | AWS::MSK::Replicator.ConsumerGroupReplication}
|
298
|
+
*/
|
299
|
+
export interface MSKReplicatorConsumerGroupReplication {
|
300
|
+
ConsumerGroupsToReplicate: any[];
|
301
|
+
ConsumerGroupsToExclude?: any[];
|
302
|
+
SynchroniseConsumerGroupOffsets?: boolean;
|
303
|
+
DetectAndCopyNewConsumerGroups?: boolean;
|
304
|
+
}
|
305
|
+
/**
|
306
|
+
* Type definition for AWS::MSK::Replicator.KafkaCluster
|
307
|
+
*
|
308
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-kafkacluster.html | AWS::MSK::Replicator.KafkaCluster}
|
309
|
+
*/
|
310
|
+
export interface MSKReplicatorKafkaCluster {
|
311
|
+
VpcConfig: MSKReplicatorKafkaClusterClientVpcConfig;
|
312
|
+
AmazonMskCluster: MSKReplicatorAmazonMskCluster;
|
313
|
+
}
|
314
|
+
/**
|
315
|
+
* Type definition for AWS::MSK::Replicator.KafkaClusterClientVpcConfig
|
316
|
+
*
|
317
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-kafkaclusterclientvpcconfig.html | AWS::MSK::Replicator.KafkaClusterClientVpcConfig}
|
318
|
+
*/
|
319
|
+
export interface MSKReplicatorKafkaClusterClientVpcConfig {
|
320
|
+
SecurityGroupIds?: any[];
|
321
|
+
SubnetIds: any[];
|
322
|
+
}
|
323
|
+
/**
|
324
|
+
* Type definition for AWS::MSK::Replicator.ReplicationInfo
|
325
|
+
*
|
326
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-replicationinfo.html | AWS::MSK::Replicator.ReplicationInfo}
|
327
|
+
*/
|
328
|
+
export interface MSKReplicatorReplicationInfo {
|
329
|
+
TargetCompressionType: string;
|
330
|
+
TopicReplication: MSKReplicatorTopicReplication;
|
331
|
+
ConsumerGroupReplication: MSKReplicatorConsumerGroupReplication;
|
332
|
+
SourceKafkaClusterArn: string;
|
333
|
+
TargetKafkaClusterArn: string;
|
334
|
+
}
|
335
|
+
/**
|
336
|
+
* Type definition for AWS::MSK::Replicator.TopicReplication
|
337
|
+
*
|
338
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-topicreplication.html | AWS::MSK::Replicator.TopicReplication}
|
339
|
+
*/
|
340
|
+
export interface MSKReplicatorTopicReplication {
|
341
|
+
TopicsToReplicate: any[];
|
342
|
+
TopicsToExclude?: any[];
|
343
|
+
CopyTopicConfigurations?: boolean;
|
344
|
+
DetectAndCopyNewTopics?: boolean;
|
345
|
+
CopyAccessControlListsForTopics?: boolean;
|
346
|
+
}
|
286
347
|
/**
|
287
348
|
* Type definition for AWS::MSK::ServerlessCluster.ClientAuthentication
|
288
349
|
*
|
@@ -433,6 +494,38 @@ export declare class MSKConfiguration extends ResourceBase<"AWS::MSK::Configurat
|
|
433
494
|
static readonly AttributeNames: readonly (keyof MSKConfigurationAttribs)[];
|
434
495
|
constructor(logicalId: string, properties: MSKConfigurationProps, options?: ResourceOptions);
|
435
496
|
}
|
497
|
+
/**
|
498
|
+
* Type definition for AWS::MSK::Replicator
|
499
|
+
*
|
500
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-replicator.html | AWS::MSK::Replicator}
|
501
|
+
*/
|
502
|
+
export interface MSKReplicatorProps {
|
503
|
+
Description?: string;
|
504
|
+
CurrentVersion?: string;
|
505
|
+
ServiceExecutionRoleArn: string;
|
506
|
+
ReplicatorName: string;
|
507
|
+
ReplicationInfoList: any[];
|
508
|
+
KafkaClusters: any[];
|
509
|
+
Tags?: Tag[];
|
510
|
+
}
|
511
|
+
/**
|
512
|
+
* Attributes type definition for AWS::MSK::Replicator
|
513
|
+
*
|
514
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-replicator.html | AWS::MSK::Replicator}
|
515
|
+
*/
|
516
|
+
export interface MSKReplicatorAttribs {
|
517
|
+
ReplicatorArn?: string;
|
518
|
+
}
|
519
|
+
/**
|
520
|
+
* Resource class for AWS::MSK::Replicator
|
521
|
+
*
|
522
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-replicator.html | AWS::MSK::Replicator}
|
523
|
+
*/
|
524
|
+
export declare class MSKReplicator extends ResourceBase<"AWS::MSK::Replicator", MSKReplicatorProps, MSKReplicatorAttribs> {
|
525
|
+
static readonly Type = "AWS::MSK::Replicator";
|
526
|
+
static readonly AttributeNames: readonly (keyof MSKReplicatorAttribs)[];
|
527
|
+
constructor(logicalId: string, properties: MSKReplicatorProps, options?: ResourceOptions);
|
528
|
+
}
|
436
529
|
/**
|
437
530
|
* Type definition for AWS::MSK::ServerlessCluster
|
438
531
|
*
|
@@ -56,6 +56,19 @@ MSKConfiguration.AttributeNames = [
|
|
56
56
|
"Arn",
|
57
57
|
];
|
58
58
|
export { MSKConfiguration };
|
59
|
+
/**
|
60
|
+
* Resource class for AWS::MSK::Replicator
|
61
|
+
*
|
62
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-replicator.html | AWS::MSK::Replicator}
|
63
|
+
*/
|
64
|
+
class MSKReplicator extends ResourceBase {
|
65
|
+
constructor(logicalId, properties, options) {
|
66
|
+
super(MSKReplicator.Type, MSKReplicator.AttributeNames, logicalId, properties, options);
|
67
|
+
}
|
68
|
+
}
|
69
|
+
MSKReplicator.Type = "AWS::MSK::Replicator";
|
70
|
+
MSKReplicator.AttributeNames = ["ReplicatorArn"];
|
71
|
+
export { MSKReplicator };
|
59
72
|
/**
|
60
73
|
* Resource class for AWS::MSK::ServerlessCluster
|
61
74
|
*
|
@@ -195,6 +195,7 @@ export declare class NetworkManagerConnectAttachment extends ResourceBase<"AWS::
|
|
195
195
|
export interface NetworkManagerConnectPeerProps {
|
196
196
|
ConnectAttachmentId: string;
|
197
197
|
PeerAddress: string;
|
198
|
+
SubnetArn?: string;
|
198
199
|
CoreNetworkAddress?: string;
|
199
200
|
BgpOptions?: NetworkManagerConnectPeerBgpOptions;
|
200
201
|
InsideCidrBlocks?: any[];
|