@awboost/cfntypes 1.0.0-beta.54 → 1.0.0-beta.56
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/definitions.d.ts
CHANGED
@@ -302,7 +302,7 @@ export type CustomResourceType<T extends string = string> = `Custom::${T}`;
|
|
302
302
|
/**
|
303
303
|
* Represents a custom resource definition.
|
304
304
|
*/
|
305
|
-
export type CustomResourceDefinition<P =
|
305
|
+
export type CustomResourceDefinition<P = unknown, T extends string = string> = ResourceDefinitionBase<P & CustomResourcePropertiesBase, CustomResourceType<T>>;
|
306
306
|
/**
|
307
307
|
* Represents an AWS or custom resource definition.
|
308
308
|
*/
|
@@ -1,4 +1,4 @@
|
|
1
|
-
export declare const ResourceSpecificationVersion = "
|
1
|
+
export declare const ResourceSpecificationVersion = "141.0.0";
|
2
2
|
/**
|
3
3
|
* Type definition for AWS::ACMPCA::Certificate.ApiPassthrough
|
4
4
|
*
|
@@ -15294,6 +15294,27 @@ export interface EFSFileSystemLifecyclePolicy {
|
|
15294
15294
|
TransitionToIA?: string;
|
15295
15295
|
TransitionToPrimaryStorageClass?: string;
|
15296
15296
|
}
|
15297
|
+
/**
|
15298
|
+
* Type definition for AWS::EFS::FileSystem.ReplicationConfiguration
|
15299
|
+
*
|
15300
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationconfiguration.html | AWS::EFS::FileSystem.ReplicationConfiguration}
|
15301
|
+
* @group AWS::EFS
|
15302
|
+
*/
|
15303
|
+
export interface EFSFileSystemReplicationConfiguration {
|
15304
|
+
Destinations?: any[];
|
15305
|
+
}
|
15306
|
+
/**
|
15307
|
+
* Type definition for AWS::EFS::FileSystem.ReplicationDestination
|
15308
|
+
*
|
15309
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationdestination.html | AWS::EFS::FileSystem.ReplicationDestination}
|
15310
|
+
* @group AWS::EFS
|
15311
|
+
*/
|
15312
|
+
export interface EFSFileSystemReplicationDestination {
|
15313
|
+
KmsKeyId?: string;
|
15314
|
+
AvailabilityZoneName?: string;
|
15315
|
+
FileSystemId?: string;
|
15316
|
+
Region?: string;
|
15317
|
+
}
|
15297
15318
|
/**
|
15298
15319
|
* Type definition for AWS::EKS::Cluster.ClusterLogging
|
15299
15320
|
*
|
@@ -28327,6 +28348,16 @@ export interface LightsailContainerContainerServiceDeployment {
|
|
28327
28348
|
Containers?: any[];
|
28328
28349
|
PublicEndpoint?: LightsailContainerPublicEndpoint;
|
28329
28350
|
}
|
28351
|
+
/**
|
28352
|
+
* Type definition for AWS::Lightsail::Container.EcrImagePullerRole
|
28353
|
+
*
|
28354
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-ecrimagepullerrole.html | AWS::Lightsail::Container.EcrImagePullerRole}
|
28355
|
+
* @group AWS::Lightsail
|
28356
|
+
*/
|
28357
|
+
export interface LightsailContainerEcrImagePullerRole {
|
28358
|
+
PrincipalArn?: string;
|
28359
|
+
IsActive?: boolean;
|
28360
|
+
}
|
28330
28361
|
/**
|
28331
28362
|
* Type definition for AWS::Lightsail::Container.EnvironmentVariable
|
28332
28363
|
*
|
@@ -28361,6 +28392,15 @@ export interface LightsailContainerPortInfo {
|
|
28361
28392
|
Port?: string;
|
28362
28393
|
Protocol?: string;
|
28363
28394
|
}
|
28395
|
+
/**
|
28396
|
+
* Type definition for AWS::Lightsail::Container.PrivateRegistryAccess
|
28397
|
+
*
|
28398
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-privateregistryaccess.html | AWS::Lightsail::Container.PrivateRegistryAccess}
|
28399
|
+
* @group AWS::Lightsail
|
28400
|
+
*/
|
28401
|
+
export interface LightsailContainerPrivateRegistryAccess {
|
28402
|
+
EcrImagePullerRole?: LightsailContainerEcrImagePullerRole;
|
28403
|
+
}
|
28364
28404
|
/**
|
28365
28405
|
* Type definition for AWS::Lightsail::Container.PublicDomainName
|
28366
28406
|
*
|
@@ -61672,8 +61712,8 @@ export interface AlexaASKSkillSkillPackage {
|
|
61672
61712
|
* @group Tag
|
61673
61713
|
*/
|
61674
61714
|
export interface Tag {
|
61675
|
-
Value: string;
|
61676
61715
|
Key: string;
|
61716
|
+
Value: string;
|
61677
61717
|
}
|
61678
61718
|
/**
|
61679
61719
|
* Type definition for AWS::ACMPCA::Certificate
|
@@ -66960,6 +67000,30 @@ export interface ConnectSecurityKeyProps {
|
|
66960
67000
|
export interface ConnectSecurityKeyAttribs {
|
66961
67001
|
AssociationId?: string;
|
66962
67002
|
}
|
67003
|
+
/**
|
67004
|
+
* Type definition for AWS::Connect::SecurityProfile
|
67005
|
+
*
|
67006
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-securityprofile.html | AWS::Connect::SecurityProfile}
|
67007
|
+
* @group AWS::Connect
|
67008
|
+
*/
|
67009
|
+
export interface ConnectSecurityProfileProps {
|
67010
|
+
AllowedAccessControlTags?: any[];
|
67011
|
+
Description?: string;
|
67012
|
+
InstanceArn: string;
|
67013
|
+
Permissions?: any[];
|
67014
|
+
SecurityProfileName: string;
|
67015
|
+
TagRestrictedResources?: any[];
|
67016
|
+
Tags?: any[];
|
67017
|
+
}
|
67018
|
+
/**
|
67019
|
+
* Attributes type definition for AWS::Connect::SecurityProfile
|
67020
|
+
*
|
67021
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-securityprofile.html | AWS::Connect::SecurityProfile}
|
67022
|
+
* @group AWS::Connect
|
67023
|
+
*/
|
67024
|
+
export interface ConnectSecurityProfileAttribs {
|
67025
|
+
SecurityProfileArn?: string;
|
67026
|
+
}
|
66963
67027
|
/**
|
66964
67028
|
* Type definition for AWS::Connect::TaskTemplate
|
66965
67029
|
*
|
@@ -69426,6 +69490,7 @@ export interface EC2RouteProps {
|
|
69426
69490
|
TransitGatewayId?: string;
|
69427
69491
|
VpcPeeringConnectionId?: string;
|
69428
69492
|
EgressOnlyInternetGatewayId?: string;
|
69493
|
+
DestinationPrefixListId?: string;
|
69429
69494
|
NatGatewayId?: string;
|
69430
69495
|
}
|
69431
69496
|
/**
|
@@ -70054,8 +70119,17 @@ export interface EC2VPCEndpointAttribs {
|
|
70054
70119
|
export interface EC2VPCEndpointConnectionNotificationProps {
|
70055
70120
|
ConnectionEvents: any[];
|
70056
70121
|
VPCEndpointId?: string;
|
70057
|
-
ServiceId?: string;
|
70058
70122
|
ConnectionNotificationArn: string;
|
70123
|
+
ServiceId?: string;
|
70124
|
+
}
|
70125
|
+
/**
|
70126
|
+
* Attributes type definition for AWS::EC2::VPCEndpointConnectionNotification
|
70127
|
+
*
|
70128
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html | AWS::EC2::VPCEndpointConnectionNotification}
|
70129
|
+
* @group AWS::EC2
|
70130
|
+
*/
|
70131
|
+
export interface EC2VPCEndpointConnectionNotificationAttribs {
|
70132
|
+
VPCEndpointConnectionNotificationId?: string;
|
70059
70133
|
}
|
70060
70134
|
/**
|
70061
70135
|
* Type definition for AWS::EC2::VPCEndpointService
|
@@ -70631,6 +70705,7 @@ export interface EFSFileSystemProps {
|
|
70631
70705
|
AvailabilityZoneName?: string;
|
70632
70706
|
LifecyclePolicies?: any[];
|
70633
70707
|
ThroughputMode?: string;
|
70708
|
+
ReplicationConfiguration?: EFSFileSystemReplicationConfiguration;
|
70634
70709
|
BackupPolicy?: EFSFileSystemBackupPolicy;
|
70635
70710
|
}
|
70636
70711
|
/**
|
@@ -76878,6 +76953,7 @@ export interface LightsailCertificateAttribs {
|
|
76878
76953
|
export interface LightsailContainerProps {
|
76879
76954
|
PublicDomainNames?: any[];
|
76880
76955
|
ServiceName: string;
|
76956
|
+
PrivateRegistryAccess?: LightsailContainerPrivateRegistryAccess;
|
76881
76957
|
ContainerServiceDeployment?: LightsailContainerContainerServiceDeployment;
|
76882
76958
|
IsDisabled?: boolean;
|
76883
76959
|
Scale: number;
|
@@ -76891,6 +76967,8 @@ export interface LightsailContainerProps {
|
|
76891
76967
|
* @group AWS::Lightsail
|
76892
76968
|
*/
|
76893
76969
|
export interface LightsailContainerAttribs {
|
76970
|
+
PrincipalArn?: string;
|
76971
|
+
"PrivateRegistryAccess.EcrImagePullerRole.PrincipalArn"?: string;
|
76894
76972
|
ContainerArn?: string;
|
76895
76973
|
Url?: string;
|
76896
76974
|
}
|
@@ -77710,6 +77788,7 @@ export interface MacieCustomDataIdentifierProps {
|
|
77710
77788
|
Keywords?: any[];
|
77711
77789
|
Regex: string;
|
77712
77790
|
IgnoreWords?: any[];
|
77791
|
+
Tags?: any[];
|
77713
77792
|
Name: string;
|
77714
77793
|
MaximumMatchDistance?: number;
|
77715
77794
|
}
|
@@ -87172,6 +87251,7 @@ export interface ResourceTypes {
|
|
87172
87251
|
"AWS::Connect::RoutingProfile": ConnectRoutingProfileProps;
|
87173
87252
|
"AWS::Connect::Rule": ConnectRuleProps;
|
87174
87253
|
"AWS::Connect::SecurityKey": ConnectSecurityKeyProps;
|
87254
|
+
"AWS::Connect::SecurityProfile": ConnectSecurityProfileProps;
|
87175
87255
|
"AWS::Connect::TaskTemplate": ConnectTaskTemplateProps;
|
87176
87256
|
"AWS::Connect::TrafficDistributionGroup": ConnectTrafficDistributionGroupProps;
|
87177
87257
|
"AWS::Connect::User": ConnectUserProps;
|
@@ -88245,6 +88325,7 @@ export interface AttributeTypes {
|
|
88245
88325
|
"AWS::Connect::RoutingProfile": ConnectRoutingProfileAttribs;
|
88246
88326
|
"AWS::Connect::Rule": ConnectRuleAttribs;
|
88247
88327
|
"AWS::Connect::SecurityKey": ConnectSecurityKeyAttribs;
|
88328
|
+
"AWS::Connect::SecurityProfile": ConnectSecurityProfileAttribs;
|
88248
88329
|
"AWS::Connect::TaskTemplate": ConnectTaskTemplateAttribs;
|
88249
88330
|
"AWS::Connect::TrafficDistributionGroup": ConnectTrafficDistributionGroupAttribs;
|
88250
88331
|
"AWS::Connect::User": ConnectUserAttribs;
|
@@ -88347,6 +88428,7 @@ export interface AttributeTypes {
|
|
88347
88428
|
"AWS::EC2::TransitGatewayVpcAttachment": EC2TransitGatewayVpcAttachmentAttribs;
|
88348
88429
|
"AWS::EC2::VPC": EC2VPCAttribs;
|
88349
88430
|
"AWS::EC2::VPCEndpoint": EC2VPCEndpointAttribs;
|
88431
|
+
"AWS::EC2::VPCEndpointConnectionNotification": EC2VPCEndpointConnectionNotificationAttribs;
|
88350
88432
|
"AWS::EC2::VPCEndpointService": EC2VPCEndpointServiceAttribs;
|
88351
88433
|
"AWS::EC2::VPCPeeringConnection": EC2VPCPeeringConnectionAttribs;
|
88352
88434
|
"AWS::EC2::VPNConnection": EC2VPNConnectionAttribs;
|
@@ -89155,6 +89237,7 @@ export declare const ResourceType: {
|
|
89155
89237
|
readonly ConnectRoutingProfile: "AWS::Connect::RoutingProfile";
|
89156
89238
|
readonly ConnectRule: "AWS::Connect::Rule";
|
89157
89239
|
readonly ConnectSecurityKey: "AWS::Connect::SecurityKey";
|
89240
|
+
readonly ConnectSecurityProfile: "AWS::Connect::SecurityProfile";
|
89158
89241
|
readonly ConnectTaskTemplate: "AWS::Connect::TaskTemplate";
|
89159
89242
|
readonly ConnectTrafficDistributionGroup: "AWS::Connect::TrafficDistributionGroup";
|
89160
89243
|
readonly ConnectUser: "AWS::Connect::User";
|
@@ -1,4 +1,4 @@
|
|
1
|
-
export const ResourceSpecificationVersion = "
|
1
|
+
export const ResourceSpecificationVersion = "141.0.0";
|
2
2
|
export const ResourceType = {
|
3
3
|
ACMPCACertificate: "AWS::ACMPCA::Certificate",
|
4
4
|
ACMPCACertificateAuthority: "AWS::ACMPCA::CertificateAuthority",
|
@@ -240,6 +240,7 @@ export const ResourceType = {
|
|
240
240
|
ConnectRoutingProfile: "AWS::Connect::RoutingProfile",
|
241
241
|
ConnectRule: "AWS::Connect::Rule",
|
242
242
|
ConnectSecurityKey: "AWS::Connect::SecurityKey",
|
243
|
+
ConnectSecurityProfile: "AWS::Connect::SecurityProfile",
|
243
244
|
ConnectTaskTemplate: "AWS::Connect::TaskTemplate",
|
244
245
|
ConnectTrafficDistributionGroup: "AWS::Connect::TrafficDistributionGroup",
|
245
246
|
ConnectUser: "AWS::Connect::User",
|
@@ -1382,6 +1383,7 @@ export const AttributeNames = {
|
|
1382
1383
|
"AWS::Connect::RoutingProfile": ["RoutingProfileArn"],
|
1383
1384
|
"AWS::Connect::Rule": ["RuleArn"],
|
1384
1385
|
"AWS::Connect::SecurityKey": ["AssociationId"],
|
1386
|
+
"AWS::Connect::SecurityProfile": ["SecurityProfileArn"],
|
1385
1387
|
"AWS::Connect::TaskTemplate": ["Arn"],
|
1386
1388
|
"AWS::Connect::TrafficDistributionGroup": ["Status", "IsDefault", "TrafficDistributionGroupArn"],
|
1387
1389
|
"AWS::Connect::User": ["UserArn"],
|
@@ -1519,7 +1521,7 @@ export const AttributeNames = {
|
|
1519
1521
|
"AWS::EC2::VPCCidrBlock": [],
|
1520
1522
|
"AWS::EC2::VPCDHCPOptionsAssociation": [],
|
1521
1523
|
"AWS::EC2::VPCEndpoint": ["CreationTimestamp", "NetworkInterfaceIds", "Id", "DnsEntries"],
|
1522
|
-
"AWS::EC2::VPCEndpointConnectionNotification": [],
|
1524
|
+
"AWS::EC2::VPCEndpointConnectionNotification": ["VPCEndpointConnectionNotificationId"],
|
1523
1525
|
"AWS::EC2::VPCEndpointService": ["ServiceId"],
|
1524
1526
|
"AWS::EC2::VPCEndpointServicePermissions": [],
|
1525
1527
|
"AWS::EC2::VPCGatewayAttachment": [],
|
@@ -1829,7 +1831,7 @@ export const AttributeNames = {
|
|
1829
1831
|
"AWS::Lightsail::Alarm": ["AlarmArn", "State"],
|
1830
1832
|
"AWS::Lightsail::Bucket": ["BucketArn", "AbleToUpdateBundle", "Url"],
|
1831
1833
|
"AWS::Lightsail::Certificate": ["Status", "CertificateArn"],
|
1832
|
-
"AWS::Lightsail::Container": ["ContainerArn", "Url"],
|
1834
|
+
"AWS::Lightsail::Container": ["PrincipalArn", "PrivateRegistryAccess.EcrImagePullerRole.PrincipalArn", "ContainerArn", "Url"],
|
1833
1835
|
"AWS::Lightsail::Database": ["DatabaseArn"],
|
1834
1836
|
"AWS::Lightsail::Disk": ["Path", "AttachmentState", "Location.AvailabilityZone", "SupportCode", "State", "IsAttached", "ResourceType", "DiskArn", "AttachedTo", "Iops", "Location.RegionName"],
|
1835
1837
|
"AWS::Lightsail::Distribution": ["Status", "DistributionArn", "AbleToUpdateBundle"],
|
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.56",
|
4
4
|
"private": false,
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -47,5 +47,5 @@
|
|
47
47
|
"scripts": {
|
48
48
|
"lint": "eslint src/ --ext=ts"
|
49
49
|
},
|
50
|
-
"awsResourceSpecificationVersion": "
|
50
|
+
"awsResourceSpecificationVersion": "141.0.0"
|
51
51
|
}
|