aws-sdk 2.1626.0 → 2.1628.0

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.
@@ -211,6 +211,10 @@ declare namespace EMRServerless {
211
211
  */
212
212
  runtimeConfiguration?: ConfigurationList;
213
213
  monitoringConfiguration?: MonitoringConfiguration;
214
+ /**
215
+ * The interactive configuration object that enables the interactive use cases for an application.
216
+ */
217
+ interactiveConfiguration?: InteractiveConfiguration;
214
218
  }
215
219
  export type ApplicationArn = string;
216
220
  export type ApplicationId = string;
@@ -411,6 +415,10 @@ declare namespace EMRServerless {
411
415
  * The configuration setting for monitoring.
412
416
  */
413
417
  monitoringConfiguration?: MonitoringConfiguration;
418
+ /**
419
+ * The interactive configuration object that enables the interactive use cases to use when running an application.
420
+ */
421
+ interactiveConfiguration?: InteractiveConfiguration;
414
422
  }
415
423
  export interface CreateApplicationResponse {
416
424
  /**
@@ -535,6 +543,16 @@ declare namespace EMRServerless {
535
543
  }
536
544
  export type InitialCapacityConfigMap = {[key: string]: InitialCapacityConfig};
537
545
  export type Integer = number;
546
+ export interface InteractiveConfiguration {
547
+ /**
548
+ * Enables you to connect an application to Amazon EMR Studio to run interactive workloads in a notebook.
549
+ */
550
+ studioEnabled?: Boolean;
551
+ /**
552
+ * Enables an Apache Livy endpoint that you can connect to and run interactive jobs.
553
+ */
554
+ livyEndpointEnabled?: Boolean;
555
+ }
538
556
  export type JobArn = string;
539
557
  export interface JobDriver {
540
558
  /**
@@ -1010,6 +1028,10 @@ declare namespace EMRServerless {
1010
1028
  * The key-value pairs that specify worker type to WorkerTypeSpecificationInput. This parameter must contain all valid worker types for a Spark or Hive application. Valid worker types include Driver and Executor for Spark applications and HiveDriver and TezTask for Hive applications. You can either set image details in this parameter for each worker type, or in imageConfiguration for all worker types.
1011
1029
  */
1012
1030
  workerTypeSpecifications?: WorkerTypeSpecificationInputMap;
1031
+ /**
1032
+ * The interactive configuration object that contains new interactive use cases when the application is updated.
1033
+ */
1034
+ interactiveConfiguration?: InteractiveConfiguration;
1013
1035
  /**
1014
1036
  * The Amazon EMR release label for the application. You can change the release label to use a different release of Amazon EMR.
1015
1037
  */
@@ -733,7 +733,7 @@ declare namespace IoTFleetWise {
733
733
  */
734
734
  description?: description;
735
735
  /**
736
- * (Optional) The Amazon Resource Name (ARN) of the signal catalog to associate with the campaign.
736
+ * The Amazon Resource Name (ARN) of the signal catalog to associate with the campaign.
737
737
  */
738
738
  signalCatalogArn: arn;
739
739
  /**
@@ -1953,6 +1953,14 @@ declare namespace IoTFleetWise {
1953
1953
  * The Amazon Resource Name (ARN) of a vehicle model (model manifest). You can use this optional parameter to list only the vehicles created from a certain vehicle model.
1954
1954
  */
1955
1955
  modelManifestArn?: arn;
1956
+ /**
1957
+ * The fully qualified names of the attributes. For example, the fully qualified name of an attribute might be Vehicle.Body.Engine.Type.
1958
+ */
1959
+ attributeNames?: attributeNamesList;
1960
+ /**
1961
+ * Static information about a vehicle attribute value in string format. For example: "1.3 L R2"
1962
+ */
1963
+ attributeValues?: attributeValuesList;
1956
1964
  /**
1957
1965
  * A pagination token for the next set of results. If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.
1958
1966
  */
@@ -2839,7 +2847,9 @@ declare namespace IoTFleetWise {
2839
2847
  }
2840
2848
  export type arn = string;
2841
2849
  export type attributeName = string;
2850
+ export type attributeNamesList = attributeName[];
2842
2851
  export type attributeValue = string;
2852
+ export type attributeValuesList = attributeValue[];
2843
2853
  export type attributesMap = {[key: string]: attributeValue};
2844
2854
  export type campaignName = string;
2845
2855
  export type campaignSummaries = CampaignSummary[];
@@ -326,7 +326,7 @@ declare namespace ManagedBlockchain {
326
326
  */
327
327
  Tags?: InputTagMap;
328
328
  /**
329
- * The blockchain network that the Accessor token is created for. We recommend using the appropriate networkType value for the blockchain network that you are creating the Accessor token for. You cannnot use the value ETHEREUM_MAINNET_AND_GOERLI to specify a networkType for your Accessor token. The default value of ETHEREUM_MAINNET_AND_GOERLI is only applied: when the CreateAccessor action does not set a networkType. to all existing Accessor tokens that were created before the networkType property was introduced.
329
+ * The blockchain network that the Accessor token is created for. Use the actual networkType value for the blockchain network that you are creating the Accessor token for. With the shut down of the Ethereum Goerli and Polygon Mumbai Testnet networks the following networkType values are no longer available for selection and use. ETHEREUM_MAINNET_AND_GOERLI ETHEREUM_GOERLI POLYGON_MUMBAI However, your existing Accessor tokens with these networkType values will remain unchanged.
330
330
  */
331
331
  NetworkType?: AccessorNetworkType;
332
332
  }
@@ -422,7 +422,7 @@ declare namespace ManagedBlockchain {
422
422
  */
423
423
  ClientRequestToken: ClientRequestTokenString;
424
424
  /**
425
- * The unique identifier of the network for the node. Ethereum public networks have the following NetworkIds: n-ethereum-mainnet n-ethereum-goerli
425
+ * The unique identifier of the network for the node. Ethereum public networks have the following NetworkIds: n-ethereum-mainnet
426
426
  */
427
427
  NetworkId: ResourceIdString;
428
428
  /**
@@ -498,7 +498,7 @@ declare namespace ManagedBlockchain {
498
498
  }
499
499
  export interface DeleteNodeInput {
500
500
  /**
501
- * The unique identifier of the network that the node is on. Ethereum public networks have the following NetworkIds: n-ethereum-mainnet n-ethereum-goerli
501
+ * The unique identifier of the network that the node is on. Ethereum public networks have the following NetworkIds: n-ethereum-mainnet
502
502
  */
503
503
  NetworkId: ResourceIdString;
504
504
  /**
@@ -1050,7 +1050,7 @@ declare namespace ManagedBlockchain {
1050
1050
  }
1051
1051
  export interface NetworkEthereumAttributes {
1052
1052
  /**
1053
- * The Ethereum CHAIN_ID associated with the Ethereum network. Chain IDs are as follows: mainnet = 1 goerli = 5
1053
+ * The Ethereum CHAIN_ID associated with the Ethereum network. Chain IDs are as follows: mainnet = 1
1054
1054
  */
1055
1055
  ChainId?: String;
1056
1056
  }