cdk-docker-image-deployment 0.0.53 → 0.0.54

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.
@@ -78,6 +78,12 @@
78
78
  "output_token": "Marker",
79
79
  "result_key": "Events"
80
80
  },
81
+ "DescribeGlobalClusters": {
82
+ "input_token": "Marker",
83
+ "limit_key": "MaxRecords",
84
+ "output_token": "Marker",
85
+ "result_key": "GlobalClusters"
86
+ },
81
87
  "DescribeOrderableDBInstanceOptions": {
82
88
  "input_token": "Marker",
83
89
  "limit_key": "MaxRecords",
@@ -11936,7 +11936,6 @@
11936
11936
  "Sdd": {
11937
11937
  "type": "structure",
11938
11938
  "required": [
11939
- "MaxNumberOfTrainingJobs",
11940
11939
  "MaxParallelTrainingJobs"
11941
11940
  ],
11942
11941
  "members": {
@@ -1652,7 +1652,7 @@ declare namespace IAM {
1652
1652
  */
1653
1653
  Description?: roleDescriptionType;
1654
1654
  /**
1655
- * The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default value of one hour is applied. This setting can have a value from 1 hour to 12 hours. Anyone who assumes the role from the or API can use the DurationSeconds API parameter or the duration-seconds CLI parameter to request a longer session. The MaxSessionDuration setting determines the maximum duration that can be requested using the DurationSeconds parameter. If users don't specify a value for the DurationSeconds parameter, their security credentials are valid for one hour by default. This applies when you use the AssumeRole* API operations or the assume-role* CLI operations but does not apply when you use those operations to create a console URL. For more information, see Using IAM roles in the IAM User Guide.
1655
+ * The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default value of one hour is applied. This setting can have a value from 1 hour to 12 hours. Anyone who assumes the role from the CLI or API can use the DurationSeconds API parameter or the duration-seconds CLI parameter to request a longer session. The MaxSessionDuration setting determines the maximum duration that can be requested using the DurationSeconds parameter. If users don't specify a value for the DurationSeconds parameter, their security credentials are valid for one hour by default. This applies when you use the AssumeRole* API operations or the assume-role* CLI operations but does not apply when you use those operations to create a console URL. For more information, see Using IAM roles in the IAM User Guide.
1656
1656
  */
1657
1657
  MaxSessionDuration?: roleMaxSessionDurationType;
1658
1658
  /**
@@ -427,6 +427,14 @@ declare class Kafka extends Service {
427
427
 
428
428
  */
429
429
  updateSecurity(callback?: (err: AWSError, data: Kafka.Types.UpdateSecurityResponse) => void): Request<Kafka.Types.UpdateSecurityResponse, AWSError>;
430
+ /**
431
+ * Updates cluster broker volume size (or) sets cluster storage mode to TIERED.
432
+ */
433
+ updateStorage(params: Kafka.Types.UpdateStorageRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateStorageResponse) => void): Request<Kafka.Types.UpdateStorageResponse, AWSError>;
434
+ /**
435
+ * Updates cluster broker volume size (or) sets cluster storage mode to TIERED.
436
+ */
437
+ updateStorage(callback?: (err: AWSError, data: Kafka.Types.UpdateStorageResponse) => void): Request<Kafka.Types.UpdateStorageResponse, AWSError>;
430
438
  }
431
439
  declare namespace Kafka {
432
440
  export interface BatchAssociateScramSecretRequest {
@@ -466,7 +474,9 @@ declare namespace Kafka {
466
474
  */
467
475
  KafkaBrokerNodeId: __string;
468
476
  /**
469
- * EBS volume provisioned throughput information.
477
+ *
478
+ EBS volume provisioned throughput information.
479
+
470
480
  */
471
481
  ProvisionedThroughput?: ProvisionedThroughput;
472
482
  /**
@@ -711,6 +721,12 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
711
721
 
712
722
  */
713
723
  ZookeeperConnectStringTls?: __string;
724
+ /**
725
+ *
726
+ This controls storage mode for supported storage tiers.
727
+
728
+ */
729
+ StorageMode?: StorageMode;
714
730
  }
715
731
  export interface Cluster {
716
732
  /**
@@ -927,6 +943,12 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
927
943
 
928
944
  */
929
945
  NumberOfBrokerNodes: __integerMin1Max15;
946
+ /**
947
+ *
948
+ This controls storage mode for supported storage tiers.
949
+
950
+ */
951
+ StorageMode?: StorageMode;
930
952
  }
931
953
  export interface Provisioned {
932
954
  /**
@@ -989,6 +1011,12 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
989
1011
 
990
1012
  */
991
1013
  ZookeeperConnectStringTls?: __string;
1014
+ /**
1015
+ *
1016
+ This controls storage mode for supported storage tiers.
1017
+
1018
+ */
1019
+ StorageMode?: StorageMode;
992
1020
  }
993
1021
  export interface VpcConfig {
994
1022
  /**
@@ -1221,6 +1249,12 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
1221
1249
 
1222
1250
  */
1223
1251
  Tags?: __mapOf__string;
1252
+ /**
1253
+ *
1254
+ This controls storage mode for supported storage tiers.
1255
+
1256
+ */
1257
+ StorageMode?: StorageMode;
1224
1258
  }
1225
1259
  export interface CreateClusterResponse {
1226
1260
  /**
@@ -1554,7 +1588,9 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
1554
1588
  }
1555
1589
  export interface EBSStorageInfo {
1556
1590
  /**
1557
- * EBS volume provisioned throughput information.
1591
+ *
1592
+ EBS volume provisioned throughput information.
1593
+
1558
1594
  */
1559
1595
  ProvisionedThroughput?: ProvisionedThroughput;
1560
1596
  /**
@@ -2051,6 +2087,12 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2051
2087
 
2052
2088
  */
2053
2089
  ConnectivityInfo?: ConnectivityInfo;
2090
+ /**
2091
+ *
2092
+ This controls storage mode for supported storage tiers.
2093
+
2094
+ */
2095
+ StorageMode?: StorageMode;
2054
2096
  }
2055
2097
  export interface NodeExporter {
2056
2098
  /**
@@ -2130,11 +2172,15 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2130
2172
  }
2131
2173
  export interface ProvisionedThroughput {
2132
2174
  /**
2133
- * Provisioned throughput is enabled or not.
2175
+ *
2176
+ Provisioned throughput is enabled or not.
2177
+
2134
2178
  */
2135
2179
  Enabled?: __boolean;
2136
2180
  /**
2137
- * Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.
2181
+ *
2182
+ Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.
2183
+
2138
2184
  */
2139
2185
  VolumeThroughput?: __integer;
2140
2186
  }
@@ -2268,6 +2314,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2268
2314
  */
2269
2315
  EbsStorageInfo?: EBSStorageInfo;
2270
2316
  }
2317
+ export type StorageMode = "LOCAL"|"TIERED"|string;
2271
2318
  export interface TagResourceRequest {
2272
2319
  /**
2273
2320
  *
@@ -2614,6 +2661,52 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2614
2661
  */
2615
2662
  ClusterOperationArn?: __string;
2616
2663
  }
2664
+ export interface UpdateStorageRequest {
2665
+ /**
2666
+ *
2667
+ The Amazon Resource Name (ARN) of the cluster to be updated.
2668
+
2669
+ */
2670
+ ClusterArn: __string;
2671
+ /**
2672
+ *
2673
+ The version of cluster to update from. A successful operation will then generate a new version.
2674
+
2675
+ */
2676
+ CurrentVersion: __string;
2677
+ /**
2678
+ *
2679
+ EBS volume provisioned throughput information.
2680
+
2681
+ */
2682
+ ProvisionedThroughput?: ProvisionedThroughput;
2683
+ /**
2684
+ *
2685
+ Controls storage mode for supported storage tiers.
2686
+
2687
+ */
2688
+ StorageMode?: StorageMode;
2689
+ /**
2690
+ *
2691
+ size of the EBS volume to update.
2692
+
2693
+ */
2694
+ VolumeSizeGB?: __integer;
2695
+ }
2696
+ export interface UpdateStorageResponse {
2697
+ /**
2698
+ *
2699
+ The Amazon Resource Name (ARN) of the cluster.
2700
+
2701
+ */
2702
+ ClusterArn?: __string;
2703
+ /**
2704
+ *
2705
+ The Amazon Resource Name (ARN) of the cluster operation.
2706
+
2707
+ */
2708
+ ClusterOperationArn?: __string;
2709
+ }
2617
2710
  export interface UpdateConfigurationRequest {
2618
2711
  /**
2619
2712
  *
@@ -908,6 +908,7 @@ declare namespace Neptune {
908
908
  * A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is enabled.
909
909
  */
910
910
  DeletionProtection?: BooleanOptional;
911
+ ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
911
912
  /**
912
913
  * The ID of the Neptune global database to which this new DB cluster should be added.
913
914
  */
@@ -1396,6 +1397,7 @@ declare namespace Neptune {
1396
1397
  * Time at which the DB cluster will be automatically restarted.
1397
1398
  */
1398
1399
  AutomaticRestartTime?: TStamp;
1400
+ ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfigurationInfo;
1399
1401
  }
1400
1402
  export interface DBClusterEndpoint {
1401
1403
  /**
@@ -3044,6 +3046,7 @@ declare namespace Neptune {
3044
3046
  * If set to true, tags are copied to any snapshot of the DB cluster that is created.
3045
3047
  */
3046
3048
  CopyTagsToSnapshot?: BooleanOptional;
3049
+ ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
3047
3050
  }
3048
3051
  export interface ModifyDBClusterParameterGroupMessage {
3049
3052
  /**
@@ -3764,6 +3767,7 @@ declare namespace Neptune {
3764
3767
  * If set to true, tags are copied to any snapshot of the restored DB cluster that is created.
3765
3768
  */
3766
3769
  CopyTagsToSnapshot?: BooleanOptional;
3770
+ ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
3767
3771
  }
3768
3772
  export interface RestoreDBClusterFromSnapshotResult {
3769
3773
  DBCluster?: DBCluster;
@@ -3829,10 +3833,31 @@ declare namespace Neptune {
3829
3833
  * A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled.
3830
3834
  */
3831
3835
  DeletionProtection?: BooleanOptional;
3836
+ ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
3832
3837
  }
3833
3838
  export interface RestoreDBClusterToPointInTimeResult {
3834
3839
  DBCluster?: DBCluster;
3835
3840
  }
3841
+ export interface ServerlessV2ScalingConfiguration {
3842
+ /**
3843
+ * The minimum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. You can specify NCU values in half-step increments, such as 8, 8.5, 9, and so on.
3844
+ */
3845
+ MinCapacity?: DoubleOptional;
3846
+ /**
3847
+ * The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. You can specify NCU values in half-step increments, such as 40, 40.5, 41, and so on.
3848
+ */
3849
+ MaxCapacity?: DoubleOptional;
3850
+ }
3851
+ export interface ServerlessV2ScalingConfigurationInfo {
3852
+ /**
3853
+ * The minimum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. You can specify NCU values in half-step increments, such as 8, 8.5, 9, and so on.
3854
+ */
3855
+ MinCapacity?: DoubleOptional;
3856
+ /**
3857
+ * The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. You can specify NCU values in half-step increments, such as 40, 40.5, 41, and so on.
3858
+ */
3859
+ MaxCapacity?: DoubleOptional;
3860
+ }
3836
3861
  export type SourceIdsList = String[];
3837
3862
  export type SourceType = "db-instance"|"db-parameter-group"|"db-security-group"|"db-snapshot"|"db-cluster"|"db-cluster-snapshot"|string;
3838
3863
  export interface StartDBClusterMessage {
@@ -10545,7 +10545,7 @@ declare namespace SageMaker {
10545
10545
  */
10546
10546
  HyperbandStrategyConfig?: HyperbandStrategyConfig;
10547
10547
  }
10548
- export type HyperParameterTuningJobStrategyType = "Bayesian"|"Random"|"Hyperband"|string;
10548
+ export type HyperParameterTuningJobStrategyType = "Bayesian"|"Random"|"Hyperband"|"Grid"|string;
10549
10549
  export type HyperParameterTuningJobSummaries = HyperParameterTuningJobSummary[];
10550
10550
  export interface HyperParameterTuningJobSummary {
10551
10551
  /**
@@ -16718,7 +16718,7 @@ declare namespace SageMaker {
16718
16718
  /**
16719
16719
  * The maximum number of training jobs that a hyperparameter tuning job can launch.
16720
16720
  */
16721
- MaxNumberOfTrainingJobs: MaxNumberOfTrainingJobs;
16721
+ MaxNumberOfTrainingJobs?: MaxNumberOfTrainingJobs;
16722
16722
  /**
16723
16723
  * The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.
16724
16724
  */
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1240.0',
86
+ VERSION: '2.1241.0',
87
87
 
88
88
  /**
89
89
  * @api private