@awboost/cfntypes 1.0.0-beta.33 → 1.0.0-beta.34
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/cjs/types.generated.js +8 -4
- package/lib/types.generated.d.ts +275 -8
- package/lib/types.generated.js +8 -4
- package/package.json +2 -2
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.AttributeNames = exports.ResourceType = exports.ResourceSpecificationVersion = void 0;
|
4
|
-
exports.ResourceSpecificationVersion = "
|
4
|
+
exports.ResourceSpecificationVersion = "132.0.0";
|
5
5
|
exports.ResourceType = {
|
6
6
|
ACMPCACertificate: "AWS::ACMPCA::Certificate",
|
7
7
|
ACMPCACertificateAuthority: "AWS::ACMPCA::CertificateAuthority",
|
@@ -202,6 +202,8 @@ exports.ResourceType = {
|
|
202
202
|
CodeStarGitHubRepository: "AWS::CodeStar::GitHubRepository",
|
203
203
|
CodeStarConnectionsConnection: "AWS::CodeStarConnections::Connection",
|
204
204
|
CodeStarNotificationsNotificationRule: "AWS::CodeStarNotifications::NotificationRule",
|
205
|
+
CodeTestPersistentConfiguration: "AWS::CodeTest::PersistentConfiguration",
|
206
|
+
CodeTestSeries: "AWS::CodeTest::Series",
|
205
207
|
CognitoIdentityPool: "AWS::Cognito::IdentityPool",
|
206
208
|
CognitoIdentityPoolPrincipalTag: "AWS::Cognito::IdentityPoolPrincipalTag",
|
207
209
|
CognitoIdentityPoolRoleAttachment: "AWS::Cognito::IdentityPoolRoleAttachment",
|
@@ -1309,6 +1311,8 @@ exports.AttributeNames = {
|
|
1309
1311
|
"AWS::CodeStar::GitHubRepository": [],
|
1310
1312
|
"AWS::CodeStarConnections::Connection": ["ConnectionArn", "ConnectionStatus", "OwnerAccountId"],
|
1311
1313
|
"AWS::CodeStarNotifications::NotificationRule": ["Arn"],
|
1314
|
+
"AWS::CodeTest::PersistentConfiguration": ["Name"],
|
1315
|
+
"AWS::CodeTest::Series": [],
|
1312
1316
|
"AWS::Cognito::IdentityPool": ["Name"],
|
1313
1317
|
"AWS::Cognito::IdentityPoolPrincipalTag": [],
|
1314
1318
|
"AWS::Cognito::IdentityPoolRoleAttachment": [],
|
@@ -1642,7 +1646,7 @@ exports.AttributeNames = {
|
|
1642
1646
|
"AWS::IAM::Group": ["Arn"],
|
1643
1647
|
"AWS::IAM::GroupPolicy": [],
|
1644
1648
|
"AWS::IAM::InstanceProfile": ["Arn"],
|
1645
|
-
"AWS::IAM::ManagedPolicy": [],
|
1649
|
+
"AWS::IAM::ManagedPolicy": ["IsAttachable", "UpdateDate", "PermissionsBoundaryUsageCount", "AttachmentCount", "PolicyArn", "DefaultVersionId", "CreateDate", "PolicyId"],
|
1646
1650
|
"AWS::IAM::OIDCProvider": ["Arn"],
|
1647
1651
|
"AWS::IAM::Policy": [],
|
1648
1652
|
"AWS::IAM::Role": ["Arn", "RoleId"],
|
@@ -1775,7 +1779,7 @@ exports.AttributeNames = {
|
|
1775
1779
|
"AWS::Lambda::Function": ["SnapStartResponse.OptimizationStatus", "SnapStartResponse.ApplyOn", "SnapStartResponse", "Arn"],
|
1776
1780
|
"AWS::Lambda::LayerVersion": ["LayerVersionArn"],
|
1777
1781
|
"AWS::Lambda::LayerVersionPermission": [],
|
1778
|
-
"AWS::Lambda::Permission": [],
|
1782
|
+
"AWS::Lambda::Permission": ["Id"],
|
1779
1783
|
"AWS::Lambda::Url": ["FunctionArn", "FunctionUrl"],
|
1780
1784
|
"AWS::Lambda::Version": ["Version"],
|
1781
1785
|
"AWS::Lex::Bot": ["Id", "Arn"],
|
@@ -2059,7 +2063,7 @@ exports.AttributeNames = {
|
|
2059
2063
|
"AWS::SNS::TopicInlinePolicy": [],
|
2060
2064
|
"AWS::SNS::TopicPolicy": ["Id"],
|
2061
2065
|
"AWS::SQS::Queue": ["Arn", "QueueName", "QueueUrl"],
|
2062
|
-
"AWS::SQS::QueuePolicy": [],
|
2066
|
+
"AWS::SQS::QueuePolicy": ["Id"],
|
2063
2067
|
"AWS::SSM::Association": ["AssociationId"],
|
2064
2068
|
"AWS::SSM::Document": [],
|
2065
2069
|
"AWS::SSM::MaintenanceWindow": [],
|
package/lib/types.generated.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
export declare const ResourceSpecificationVersion = "
|
1
|
+
export declare const ResourceSpecificationVersion = "132.0.0";
|
2
2
|
/**
|
3
3
|
* Type definition for AWS::ACMPCA::Certificate.ApiPassthrough
|
4
4
|
*
|
@@ -8678,6 +8678,16 @@ export interface CodeStarNotificationsNotificationRuleTarget {
|
|
8678
8678
|
TargetType: string;
|
8679
8679
|
TargetAddress: string;
|
8680
8680
|
}
|
8681
|
+
/**
|
8682
|
+
* Type definition for AWS::CodeTest::PersistentConfiguration.VpcConfig
|
8683
|
+
*
|
8684
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codetest-persistentconfiguration-vpcconfig.html | AWS::CodeTest::PersistentConfiguration.VpcConfig}
|
8685
|
+
* @group AWS::CodeTest
|
8686
|
+
*/
|
8687
|
+
export interface CodeTestPersistentConfigurationVpcConfig {
|
8688
|
+
Subnets?: any[];
|
8689
|
+
SecurityGroupIds?: any[];
|
8690
|
+
}
|
8681
8691
|
/**
|
8682
8692
|
* Type definition for AWS::Cognito::IdentityPool.CognitoIdentityProvider
|
8683
8693
|
*
|
@@ -57883,6 +57893,17 @@ export interface TimestreamTableMagneticStoreWriteProperties {
|
|
57883
57893
|
EnableMagneticStoreWrites: boolean;
|
57884
57894
|
MagneticStoreRejectedDataLocation?: TimestreamTableMagneticStoreRejectedDataLocation;
|
57885
57895
|
}
|
57896
|
+
/**
|
57897
|
+
* Type definition for AWS::Timestream::Table.PartitionKey
|
57898
|
+
*
|
57899
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-table-partitionkey.html | AWS::Timestream::Table.PartitionKey}
|
57900
|
+
* @group AWS::Timestream
|
57901
|
+
*/
|
57902
|
+
export interface TimestreamTablePartitionKey {
|
57903
|
+
Type: string;
|
57904
|
+
EnforcementInRecord?: string;
|
57905
|
+
Name?: string;
|
57906
|
+
}
|
57886
57907
|
/**
|
57887
57908
|
* Type definition for AWS::Timestream::Table.RetentionProperties
|
57888
57909
|
*
|
@@ -57905,6 +57926,15 @@ export interface TimestreamTableS3Configuration {
|
|
57905
57926
|
ObjectKeyPrefix?: string;
|
57906
57927
|
EncryptionOption: string;
|
57907
57928
|
}
|
57929
|
+
/**
|
57930
|
+
* Type definition for AWS::Timestream::Table.Schema
|
57931
|
+
*
|
57932
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-table-schema.html | AWS::Timestream::Table.Schema}
|
57933
|
+
* @group AWS::Timestream
|
57934
|
+
*/
|
57935
|
+
export interface TimestreamTableSchema {
|
57936
|
+
CompositePartitionKey?: any[];
|
57937
|
+
}
|
57908
57938
|
/**
|
57909
57939
|
* Type definition for AWS::Transfer::Connector.As2Config
|
57910
57940
|
*
|
@@ -59144,10 +59174,85 @@ export interface WAFv2RuleGroupOrStatement {
|
|
59144
59174
|
*/
|
59145
59175
|
export interface WAFv2RuleGroupRateBasedStatement {
|
59146
59176
|
AggregateKeyType: string;
|
59177
|
+
CustomKeys?: any[];
|
59147
59178
|
ForwardedIPConfig?: WAFv2RuleGroupForwardedIPConfiguration;
|
59148
59179
|
Limit: number;
|
59149
59180
|
ScopeDownStatement?: WAFv2RuleGroupStatement;
|
59150
59181
|
}
|
59182
|
+
/**
|
59183
|
+
* Type definition for AWS::WAFv2::RuleGroup.RateBasedStatementCustomKey
|
59184
|
+
*
|
59185
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratebasedstatementcustomkey.html | AWS::WAFv2::RuleGroup.RateBasedStatementCustomKey}
|
59186
|
+
* @group AWS::WAFv2
|
59187
|
+
*/
|
59188
|
+
export interface WAFv2RuleGroupRateBasedStatementCustomKey {
|
59189
|
+
Cookie?: WAFv2RuleGroupRateLimitCookie;
|
59190
|
+
ForwardedIP?: object;
|
59191
|
+
QueryArgument?: WAFv2RuleGroupRateLimitQueryArgument;
|
59192
|
+
Header?: WAFv2RuleGroupRateLimitHeader;
|
59193
|
+
HTTPMethod?: object;
|
59194
|
+
QueryString?: WAFv2RuleGroupRateLimitQueryString;
|
59195
|
+
UriPath?: WAFv2RuleGroupRateLimitUriPath;
|
59196
|
+
IP?: object;
|
59197
|
+
LabelNamespace?: WAFv2RuleGroupRateLimitLabelNamespace;
|
59198
|
+
}
|
59199
|
+
/**
|
59200
|
+
* Type definition for AWS::WAFv2::RuleGroup.RateLimitCookie
|
59201
|
+
*
|
59202
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratelimitcookie.html | AWS::WAFv2::RuleGroup.RateLimitCookie}
|
59203
|
+
* @group AWS::WAFv2
|
59204
|
+
*/
|
59205
|
+
export interface WAFv2RuleGroupRateLimitCookie {
|
59206
|
+
TextTransformations: any[];
|
59207
|
+
Name: string;
|
59208
|
+
}
|
59209
|
+
/**
|
59210
|
+
* Type definition for AWS::WAFv2::RuleGroup.RateLimitHeader
|
59211
|
+
*
|
59212
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratelimitheader.html | AWS::WAFv2::RuleGroup.RateLimitHeader}
|
59213
|
+
* @group AWS::WAFv2
|
59214
|
+
*/
|
59215
|
+
export interface WAFv2RuleGroupRateLimitHeader {
|
59216
|
+
TextTransformations: any[];
|
59217
|
+
Name: string;
|
59218
|
+
}
|
59219
|
+
/**
|
59220
|
+
* Type definition for AWS::WAFv2::RuleGroup.RateLimitLabelNamespace
|
59221
|
+
*
|
59222
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratelimitlabelnamespace.html | AWS::WAFv2::RuleGroup.RateLimitLabelNamespace}
|
59223
|
+
* @group AWS::WAFv2
|
59224
|
+
*/
|
59225
|
+
export interface WAFv2RuleGroupRateLimitLabelNamespace {
|
59226
|
+
Namespace: string;
|
59227
|
+
}
|
59228
|
+
/**
|
59229
|
+
* Type definition for AWS::WAFv2::RuleGroup.RateLimitQueryArgument
|
59230
|
+
*
|
59231
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratelimitqueryargument.html | AWS::WAFv2::RuleGroup.RateLimitQueryArgument}
|
59232
|
+
* @group AWS::WAFv2
|
59233
|
+
*/
|
59234
|
+
export interface WAFv2RuleGroupRateLimitQueryArgument {
|
59235
|
+
TextTransformations: any[];
|
59236
|
+
Name: string;
|
59237
|
+
}
|
59238
|
+
/**
|
59239
|
+
* Type definition for AWS::WAFv2::RuleGroup.RateLimitQueryString
|
59240
|
+
*
|
59241
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratelimitquerystring.html | AWS::WAFv2::RuleGroup.RateLimitQueryString}
|
59242
|
+
* @group AWS::WAFv2
|
59243
|
+
*/
|
59244
|
+
export interface WAFv2RuleGroupRateLimitQueryString {
|
59245
|
+
TextTransformations: any[];
|
59246
|
+
}
|
59247
|
+
/**
|
59248
|
+
* Type definition for AWS::WAFv2::RuleGroup.RateLimitUriPath
|
59249
|
+
*
|
59250
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratelimituripath.html | AWS::WAFv2::RuleGroup.RateLimitUriPath}
|
59251
|
+
* @group AWS::WAFv2
|
59252
|
+
*/
|
59253
|
+
export interface WAFv2RuleGroupRateLimitUriPath {
|
59254
|
+
TextTransformations: any[];
|
59255
|
+
}
|
59151
59256
|
/**
|
59152
59257
|
* Type definition for AWS::WAFv2::RuleGroup.RegexMatchStatement
|
59153
59258
|
*
|
@@ -59701,10 +59806,85 @@ export interface WAFv2WebACLOverrideAction {
|
|
59701
59806
|
*/
|
59702
59807
|
export interface WAFv2WebACLRateBasedStatement {
|
59703
59808
|
AggregateKeyType: string;
|
59809
|
+
CustomKeys?: any[];
|
59704
59810
|
ForwardedIPConfig?: WAFv2WebACLForwardedIPConfiguration;
|
59705
59811
|
Limit: number;
|
59706
59812
|
ScopeDownStatement?: WAFv2WebACLStatement;
|
59707
59813
|
}
|
59814
|
+
/**
|
59815
|
+
* Type definition for AWS::WAFv2::WebACL.RateBasedStatementCustomKey
|
59816
|
+
*
|
59817
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratebasedstatementcustomkey.html | AWS::WAFv2::WebACL.RateBasedStatementCustomKey}
|
59818
|
+
* @group AWS::WAFv2
|
59819
|
+
*/
|
59820
|
+
export interface WAFv2WebACLRateBasedStatementCustomKey {
|
59821
|
+
Cookie?: WAFv2WebACLRateLimitCookie;
|
59822
|
+
ForwardedIP?: object;
|
59823
|
+
QueryArgument?: WAFv2WebACLRateLimitQueryArgument;
|
59824
|
+
Header?: WAFv2WebACLRateLimitHeader;
|
59825
|
+
HTTPMethod?: object;
|
59826
|
+
QueryString?: WAFv2WebACLRateLimitQueryString;
|
59827
|
+
UriPath?: WAFv2WebACLRateLimitUriPath;
|
59828
|
+
IP?: object;
|
59829
|
+
LabelNamespace?: WAFv2WebACLRateLimitLabelNamespace;
|
59830
|
+
}
|
59831
|
+
/**
|
59832
|
+
* Type definition for AWS::WAFv2::WebACL.RateLimitCookie
|
59833
|
+
*
|
59834
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimitcookie.html | AWS::WAFv2::WebACL.RateLimitCookie}
|
59835
|
+
* @group AWS::WAFv2
|
59836
|
+
*/
|
59837
|
+
export interface WAFv2WebACLRateLimitCookie {
|
59838
|
+
TextTransformations: any[];
|
59839
|
+
Name: string;
|
59840
|
+
}
|
59841
|
+
/**
|
59842
|
+
* Type definition for AWS::WAFv2::WebACL.RateLimitHeader
|
59843
|
+
*
|
59844
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimitheader.html | AWS::WAFv2::WebACL.RateLimitHeader}
|
59845
|
+
* @group AWS::WAFv2
|
59846
|
+
*/
|
59847
|
+
export interface WAFv2WebACLRateLimitHeader {
|
59848
|
+
TextTransformations: any[];
|
59849
|
+
Name: string;
|
59850
|
+
}
|
59851
|
+
/**
|
59852
|
+
* Type definition for AWS::WAFv2::WebACL.RateLimitLabelNamespace
|
59853
|
+
*
|
59854
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimitlabelnamespace.html | AWS::WAFv2::WebACL.RateLimitLabelNamespace}
|
59855
|
+
* @group AWS::WAFv2
|
59856
|
+
*/
|
59857
|
+
export interface WAFv2WebACLRateLimitLabelNamespace {
|
59858
|
+
Namespace: string;
|
59859
|
+
}
|
59860
|
+
/**
|
59861
|
+
* Type definition for AWS::WAFv2::WebACL.RateLimitQueryArgument
|
59862
|
+
*
|
59863
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimitqueryargument.html | AWS::WAFv2::WebACL.RateLimitQueryArgument}
|
59864
|
+
* @group AWS::WAFv2
|
59865
|
+
*/
|
59866
|
+
export interface WAFv2WebACLRateLimitQueryArgument {
|
59867
|
+
TextTransformations: any[];
|
59868
|
+
Name: string;
|
59869
|
+
}
|
59870
|
+
/**
|
59871
|
+
* Type definition for AWS::WAFv2::WebACL.RateLimitQueryString
|
59872
|
+
*
|
59873
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimitquerystring.html | AWS::WAFv2::WebACL.RateLimitQueryString}
|
59874
|
+
* @group AWS::WAFv2
|
59875
|
+
*/
|
59876
|
+
export interface WAFv2WebACLRateLimitQueryString {
|
59877
|
+
TextTransformations: any[];
|
59878
|
+
}
|
59879
|
+
/**
|
59880
|
+
* Type definition for AWS::WAFv2::WebACL.RateLimitUriPath
|
59881
|
+
*
|
59882
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimituripath.html | AWS::WAFv2::WebACL.RateLimitUriPath}
|
59883
|
+
* @group AWS::WAFv2
|
59884
|
+
*/
|
59885
|
+
export interface WAFv2WebACLRateLimitUriPath {
|
59886
|
+
TextTransformations: any[];
|
59887
|
+
}
|
59708
59888
|
/**
|
59709
59889
|
* Type definition for AWS::WAFv2::WebACL.RegexMatchStatement
|
59710
59890
|
*
|
@@ -64542,6 +64722,39 @@ export interface CodeStarNotificationsNotificationRuleProps {
|
|
64542
64722
|
export interface CodeStarNotificationsNotificationRuleAttribs {
|
64543
64723
|
Arn?: string;
|
64544
64724
|
}
|
64725
|
+
/**
|
64726
|
+
* Type definition for AWS::CodeTest::PersistentConfiguration
|
64727
|
+
*
|
64728
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codetest-persistentconfiguration.html | AWS::CodeTest::PersistentConfiguration}
|
64729
|
+
* @group AWS::CodeTest
|
64730
|
+
*/
|
64731
|
+
export interface CodeTestPersistentConfigurationProps {
|
64732
|
+
Version?: string;
|
64733
|
+
VpcConfig?: CodeTestPersistentConfigurationVpcConfig;
|
64734
|
+
Name?: string;
|
64735
|
+
ResultsRoleArn: string;
|
64736
|
+
}
|
64737
|
+
/**
|
64738
|
+
* Attributes type definition for AWS::CodeTest::PersistentConfiguration
|
64739
|
+
*
|
64740
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codetest-persistentconfiguration.html | AWS::CodeTest::PersistentConfiguration}
|
64741
|
+
* @group AWS::CodeTest
|
64742
|
+
*/
|
64743
|
+
export interface CodeTestPersistentConfigurationAttribs {
|
64744
|
+
Name?: string;
|
64745
|
+
}
|
64746
|
+
/**
|
64747
|
+
* Type definition for AWS::CodeTest::Series
|
64748
|
+
*
|
64749
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codetest-series.html | AWS::CodeTest::Series}
|
64750
|
+
* @group AWS::CodeTest
|
64751
|
+
*/
|
64752
|
+
export interface CodeTestSeriesProps {
|
64753
|
+
RunDefinition: object;
|
64754
|
+
State: string;
|
64755
|
+
PersistentConfigurationId: string;
|
64756
|
+
Name?: string;
|
64757
|
+
}
|
64545
64758
|
/**
|
64546
64759
|
* Type definition for AWS::Cognito::IdentityPool
|
64547
64760
|
*
|
@@ -66941,6 +67154,7 @@ export interface EC2HostProps {
|
|
66941
67154
|
HostMaintenance?: string;
|
66942
67155
|
AvailabilityZone: string;
|
66943
67156
|
InstanceType?: string;
|
67157
|
+
AssetId?: string;
|
66944
67158
|
}
|
66945
67159
|
/**
|
66946
67160
|
* Attributes type definition for AWS::EC2::Host
|
@@ -71764,14 +71978,30 @@ export interface IAMInstanceProfileAttribs {
|
|
71764
71978
|
* @group AWS::IAM
|
71765
71979
|
*/
|
71766
71980
|
export interface IAMManagedPolicyProps {
|
71767
|
-
Description?: string;
|
71768
|
-
Groups?: any[];
|
71769
71981
|
ManagedPolicyName?: string;
|
71770
71982
|
Path?: string;
|
71983
|
+
Description?: string;
|
71984
|
+
Groups?: any[];
|
71771
71985
|
PolicyDocument: object;
|
71772
71986
|
Roles?: any[];
|
71773
71987
|
Users?: any[];
|
71774
71988
|
}
|
71989
|
+
/**
|
71990
|
+
* Attributes type definition for AWS::IAM::ManagedPolicy
|
71991
|
+
*
|
71992
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html | AWS::IAM::ManagedPolicy}
|
71993
|
+
* @group AWS::IAM
|
71994
|
+
*/
|
71995
|
+
export interface IAMManagedPolicyAttribs {
|
71996
|
+
IsAttachable?: boolean;
|
71997
|
+
UpdateDate?: string;
|
71998
|
+
PermissionsBoundaryUsageCount?: number;
|
71999
|
+
AttachmentCount?: number;
|
72000
|
+
PolicyArn?: string;
|
72001
|
+
DefaultVersionId?: string;
|
72002
|
+
CreateDate?: string;
|
72003
|
+
PolicyId?: string;
|
72004
|
+
}
|
71775
72005
|
/**
|
71776
72006
|
* Type definition for AWS::IAM::OIDCProvider
|
71777
72007
|
*
|
@@ -74028,6 +74258,7 @@ export interface KMSAliasProps {
|
|
74028
74258
|
* @group AWS::KMS
|
74029
74259
|
*/
|
74030
74260
|
export interface KMSKeyProps {
|
74261
|
+
Origin?: string;
|
74031
74262
|
MultiRegion?: boolean;
|
74032
74263
|
Description?: string;
|
74033
74264
|
PendingWindowInDays?: number;
|
@@ -74685,14 +74916,23 @@ export interface LambdaLayerVersionPermissionProps {
|
|
74685
74916
|
* @group AWS::Lambda
|
74686
74917
|
*/
|
74687
74918
|
export interface LambdaPermissionProps {
|
74919
|
+
FunctionName: string;
|
74688
74920
|
Action: string;
|
74689
74921
|
EventSourceToken?: string;
|
74690
|
-
FunctionName: string;
|
74691
74922
|
FunctionUrlAuthType?: string;
|
74692
|
-
Principal: string;
|
74693
|
-
PrincipalOrgID?: string;
|
74694
|
-
SourceAccount?: string;
|
74695
74923
|
SourceArn?: string;
|
74924
|
+
SourceAccount?: string;
|
74925
|
+
PrincipalOrgID?: string;
|
74926
|
+
Principal: string;
|
74927
|
+
}
|
74928
|
+
/**
|
74929
|
+
* Attributes type definition for AWS::Lambda::Permission
|
74930
|
+
*
|
74931
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html | AWS::Lambda::Permission}
|
74932
|
+
* @group AWS::Lambda
|
74933
|
+
*/
|
74934
|
+
export interface LambdaPermissionAttribs {
|
74935
|
+
Id?: string;
|
74696
74936
|
}
|
74697
74937
|
/**
|
74698
74938
|
* Type definition for AWS::Lambda::Url
|
@@ -81308,13 +81548,22 @@ export interface SQSQueueAttribs {
|
|
81308
81548
|
/**
|
81309
81549
|
* Type definition for AWS::SQS::QueuePolicy
|
81310
81550
|
*
|
81311
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
81551
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queuepolicy.html | AWS::SQS::QueuePolicy}
|
81312
81552
|
* @group AWS::SQS
|
81313
81553
|
*/
|
81314
81554
|
export interface SQSQueuePolicyProps {
|
81315
81555
|
PolicyDocument: object;
|
81316
81556
|
Queues: any[];
|
81317
81557
|
}
|
81558
|
+
/**
|
81559
|
+
* Attributes type definition for AWS::SQS::QueuePolicy
|
81560
|
+
*
|
81561
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queuepolicy.html | AWS::SQS::QueuePolicy}
|
81562
|
+
* @group AWS::SQS
|
81563
|
+
*/
|
81564
|
+
export interface SQSQueuePolicyAttribs {
|
81565
|
+
Id?: string;
|
81566
|
+
}
|
81318
81567
|
/**
|
81319
81568
|
* Type definition for AWS::SSM::Association
|
81320
81569
|
*
|
@@ -81943,6 +82192,15 @@ export interface SageMakerImageAttribs {
|
|
81943
82192
|
*/
|
81944
82193
|
export interface SageMakerImageVersionProps {
|
81945
82194
|
ImageName: string;
|
82195
|
+
Horovod?: boolean;
|
82196
|
+
Processor?: string;
|
82197
|
+
JobType?: string;
|
82198
|
+
Alias?: string;
|
82199
|
+
ProgrammingLang?: string;
|
82200
|
+
VendorGuidance?: string;
|
82201
|
+
MLFramework?: string;
|
82202
|
+
Aliases?: any[];
|
82203
|
+
ReleaseNotes?: string;
|
81946
82204
|
BaseImage: string;
|
81947
82205
|
}
|
81948
82206
|
/**
|
@@ -83424,6 +83682,7 @@ export interface TimestreamScheduledQueryAttribs {
|
|
83424
83682
|
export interface TimestreamTableProps {
|
83425
83683
|
TableName?: string;
|
83426
83684
|
RetentionProperties?: TimestreamTableRetentionProperties;
|
83685
|
+
Schema?: TimestreamTableSchema;
|
83427
83686
|
DatabaseName: string;
|
83428
83687
|
Tags?: any[];
|
83429
83688
|
MagneticStoreWriteProperties?: TimestreamTableMagneticStoreWriteProperties;
|
@@ -84669,6 +84928,8 @@ export interface ResourceTypes {
|
|
84669
84928
|
"AWS::CodeStar::GitHubRepository": CodeStarGitHubRepositoryProps;
|
84670
84929
|
"AWS::CodeStarConnections::Connection": CodeStarConnectionsConnectionProps;
|
84671
84930
|
"AWS::CodeStarNotifications::NotificationRule": CodeStarNotificationsNotificationRuleProps;
|
84931
|
+
"AWS::CodeTest::PersistentConfiguration": CodeTestPersistentConfigurationProps;
|
84932
|
+
"AWS::CodeTest::Series": CodeTestSeriesProps;
|
84672
84933
|
"AWS::Cognito::IdentityPool": CognitoIdentityPoolProps;
|
84673
84934
|
"AWS::Cognito::IdentityPoolPrincipalTag": CognitoIdentityPoolPrincipalTagProps;
|
84674
84935
|
"AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentProps;
|
@@ -85723,6 +85984,7 @@ export interface AttributeTypes {
|
|
85723
85984
|
"AWS::CodePipeline::Webhook": CodePipelineWebhookAttribs;
|
85724
85985
|
"AWS::CodeStarConnections::Connection": CodeStarConnectionsConnectionAttribs;
|
85725
85986
|
"AWS::CodeStarNotifications::NotificationRule": CodeStarNotificationsNotificationRuleAttribs;
|
85987
|
+
"AWS::CodeTest::PersistentConfiguration": CodeTestPersistentConfigurationAttribs;
|
85726
85988
|
"AWS::Cognito::IdentityPool": CognitoIdentityPoolAttribs;
|
85727
85989
|
"AWS::Cognito::UserPool": CognitoUserPoolAttribs;
|
85728
85990
|
"AWS::Cognito::UserPoolClient": CognitoUserPoolClientAttribs;
|
@@ -85949,6 +86211,7 @@ export interface AttributeTypes {
|
|
85949
86211
|
"AWS::IAM::AccessKey": IAMAccessKeyAttribs;
|
85950
86212
|
"AWS::IAM::Group": IAMGroupAttribs;
|
85951
86213
|
"AWS::IAM::InstanceProfile": IAMInstanceProfileAttribs;
|
86214
|
+
"AWS::IAM::ManagedPolicy": IAMManagedPolicyAttribs;
|
85952
86215
|
"AWS::IAM::OIDCProvider": IAMOIDCProviderAttribs;
|
85953
86216
|
"AWS::IAM::Role": IAMRoleAttribs;
|
85954
86217
|
"AWS::IAM::SAMLProvider": IAMSAMLProviderAttribs;
|
@@ -86053,6 +86316,7 @@ export interface AttributeTypes {
|
|
86053
86316
|
"AWS::Lambda::EventSourceMapping": LambdaEventSourceMappingAttribs;
|
86054
86317
|
"AWS::Lambda::Function": LambdaFunctionAttribs;
|
86055
86318
|
"AWS::Lambda::LayerVersion": LambdaLayerVersionAttribs;
|
86319
|
+
"AWS::Lambda::Permission": LambdaPermissionAttribs;
|
86056
86320
|
"AWS::Lambda::Url": LambdaUrlAttribs;
|
86057
86321
|
"AWS::Lambda::Version": LambdaVersionAttribs;
|
86058
86322
|
"AWS::Lex::Bot": LexBotAttribs;
|
@@ -86272,6 +86536,7 @@ export interface AttributeTypes {
|
|
86272
86536
|
"AWS::SNS::Topic": SNSTopicAttribs;
|
86273
86537
|
"AWS::SNS::TopicPolicy": SNSTopicPolicyAttribs;
|
86274
86538
|
"AWS::SQS::Queue": SQSQueueAttribs;
|
86539
|
+
"AWS::SQS::QueuePolicy": SQSQueuePolicyAttribs;
|
86275
86540
|
"AWS::SSM::Association": SSMAssociationAttribs;
|
86276
86541
|
"AWS::SSM::Parameter": SSMParameterAttribs;
|
86277
86542
|
"AWS::SSM::ResourceDataSync": SSMResourceDataSyncAttribs;
|
@@ -86579,6 +86844,8 @@ export declare const ResourceType: {
|
|
86579
86844
|
readonly CodeStarGitHubRepository: "AWS::CodeStar::GitHubRepository";
|
86580
86845
|
readonly CodeStarConnectionsConnection: "AWS::CodeStarConnections::Connection";
|
86581
86846
|
readonly CodeStarNotificationsNotificationRule: "AWS::CodeStarNotifications::NotificationRule";
|
86847
|
+
readonly CodeTestPersistentConfiguration: "AWS::CodeTest::PersistentConfiguration";
|
86848
|
+
readonly CodeTestSeries: "AWS::CodeTest::Series";
|
86582
86849
|
readonly CognitoIdentityPool: "AWS::Cognito::IdentityPool";
|
86583
86850
|
readonly CognitoIdentityPoolPrincipalTag: "AWS::Cognito::IdentityPoolPrincipalTag";
|
86584
86851
|
readonly CognitoIdentityPoolRoleAttachment: "AWS::Cognito::IdentityPoolRoleAttachment";
|
package/lib/types.generated.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
export const ResourceSpecificationVersion = "
|
1
|
+
export const ResourceSpecificationVersion = "132.0.0";
|
2
2
|
export const ResourceType = {
|
3
3
|
ACMPCACertificate: "AWS::ACMPCA::Certificate",
|
4
4
|
ACMPCACertificateAuthority: "AWS::ACMPCA::CertificateAuthority",
|
@@ -199,6 +199,8 @@ export const ResourceType = {
|
|
199
199
|
CodeStarGitHubRepository: "AWS::CodeStar::GitHubRepository",
|
200
200
|
CodeStarConnectionsConnection: "AWS::CodeStarConnections::Connection",
|
201
201
|
CodeStarNotificationsNotificationRule: "AWS::CodeStarNotifications::NotificationRule",
|
202
|
+
CodeTestPersistentConfiguration: "AWS::CodeTest::PersistentConfiguration",
|
203
|
+
CodeTestSeries: "AWS::CodeTest::Series",
|
202
204
|
CognitoIdentityPool: "AWS::Cognito::IdentityPool",
|
203
205
|
CognitoIdentityPoolPrincipalTag: "AWS::Cognito::IdentityPoolPrincipalTag",
|
204
206
|
CognitoIdentityPoolRoleAttachment: "AWS::Cognito::IdentityPoolRoleAttachment",
|
@@ -1306,6 +1308,8 @@ export const AttributeNames = {
|
|
1306
1308
|
"AWS::CodeStar::GitHubRepository": [],
|
1307
1309
|
"AWS::CodeStarConnections::Connection": ["ConnectionArn", "ConnectionStatus", "OwnerAccountId"],
|
1308
1310
|
"AWS::CodeStarNotifications::NotificationRule": ["Arn"],
|
1311
|
+
"AWS::CodeTest::PersistentConfiguration": ["Name"],
|
1312
|
+
"AWS::CodeTest::Series": [],
|
1309
1313
|
"AWS::Cognito::IdentityPool": ["Name"],
|
1310
1314
|
"AWS::Cognito::IdentityPoolPrincipalTag": [],
|
1311
1315
|
"AWS::Cognito::IdentityPoolRoleAttachment": [],
|
@@ -1639,7 +1643,7 @@ export const AttributeNames = {
|
|
1639
1643
|
"AWS::IAM::Group": ["Arn"],
|
1640
1644
|
"AWS::IAM::GroupPolicy": [],
|
1641
1645
|
"AWS::IAM::InstanceProfile": ["Arn"],
|
1642
|
-
"AWS::IAM::ManagedPolicy": [],
|
1646
|
+
"AWS::IAM::ManagedPolicy": ["IsAttachable", "UpdateDate", "PermissionsBoundaryUsageCount", "AttachmentCount", "PolicyArn", "DefaultVersionId", "CreateDate", "PolicyId"],
|
1643
1647
|
"AWS::IAM::OIDCProvider": ["Arn"],
|
1644
1648
|
"AWS::IAM::Policy": [],
|
1645
1649
|
"AWS::IAM::Role": ["Arn", "RoleId"],
|
@@ -1772,7 +1776,7 @@ export const AttributeNames = {
|
|
1772
1776
|
"AWS::Lambda::Function": ["SnapStartResponse.OptimizationStatus", "SnapStartResponse.ApplyOn", "SnapStartResponse", "Arn"],
|
1773
1777
|
"AWS::Lambda::LayerVersion": ["LayerVersionArn"],
|
1774
1778
|
"AWS::Lambda::LayerVersionPermission": [],
|
1775
|
-
"AWS::Lambda::Permission": [],
|
1779
|
+
"AWS::Lambda::Permission": ["Id"],
|
1776
1780
|
"AWS::Lambda::Url": ["FunctionArn", "FunctionUrl"],
|
1777
1781
|
"AWS::Lambda::Version": ["Version"],
|
1778
1782
|
"AWS::Lex::Bot": ["Id", "Arn"],
|
@@ -2056,7 +2060,7 @@ export const AttributeNames = {
|
|
2056
2060
|
"AWS::SNS::TopicInlinePolicy": [],
|
2057
2061
|
"AWS::SNS::TopicPolicy": ["Id"],
|
2058
2062
|
"AWS::SQS::Queue": ["Arn", "QueueName", "QueueUrl"],
|
2059
|
-
"AWS::SQS::QueuePolicy": [],
|
2063
|
+
"AWS::SQS::QueuePolicy": ["Id"],
|
2060
2064
|
"AWS::SSM::Association": ["AssociationId"],
|
2061
2065
|
"AWS::SSM::Document": [],
|
2062
2066
|
"AWS::SSM::MaintenanceWindow": [],
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@awboost/cfntypes",
|
3
|
-
"version": "1.0.0-beta.
|
3
|
+
"version": "1.0.0-beta.34",
|
4
4
|
"private": false,
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -59,5 +59,5 @@
|
|
59
59
|
"ts-node": "^10.9.1",
|
60
60
|
"typescript": "^4.9.5"
|
61
61
|
},
|
62
|
-
"awsResourceSpecificationVersion": "
|
62
|
+
"awsResourceSpecificationVersion": "132.0.0"
|
63
63
|
}
|