@awboost/cfntypes 1.0.0-beta.64 → 1.0.0-beta.66
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 +13 -4
- package/lib/resources.generated/AWS-AppConfig.js +1 -1
- 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 +48 -1
- package/lib/resources.generated/AWS-Cognito.js +15 -2
- package/lib/resources.generated/AWS-Connect.d.ts +2 -0
- package/lib/resources.generated/AWS-CustomerProfiles.d.ts +118 -0
- package/lib/resources.generated/AWS-CustomerProfiles.js +10 -1
- package/lib/resources.generated/AWS-EC2.d.ts +49 -10
- package/lib/resources.generated/AWS-EC2.js +2 -2
- 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-MSK.d.ts +93 -0
- package/lib/resources.generated/AWS-MSK.js +13 -0
- package/lib/resources.generated/AWS-NetworkManager.d.ts +3 -0
- package/lib/resources.generated/AWS-NetworkManager.js +1 -1
- package/lib/resources.generated/AWS-QuickSight.d.ts +129 -7
- package/lib/resources.generated/AWS-SNS.d.ts +1 -0
- package/lib/resources.generated/AWS-SageMaker.d.ts +6 -0
- package/lib/resources.generated/AWS-Transfer.d.ts +0 -112
- package/lib/resources.generated/AWS-Transfer.js +0 -13
- package/lib/resources.generated/AWS-WAFv2.d.ts +1 -0
- package/lib/resources.generated/Dev-Transfer.d.ts +123 -0
- package/lib/resources.generated/Dev-Transfer.js +14 -0
- 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
|
@@ -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
|
@@ -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
|
*
|
@@ -2992,27 +3019,35 @@ export declare class EC2NetworkAcl extends ResourceBase<"AWS::EC2::NetworkAcl",
|
|
2992
3019
|
/**
|
2993
3020
|
* Type definition for AWS::EC2::NetworkAclEntry
|
2994
3021
|
*
|
2995
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-
|
3022
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html | AWS::EC2::NetworkAclEntry}
|
2996
3023
|
*/
|
2997
3024
|
export interface EC2NetworkAclEntryProps {
|
3025
|
+
PortRange?: EC2NetworkAclEntryPortRange;
|
3026
|
+
NetworkAclId: string;
|
3027
|
+
RuleAction: string;
|
2998
3028
|
CidrBlock?: string;
|
2999
3029
|
Egress?: boolean;
|
3000
|
-
|
3030
|
+
RuleNumber: number;
|
3001
3031
|
Ipv6CidrBlock?: string;
|
3002
|
-
NetworkAclId: string;
|
3003
|
-
PortRange?: EC2NetworkAclEntryPortRange;
|
3004
3032
|
Protocol: number;
|
3005
|
-
|
3006
|
-
|
3033
|
+
Icmp?: EC2NetworkAclEntryIcmp;
|
3034
|
+
}
|
3035
|
+
/**
|
3036
|
+
* Attributes type definition for AWS::EC2::NetworkAclEntry
|
3037
|
+
*
|
3038
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html | AWS::EC2::NetworkAclEntry}
|
3039
|
+
*/
|
3040
|
+
export interface EC2NetworkAclEntryAttribs {
|
3041
|
+
Id?: string;
|
3007
3042
|
}
|
3008
3043
|
/**
|
3009
3044
|
* Resource class for AWS::EC2::NetworkAclEntry
|
3010
3045
|
*
|
3011
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-
|
3046
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html | AWS::EC2::NetworkAclEntry}
|
3012
3047
|
*/
|
3013
|
-
export declare class EC2NetworkAclEntry extends ResourceBase<"AWS::EC2::NetworkAclEntry", EC2NetworkAclEntryProps,
|
3048
|
+
export declare class EC2NetworkAclEntry extends ResourceBase<"AWS::EC2::NetworkAclEntry", EC2NetworkAclEntryProps, EC2NetworkAclEntryAttribs> {
|
3014
3049
|
static readonly Type = "AWS::EC2::NetworkAclEntry";
|
3015
|
-
static readonly AttributeNames:
|
3050
|
+
static readonly AttributeNames: readonly (keyof EC2NetworkAclEntryAttribs)[];
|
3016
3051
|
constructor(logicalId: string, properties: EC2NetworkAclEntryProps, options?: ResourceOptions);
|
3017
3052
|
}
|
3018
3053
|
/**
|
@@ -4473,6 +4508,7 @@ export interface EC2VerifiedAccessEndpointProps {
|
|
4473
4508
|
EndpointDomainPrefix: string;
|
4474
4509
|
EndpointType: string;
|
4475
4510
|
PolicyDocument?: string;
|
4511
|
+
SseSpecification?: EC2VerifiedAccessEndpointSseSpecification;
|
4476
4512
|
Tags?: Tag[];
|
4477
4513
|
NetworkInterfaceOptions?: EC2VerifiedAccessEndpointNetworkInterfaceOptions;
|
4478
4514
|
}
|
@@ -4508,6 +4544,7 @@ export declare class EC2VerifiedAccessEndpoint extends ResourceBase<"AWS::EC2::V
|
|
4508
4544
|
export interface EC2VerifiedAccessGroupProps {
|
4509
4545
|
Description?: string;
|
4510
4546
|
PolicyDocument?: string;
|
4547
|
+
SseSpecification?: EC2VerifiedAccessGroupSseSpecification;
|
4511
4548
|
VerifiedAccessInstanceId: string;
|
4512
4549
|
Tags?: Tag[];
|
4513
4550
|
PolicyEnabled?: boolean;
|
@@ -4542,6 +4579,7 @@ export declare class EC2VerifiedAccessGroup extends ResourceBase<"AWS::EC2::Veri
|
|
4542
4579
|
export interface EC2VerifiedAccessInstanceProps {
|
4543
4580
|
VerifiedAccessTrustProviders?: any[];
|
4544
4581
|
Description?: string;
|
4582
|
+
FipsEnabled?: boolean;
|
4545
4583
|
LoggingConfigurations?: EC2VerifiedAccessInstanceVerifiedAccessLogs;
|
4546
4584
|
VerifiedAccessTrustProviderIds?: any[];
|
4547
4585
|
Tags?: Tag[];
|
@@ -4578,6 +4616,7 @@ export interface EC2VerifiedAccessTrustProviderProps {
|
|
4578
4616
|
Description?: string;
|
4579
4617
|
OidcOptions?: EC2VerifiedAccessTrustProviderOidcOptions;
|
4580
4618
|
TrustProviderType: string;
|
4619
|
+
SseSpecification?: EC2VerifiedAccessTrustProviderSseSpecification;
|
4581
4620
|
UserTrustProviderType?: string;
|
4582
4621
|
Tags?: Tag[];
|
4583
4622
|
}
|
@@ -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
|
@@ -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
|
/**
|
@@ -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
|
*
|