cdk-lambda-subminute 2.0.329 → 2.0.331

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.
Files changed (32) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +65 -44
  5. package/node_modules/aws-sdk/apis/chime-sdk-meetings-2021-07-15.min.json +33 -13
  6. package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +163 -152
  7. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -2
  8. package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +507 -112
  9. package/node_modules/aws-sdk/apis/eks-2017-11-01.paginators.json +22 -0
  10. package/node_modules/aws-sdk/apis/fsx-2018-03-01.min.json +9 -5
  11. package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +81 -22
  12. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +251 -31
  13. package/node_modules/aws-sdk/apis/rds-2014-10-31.paginators.json +6 -0
  14. package/node_modules/aws-sdk/apis/route53resolver-2018-04-01.min.json +86 -73
  15. package/node_modules/aws-sdk/clients/appsync.d.ts +39 -0
  16. package/node_modules/aws-sdk/clients/chimesdkmeetings.d.ts +56 -23
  17. package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +96 -81
  18. package/node_modules/aws-sdk/clients/ec2.d.ts +21 -6
  19. package/node_modules/aws-sdk/clients/eks.d.ts +592 -178
  20. package/node_modules/aws-sdk/clients/fsx.d.ts +11 -2
  21. package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +74 -2
  22. package/node_modules/aws-sdk/clients/quicksight.d.ts +2 -2
  23. package/node_modules/aws-sdk/clients/rds.d.ts +335 -0
  24. package/node_modules/aws-sdk/clients/route53resolver.d.ts +35 -17
  25. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  26. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +12 -12
  27. package/node_modules/aws-sdk/dist/aws-sdk.js +511 -210
  28. package/node_modules/aws-sdk/dist/aws-sdk.min.js +63 -63
  29. package/node_modules/aws-sdk/lib/core.js +1 -1
  30. package/node_modules/aws-sdk/package.json +1 -1
  31. package/node_modules/aws-sdk/scripts/console +1 -1
  32. package/package.json +4 -4
@@ -5683,6 +5683,10 @@ declare namespace EC2 {
5683
5683
  * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
5684
5684
  */
5685
5685
  DryRun?: Boolean;
5686
+ /**
5687
+ * If you have Local Zones enabled, you can choose a network border group for Local Zones when you provision and advertise a BYOIPv4 CIDR. Choose the network border group carefully as the EIP and the Amazon Web Services resource it is associated with must reside in the same network border group. You can provision BYOIP address ranges to and advertise them in the following Local Zone network border groups: us-east-1-dfw-2 us-west-2-lax-1 us-west-2-phx-2 You cannot provision or advertise BYOIPv6 address ranges in Local Zones at this time.
5688
+ */
5689
+ NetworkBorderGroup?: String;
5686
5690
  }
5687
5691
  export interface AdvertiseByoipCidrResult {
5688
5692
  /**
@@ -7319,6 +7323,10 @@ declare namespace EC2 {
7319
7323
  * The state of the address pool.
7320
7324
  */
7321
7325
  State?: ByoipCidrState;
7326
+ /**
7327
+ * If you have Local Zones enabled, you can choose a network border group for Local Zones when you provision and advertise a BYOIPv4 CIDR. Choose the network border group carefully as the EIP and the Amazon Web Services resource it is associated with must reside in the same network border group. You can provision BYOIP address ranges to and advertise them in the following Local Zone network border groups: us-east-1-dfw-2 us-west-2-lax-1 us-west-2-phx-2 You cannot provision or advertise BYOIPv6 address ranges in Local Zones at this time.
7328
+ */
7329
+ NetworkBorderGroup?: String;
7322
7330
  }
7323
7331
  export type ByoipCidrSet = ByoipCidr[];
7324
7332
  export type ByoipCidrState = "advertised"|"deprovisioned"|"failed-deprovision"|"failed-provision"|"pending-deprovision"|"pending-provision"|"provisioned"|"provisioned-not-publicly-advertisable"|string;
@@ -24600,7 +24608,7 @@ declare namespace EC2 {
24600
24608
  export type InstanceNetworkInterfaceList = InstanceNetworkInterface[];
24601
24609
  export interface InstanceNetworkInterfaceSpecification {
24602
24610
  /**
24603
- * Indicates whether to assign a public IPv4 address to an instance you launch in a VPC. The public IP address can only be assigned to a network interface for eth0, and can only be assigned to a new network interface, not an existing one. You cannot specify more than one network interface in the request. If launching into a default subnet, the default value is true.
24611
+ * Indicates whether to assign a public IPv4 address to an instance you launch in a VPC. The public IP address can only be assigned to a network interface for eth0, and can only be assigned to a new network interface, not an existing one. You cannot specify more than one network interface in the request. If launching into a default subnet, the default value is true. Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.
24604
24612
  */
24605
24613
  AssociatePublicIpAddress?: Boolean;
24606
24614
  /**
@@ -25718,6 +25726,9 @@ declare namespace EC2 {
25718
25726
  * The IP address source for pools in the public scope. Only used for provisioning IP address CIDRs to pools in the public scope. Default is BYOIP. For more information, see Create IPv6 pools in the Amazon VPC IPAM User Guide. By default, you can add only one Amazon-provided IPv6 CIDR block to a top-level IPv6 pool. For information on increasing the default limit, see Quotas for your IPAM in the Amazon VPC IPAM User Guide.
25719
25727
  */
25720
25728
  PublicIpSource?: IpamPoolPublicIpSource;
25729
+ /**
25730
+ * The resource used to provision CIDRs to a resource planning pool.
25731
+ */
25721
25732
  SourceResource?: IpamPoolSourceResource;
25722
25733
  }
25723
25734
  export interface IpamPoolAllocation {
@@ -26674,7 +26685,7 @@ declare namespace EC2 {
26674
26685
  */
26675
26686
  State?: LaunchTemplateInstanceMetadataOptionsState;
26676
26687
  /**
26677
- * Indicates whether IMDSv2 is optional or required. optional - When IMDSv2 is optional, you can choose to retrieve instance metadata with or without a session token in your request. If you retrieve the IAM role credentials without a token, the IMDSv1 role credentials are returned. If you retrieve the IAM role credentials using a valid session token, the IMDSv2 role credentials are returned. required - When IMDSv2 is required, you must send a session token with any instance metadata retrieval requests. In this state, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available. Default: optional
26688
+ * Indicates whether IMDSv2 is required. optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials. required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available.
26678
26689
  */
26679
26690
  HttpTokens?: LaunchTemplateHttpTokensState;
26680
26691
  /**
@@ -26696,7 +26707,7 @@ declare namespace EC2 {
26696
26707
  }
26697
26708
  export interface LaunchTemplateInstanceMetadataOptionsRequest {
26698
26709
  /**
26699
- * IMDSv2 uses token-backed sessions. Set the use of HTTP tokens to optional (in other words, set the use of IMDSv2 to optional) or required (in other words, set the use of IMDSv2 to required). optional - When IMDSv2 is optional, you can choose to retrieve instance metadata with or without a session token in your request. If you retrieve the IAM role credentials without a token, the IMDSv1 role credentials are returned. If you retrieve the IAM role credentials using a valid session token, the IMDSv2 role credentials are returned. required - When IMDSv2 is required, you must send a session token with any instance metadata retrieval requests. In this state, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available. Default: optional
26710
+ * Indicates whether IMDSv2 is required. optional - IMDSv2 is optional. You can choose whether to send a session token in your instance metadata retrieval requests. If you retrieve IAM role credentials without a session token, you receive the IMDSv1 role credentials. If you retrieve IAM role credentials using a valid session token, you receive the IMDSv2 role credentials. required - IMDSv2 is required. You must send a session token in your instance metadata retrieval requests. With this option, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available. Default: If the value of ImdsSupport for the Amazon Machine Image (AMI) for your instance is v2.0, the default is required.
26700
26711
  */
26701
26712
  HttpTokens?: LaunchTemplateHttpTokensState;
26702
26713
  /**
@@ -26725,7 +26736,7 @@ declare namespace EC2 {
26725
26736
  */
26726
26737
  AssociateCarrierIpAddress?: Boolean;
26727
26738
  /**
26728
- * Indicates whether to associate a public IPv4 address with eth0 for a new network interface.
26739
+ * Indicates whether to associate a public IPv4 address with eth0 for a new network interface. Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.
26729
26740
  */
26730
26741
  AssociatePublicIpAddress?: Boolean;
26731
26742
  /**
@@ -26816,7 +26827,7 @@ declare namespace EC2 {
26816
26827
  */
26817
26828
  AssociateCarrierIpAddress?: Boolean;
26818
26829
  /**
26819
- * Associates a public IPv4 address with eth0 for a new network interface.
26830
+ * Associates a public IPv4 address with eth0 for a new network interface. Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.
26820
26831
  */
26821
26832
  AssociatePublicIpAddress?: Boolean;
26822
26833
  /**
@@ -31730,6 +31741,10 @@ declare namespace EC2 {
31730
31741
  * Reserved.
31731
31742
  */
31732
31743
  MultiRegion?: Boolean;
31744
+ /**
31745
+ * If you have Local Zones enabled, you can choose a network border group for Local Zones when you provision and advertise a BYOIPv4 CIDR. Choose the network border group carefully as the EIP and the Amazon Web Services resource it is associated with must reside in the same network border group. You can provision BYOIP address ranges to and advertise them in the following Local Zone network border groups: us-east-1-dfw-2 us-west-2-lax-1 us-west-2-phx-2 You cannot provision or advertise BYOIPv6 address ranges in Local Zones at this time.
31746
+ */
31747
+ NetworkBorderGroup?: String;
31733
31748
  }
31734
31749
  export interface ProvisionByoipCidrResult {
31735
31750
  /**
@@ -32836,7 +32851,7 @@ declare namespace EC2 {
32836
32851
  */
32837
32852
  UserData?: SensitiveUserData;
32838
32853
  /**
32839
- * The tags to apply to the resources that are created during instance launch. You can specify tags for the following resources only: Instances Volumes Elastic graphics Spot Instance requests Network interfaces To tag a resource after it has been created, see CreateTags. To tag the launch template itself, you must use the TagSpecification parameter.
32854
+ * The tags to apply to the resources that are created during instance launch. These tags are not applied to the launch template.
32840
32855
  */
32841
32856
  TagSpecifications?: LaunchTemplateTagSpecificationRequestList;
32842
32857
  /**