cdk-lambda-subminute 2.0.405 → 2.0.407

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.
@@ -25247,6 +25247,14 @@ declare namespace EC2 {
25247
25247
  * Describes the supported NitroTPM versions for the instance type.
25248
25248
  */
25249
25249
  NitroTpmInfo?: NitroTpmInfo;
25250
+ /**
25251
+ * Describes the media accelerator settings for the instance type.
25252
+ */
25253
+ MediaAcceleratorInfo?: MediaAcceleratorInfo;
25254
+ /**
25255
+ * Describes the Neuron accelerator settings for the instance type.
25256
+ */
25257
+ NeuronInfo?: NeuronInfo;
25250
25258
  }
25251
25259
  export interface InstanceTypeInfoFromInstanceRequirements {
25252
25260
  /**
@@ -27778,6 +27786,45 @@ declare namespace EC2 {
27778
27786
  export type MaximumIops = number;
27779
27787
  export type MaximumNetworkCards = number;
27780
27788
  export type MaximumThroughputInMBps = number;
27789
+ export interface MediaAcceleratorInfo {
27790
+ /**
27791
+ * Describes the media accelerators for the instance type.
27792
+ */
27793
+ Accelerators?: MediaDeviceInfoList;
27794
+ /**
27795
+ * The total size of the memory for the media accelerators for the instance type, in MiB.
27796
+ */
27797
+ TotalMediaMemoryInMiB?: TotalMediaMemory;
27798
+ }
27799
+ export type MediaDeviceCount = number;
27800
+ export interface MediaDeviceInfo {
27801
+ /**
27802
+ * The number of media accelerators for the instance type.
27803
+ */
27804
+ Count?: MediaDeviceCount;
27805
+ /**
27806
+ * The name of the media accelerator.
27807
+ */
27808
+ Name?: MediaDeviceName;
27809
+ /**
27810
+ * The manufacturer of the media accelerator.
27811
+ */
27812
+ Manufacturer?: MediaDeviceManufacturerName;
27813
+ /**
27814
+ * Describes the memory available to the media accelerator.
27815
+ */
27816
+ MemoryInfo?: MediaDeviceMemoryInfo;
27817
+ }
27818
+ export type MediaDeviceInfoList = MediaDeviceInfo[];
27819
+ export type MediaDeviceManufacturerName = string;
27820
+ export interface MediaDeviceMemoryInfo {
27821
+ /**
27822
+ * The size of the memory available to each media accelerator, in MiB.
27823
+ */
27824
+ SizeInMiB?: MediaDeviceMemorySize;
27825
+ }
27826
+ export type MediaDeviceMemorySize = number;
27827
+ export type MediaDeviceName = string;
27781
27828
  export type MembershipType = "static"|"igmp"|string;
27782
27829
  export interface MemoryGiBPerVCpu {
27783
27830
  /**
@@ -30924,6 +30971,56 @@ declare namespace EC2 {
30924
30971
  export type NetworkInterfaceType = "interface"|"natGateway"|"efa"|"trunk"|"load_balancer"|"network_load_balancer"|"vpc_endpoint"|"branch"|"transit_gateway"|"lambda"|"quicksight"|"global_accelerator_managed"|"api_gateway_managed"|"gateway_load_balancer"|"gateway_load_balancer_endpoint"|"iot_rules_managed"|"aws_codestar_connections_managed"|string;
30925
30972
  export type NetworkNodesList = String[];
30926
30973
  export type NetworkPerformance = string;
30974
+ export type NeuronDeviceCoreCount = number;
30975
+ export interface NeuronDeviceCoreInfo {
30976
+ /**
30977
+ * The number of cores available to the neuron accelerator.
30978
+ */
30979
+ Count?: NeuronDeviceCoreCount;
30980
+ /**
30981
+ * The version of the neuron accelerator.
30982
+ */
30983
+ Version?: NeuronDeviceCoreVersion;
30984
+ }
30985
+ export type NeuronDeviceCoreVersion = number;
30986
+ export type NeuronDeviceCount = number;
30987
+ export interface NeuronDeviceInfo {
30988
+ /**
30989
+ * The number of neuron accelerators for the instance type.
30990
+ */
30991
+ Count?: NeuronDeviceCount;
30992
+ /**
30993
+ * The name of the neuron accelerator.
30994
+ */
30995
+ Name?: NeuronDeviceName;
30996
+ /**
30997
+ * Describes the cores available to each neuron accelerator.
30998
+ */
30999
+ CoreInfo?: NeuronDeviceCoreInfo;
31000
+ /**
31001
+ * Describes the memory available to each neuron accelerator.
31002
+ */
31003
+ MemoryInfo?: NeuronDeviceMemoryInfo;
31004
+ }
31005
+ export type NeuronDeviceInfoList = NeuronDeviceInfo[];
31006
+ export interface NeuronDeviceMemoryInfo {
31007
+ /**
31008
+ * The size of the memory available to the neuron accelerator, in MiB.
31009
+ */
31010
+ SizeInMiB?: NeuronDeviceMemorySize;
31011
+ }
31012
+ export type NeuronDeviceMemorySize = number;
31013
+ export type NeuronDeviceName = string;
31014
+ export interface NeuronInfo {
31015
+ /**
31016
+ * Describes the neuron accelerators for the instance type.
31017
+ */
31018
+ NeuronDevices?: NeuronDeviceInfoList;
31019
+ /**
31020
+ * The total size of the memory for the neuron accelerators for the instance type, in MiB.
31021
+ */
31022
+ TotalNeuronDeviceMemoryInMiB?: TotalNeuronMemory;
31023
+ }
30927
31024
  export interface NewDhcpConfiguration {
30928
31025
  Key?: String;
30929
31026
  Values?: ValueStringList;
@@ -35768,7 +35865,7 @@ declare namespace EC2 {
35768
35865
  */
35769
35866
  IamFleetRole: String;
35770
35867
  /**
35771
- * The launch specifications for the Spot Fleet request. If you specify LaunchSpecifications, you can't specify LaunchTemplateConfigs. If you include On-Demand capacity in your request, you must use LaunchTemplateConfigs.
35868
+ * The launch specifications for the Spot Fleet request. If you specify LaunchSpecifications, you can't specify LaunchTemplateConfigs. If you include On-Demand capacity in your request, you must use LaunchTemplateConfigs. If an AMI specified in a launch specification is deregistered or disabled, no new instances can be launched from the AMI. For fleets of type maintain, the target capacity will not be maintained.
35772
35869
  */
35773
35870
  LaunchSpecifications?: LaunchSpecsList;
35774
35871
  /**
@@ -36829,6 +36926,8 @@ declare namespace EC2 {
36829
36926
  */
36830
36927
  Max?: Double;
36831
36928
  }
36929
+ export type TotalMediaMemory = number;
36930
+ export type TotalNeuronMemory = number;
36832
36931
  export type TpmSupportValues = "v2.0"|string;
36833
36932
  export type TrafficDirection = "ingress"|"egress"|string;
36834
36933
  export interface TrafficMirrorFilter {
@@ -2097,7 +2097,7 @@ declare namespace KinesisAnalyticsV2 {
2097
2097
  */
2098
2098
  ApplicationRestoreConfiguration?: ApplicationRestoreConfiguration;
2099
2099
  }
2100
- export type RuntimeEnvironment = "SQL-1_0"|"FLINK-1_6"|"FLINK-1_8"|"ZEPPELIN-FLINK-1_0"|"FLINK-1_11"|"FLINK-1_13"|"ZEPPELIN-FLINK-2_0"|"FLINK-1_15"|"ZEPPELIN-FLINK-3_0"|string;
2100
+ export type RuntimeEnvironment = "SQL-1_0"|"FLINK-1_6"|"FLINK-1_8"|"ZEPPELIN-FLINK-1_0"|"FLINK-1_11"|"FLINK-1_13"|"ZEPPELIN-FLINK-2_0"|"FLINK-1_15"|"ZEPPELIN-FLINK-3_0"|"FLINK-1_18"|string;
2101
2101
  export interface S3ApplicationCodeLocationDescription {
2102
2102
  /**
2103
2103
  * The Amazon Resource Name (ARN) for the S3 bucket containing the application code.