@awboost/cfntypes 1.0.0-beta.35 → 1.0.0-beta.36

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.
@@ -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 = "133.0.0";
4
+ exports.ResourceSpecificationVersion = "134.0.0";
5
5
  exports.ResourceType = {
6
6
  ACMPCACertificate: "AWS::ACMPCA::Certificate",
7
7
  ACMPCACertificateAuthority: "AWS::ACMPCA::CertificateAuthority",
@@ -1452,7 +1452,7 @@ exports.AttributeNames = {
1452
1452
  "AWS::EC2::NetworkPerformanceMetricSubscription": [],
1453
1453
  "AWS::EC2::PlacementGroup": ["GroupName"],
1454
1454
  "AWS::EC2::PrefixList": ["OwnerId", "PrefixListId", "Version", "Arn"],
1455
- "AWS::EC2::Route": [],
1455
+ "AWS::EC2::Route": ["CidrBlock"],
1456
1456
  "AWS::EC2::RouteTable": ["RouteTableId"],
1457
1457
  "AWS::EC2::SecurityGroup": ["GroupId", "VpcId"],
1458
1458
  "AWS::EC2::SecurityGroupEgress": [],
@@ -1777,7 +1777,7 @@ exports.AttributeNames = {
1777
1777
  "AWS::Lambda::EventSourceMapping": ["Id"],
1778
1778
  "AWS::Lambda::Function": ["SnapStartResponse.OptimizationStatus", "SnapStartResponse.ApplyOn", "SnapStartResponse", "Arn"],
1779
1779
  "AWS::Lambda::LayerVersion": ["LayerVersionArn"],
1780
- "AWS::Lambda::LayerVersionPermission": [],
1780
+ "AWS::Lambda::LayerVersionPermission": ["Id"],
1781
1781
  "AWS::Lambda::Permission": ["Id"],
1782
1782
  "AWS::Lambda::Url": ["FunctionArn", "FunctionUrl"],
1783
1783
  "AWS::Lambda::Version": ["Version"],
@@ -1,4 +1,4 @@
1
- export declare const ResourceSpecificationVersion = "133.0.0";
1
+ export declare const ResourceSpecificationVersion = "134.0.0";
2
2
  /**
3
3
  * Type definition for AWS::ACMPCA::Certificate.ApiPassthrough
4
4
  *
@@ -58013,6 +58013,7 @@ export interface TimestreamTableSchema {
58013
58013
  export interface TransferConnectorAs2Config {
58014
58014
  Compression?: string;
58015
58015
  MessageSubject?: string;
58016
+ BasicAuthSecretId?: string;
58016
58017
  PartnerProfileId?: string;
58017
58018
  EncryptionAlgorithm?: string;
58018
58019
  SigningAlgorithm?: string;
@@ -58020,6 +58021,16 @@ export interface TransferConnectorAs2Config {
58020
58021
  MdnResponse?: string;
58021
58022
  MdnSigningAlgorithm?: string;
58022
58023
  }
58024
+ /**
58025
+ * Type definition for AWS::Transfer::Connector.SftpConfig
58026
+ *
58027
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-sftpconfig.html | AWS::Transfer::Connector.SftpConfig}
58028
+ * @group AWS::Transfer
58029
+ */
58030
+ export interface TransferConnectorSftpConfig {
58031
+ TrustedHostKeys?: any[];
58032
+ UserSecretId?: string;
58033
+ }
58023
58034
  /**
58024
58035
  * Type definition for AWS::Transfer::Server.As2Transport
58025
58036
  *
@@ -60376,8 +60387,8 @@ export interface AlexaASKSkillSkillPackage {
60376
60387
  * @group Tag
60377
60388
  */
60378
60389
  export interface Tag {
60379
- Key: string;
60380
60390
  Value: string;
60391
+ Key: string;
60381
60392
  }
60382
60393
  /**
60383
60394
  * Type definition for AWS::ACMPCA::Certificate
@@ -67943,19 +67954,28 @@ export interface EC2PrefixListAttribs {
67943
67954
  * @group AWS::EC2
67944
67955
  */
67945
67956
  export interface EC2RouteProps {
67946
- CarrierGatewayId?: string;
67947
- DestinationCidrBlock?: string;
67948
67957
  DestinationIpv6CidrBlock?: string;
67949
- EgressOnlyInternetGatewayId?: string;
67950
- GatewayId?: string;
67958
+ RouteTableId: string;
67951
67959
  InstanceId?: string;
67952
67960
  LocalGatewayId?: string;
67953
- NatGatewayId?: string;
67961
+ CarrierGatewayId?: string;
67962
+ DestinationCidrBlock?: string;
67963
+ GatewayId?: string;
67954
67964
  NetworkInterfaceId?: string;
67955
- RouteTableId: string;
67956
- TransitGatewayId?: string;
67957
67965
  VpcEndpointId?: string;
67966
+ TransitGatewayId?: string;
67958
67967
  VpcPeeringConnectionId?: string;
67968
+ EgressOnlyInternetGatewayId?: string;
67969
+ NatGatewayId?: string;
67970
+ }
67971
+ /**
67972
+ * Attributes type definition for AWS::EC2::Route
67973
+ *
67974
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html | AWS::EC2::Route}
67975
+ * @group AWS::EC2
67976
+ */
67977
+ export interface EC2RouteAttribs {
67978
+ CidrBlock?: string;
67959
67979
  }
67960
67980
  /**
67961
67981
  * Type definition for AWS::EC2::RouteTable
@@ -74989,6 +75009,15 @@ export interface LambdaLayerVersionPermissionProps {
74989
75009
  OrganizationId?: string;
74990
75010
  Principal: string;
74991
75011
  }
75012
+ /**
75013
+ * Attributes type definition for AWS::Lambda::LayerVersionPermission
75014
+ *
75015
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html | AWS::Lambda::LayerVersionPermission}
75016
+ * @group AWS::Lambda
75017
+ */
75018
+ export interface LambdaLayerVersionPermissionAttribs {
75019
+ Id?: string;
75020
+ }
74992
75021
  /**
74993
75022
  * Type definition for AWS::Lambda::Permission
74994
75023
  *
@@ -77704,6 +77733,7 @@ export interface OmicsReferenceStoreAttribs {
77704
77733
  */
77705
77734
  export interface OmicsRunGroupProps {
77706
77735
  MaxDuration?: number;
77736
+ MaxGpus?: number;
77707
77737
  MaxRuns?: number;
77708
77738
  MaxCpus?: number;
77709
77739
  Tags?: Record<string, any>;
@@ -77782,6 +77812,7 @@ export interface OmicsWorkflowProps {
77782
77812
  ParameterTemplate?: Record<string, any>;
77783
77813
  Description?: string;
77784
77814
  StorageCapacity?: number;
77815
+ Accelerators?: string;
77785
77816
  DefinitionUri?: string;
77786
77817
  Main?: string;
77787
77818
  Engine?: string;
@@ -83852,9 +83883,10 @@ export interface TransferCertificateAttribs {
83852
83883
  * @group AWS::Transfer
83853
83884
  */
83854
83885
  export interface TransferConnectorProps {
83855
- As2Config: TransferConnectorAs2Config;
83886
+ As2Config?: TransferConnectorAs2Config;
83856
83887
  LoggingRole?: string;
83857
83888
  AccessRole: string;
83889
+ SftpConfig?: TransferConnectorSftpConfig;
83858
83890
  Tags?: any[];
83859
83891
  Url: string;
83860
83892
  }
@@ -86174,6 +86206,7 @@ export interface AttributeTypes {
86174
86206
  "AWS::EC2::NetworkInterface": EC2NetworkInterfaceAttribs;
86175
86207
  "AWS::EC2::PlacementGroup": EC2PlacementGroupAttribs;
86176
86208
  "AWS::EC2::PrefixList": EC2PrefixListAttribs;
86209
+ "AWS::EC2::Route": EC2RouteAttribs;
86177
86210
  "AWS::EC2::RouteTable": EC2RouteTableAttribs;
86178
86211
  "AWS::EC2::SecurityGroup": EC2SecurityGroupAttribs;
86179
86212
  "AWS::EC2::SpotFleet": EC2SpotFleetAttribs;
@@ -86406,6 +86439,7 @@ export interface AttributeTypes {
86406
86439
  "AWS::Lambda::EventSourceMapping": LambdaEventSourceMappingAttribs;
86407
86440
  "AWS::Lambda::Function": LambdaFunctionAttribs;
86408
86441
  "AWS::Lambda::LayerVersion": LambdaLayerVersionAttribs;
86442
+ "AWS::Lambda::LayerVersionPermission": LambdaLayerVersionPermissionAttribs;
86409
86443
  "AWS::Lambda::Permission": LambdaPermissionAttribs;
86410
86444
  "AWS::Lambda::Url": LambdaUrlAttribs;
86411
86445
  "AWS::Lambda::Version": LambdaVersionAttribs;
@@ -1,4 +1,4 @@
1
- export const ResourceSpecificationVersion = "133.0.0";
1
+ export const ResourceSpecificationVersion = "134.0.0";
2
2
  export const ResourceType = {
3
3
  ACMPCACertificate: "AWS::ACMPCA::Certificate",
4
4
  ACMPCACertificateAuthority: "AWS::ACMPCA::CertificateAuthority",
@@ -1449,7 +1449,7 @@ export const AttributeNames = {
1449
1449
  "AWS::EC2::NetworkPerformanceMetricSubscription": [],
1450
1450
  "AWS::EC2::PlacementGroup": ["GroupName"],
1451
1451
  "AWS::EC2::PrefixList": ["OwnerId", "PrefixListId", "Version", "Arn"],
1452
- "AWS::EC2::Route": [],
1452
+ "AWS::EC2::Route": ["CidrBlock"],
1453
1453
  "AWS::EC2::RouteTable": ["RouteTableId"],
1454
1454
  "AWS::EC2::SecurityGroup": ["GroupId", "VpcId"],
1455
1455
  "AWS::EC2::SecurityGroupEgress": [],
@@ -1774,7 +1774,7 @@ export const AttributeNames = {
1774
1774
  "AWS::Lambda::EventSourceMapping": ["Id"],
1775
1775
  "AWS::Lambda::Function": ["SnapStartResponse.OptimizationStatus", "SnapStartResponse.ApplyOn", "SnapStartResponse", "Arn"],
1776
1776
  "AWS::Lambda::LayerVersion": ["LayerVersionArn"],
1777
- "AWS::Lambda::LayerVersionPermission": [],
1777
+ "AWS::Lambda::LayerVersionPermission": ["Id"],
1778
1778
  "AWS::Lambda::Permission": ["Id"],
1779
1779
  "AWS::Lambda::Url": ["FunctionArn", "FunctionUrl"],
1780
1780
  "AWS::Lambda::Version": ["Version"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfntypes",
3
- "version": "1.0.0-beta.35",
3
+ "version": "1.0.0-beta.36",
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": "133.0.0"
62
+ "awsResourceSpecificationVersion": "134.0.0"
63
63
  }