Comparing version 2.1626.0 to 2.1627.0
@@ -6,4 +6,6 @@ { | ||
"endpointPrefix": "emr-serverless", | ||
"jsonVersion": "1.1", | ||
"protocol": "rest-json", | ||
"protocols": [ | ||
"rest-json" | ||
], | ||
"serviceFullName": "EMR Serverless", | ||
@@ -101,2 +103,5 @@ "serviceId": "EMR Serverless", | ||
"shape": "S17" | ||
}, | ||
"interactiveConfiguration": { | ||
"shape": "S1k" | ||
} | ||
@@ -168,3 +173,3 @@ } | ||
"application": { | ||
"shape": "S1q" | ||
"shape": "S1r" | ||
} | ||
@@ -265,6 +270,6 @@ } | ||
"configurationOverrides": { | ||
"shape": "S28" | ||
"shape": "S29" | ||
}, | ||
"jobDriver": { | ||
"shape": "S29" | ||
"shape": "S2a" | ||
}, | ||
@@ -544,6 +549,6 @@ "tags": { | ||
"jobDriver": { | ||
"shape": "S29" | ||
"shape": "S2a" | ||
}, | ||
"configurationOverrides": { | ||
"shape": "S28" | ||
"shape": "S29" | ||
}, | ||
@@ -696,2 +701,5 @@ "tags": { | ||
}, | ||
"interactiveConfiguration": { | ||
"shape": "S1k" | ||
}, | ||
"releaseLabel": {}, | ||
@@ -713,3 +721,3 @@ "runtimeConfiguration": { | ||
"application": { | ||
"shape": "S1q" | ||
"shape": "S1r" | ||
} | ||
@@ -886,4 +894,15 @@ } | ||
}, | ||
"S1q": { | ||
"S1k": { | ||
"type": "structure", | ||
"members": { | ||
"studioEnabled": { | ||
"type": "boolean" | ||
}, | ||
"livyEndpointEnabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
"S1r": { | ||
"type": "structure", | ||
"required": [ | ||
@@ -932,3 +951,3 @@ "applicationId", | ||
"imageConfiguration": { | ||
"shape": "S1u" | ||
"shape": "S1v" | ||
}, | ||
@@ -942,3 +961,3 @@ "workerTypeSpecifications": { | ||
"imageConfiguration": { | ||
"shape": "S1u" | ||
"shape": "S1v" | ||
} | ||
@@ -953,6 +972,9 @@ } | ||
"shape": "S17" | ||
}, | ||
"interactiveConfiguration": { | ||
"shape": "S1k" | ||
} | ||
} | ||
}, | ||
"S1u": { | ||
"S1v": { | ||
"type": "structure", | ||
@@ -967,3 +989,3 @@ "required": [ | ||
}, | ||
"S28": { | ||
"S29": { | ||
"type": "structure", | ||
@@ -979,3 +1001,3 @@ "members": { | ||
}, | ||
"S29": { | ||
"S2a": { | ||
"type": "structure", | ||
@@ -982,0 +1004,0 @@ "members": { |
@@ -8,2 +8,5 @@ { | ||
"protocol": "json", | ||
"protocols": [ | ||
"json" | ||
], | ||
"serviceFullName": "AWS OpsWorks", | ||
@@ -10,0 +13,0 @@ "serviceId": "OpsWorks", |
@@ -214,2 +214,6 @@ import {Request} from '../lib/request'; | ||
monitoringConfiguration?: MonitoringConfiguration; | ||
/** | ||
* The interactive configuration object that enables the interactive use cases for an application. | ||
*/ | ||
interactiveConfiguration?: InteractiveConfiguration; | ||
} | ||
@@ -415,2 +419,6 @@ export type ApplicationArn = string; | ||
monitoringConfiguration?: MonitoringConfiguration; | ||
/** | ||
* The interactive configuration object that enables the interactive use cases to use when running an application. | ||
*/ | ||
interactiveConfiguration?: InteractiveConfiguration; | ||
} | ||
@@ -540,2 +548,12 @@ export interface CreateApplicationResponse { | ||
export type Integer = number; | ||
export interface InteractiveConfiguration { | ||
/** | ||
* Enables you to connect an application to Amazon EMR Studio to run interactive workloads in a notebook. | ||
*/ | ||
studioEnabled?: Boolean; | ||
/** | ||
* Enables an Apache Livy endpoint that you can connect to and run interactive jobs. | ||
*/ | ||
livyEndpointEnabled?: Boolean; | ||
} | ||
export type JobArn = string; | ||
@@ -1017,2 +1035,6 @@ export interface JobDriver { | ||
/** | ||
* The interactive configuration object that contains new interactive use cases when the application is updated. | ||
*/ | ||
interactiveConfiguration?: InteractiveConfiguration; | ||
/** | ||
* The Amazon EMR release label for the application. You can change the release label to use a different release of Amazon EMR. | ||
@@ -1019,0 +1041,0 @@ */ |
@@ -23,3 +23,3 @@ /** | ||
*/ | ||
VERSION: '2.1626.0', | ||
VERSION: '2.1627.0', | ||
@@ -26,0 +26,0 @@ /** |
@@ -179,3 +179,3 @@ var AWS = require('../core'); | ||
}); | ||
ssoTokenProvider.load(function (err) { | ||
ssoTokenProvider.get(function (err) { | ||
if (err) { | ||
@@ -182,0 +182,0 @@ return callback(err); |
import {Credentials} from '../credentials'; | ||
import {AWSError} from '../error'; | ||
import {ConfigurationOptions} from '../config-base'; | ||
import {ClientConfiguration} from '../../clients/sts'; | ||
export class TokenFileWebIdentityCredentials extends Credentials { | ||
@@ -9,3 +9,3 @@ /** | ||
*/ | ||
constructor(clientConfig?: ConfigurationOptions); | ||
constructor(clientConfig?: ClientConfiguration); | ||
/** | ||
@@ -12,0 +12,0 @@ * Refreshes credentials using AWS.STS.assumeRoleWithWebIdentity(). |
@@ -21,2 +21,6 @@ | ||
/** | ||
* Fetches metadata token used for authenticating against the instance metadata service. | ||
*/ | ||
fetchMetadataToken(callback: (err: AWSError, token: string) => void): void; | ||
/** | ||
* 169.254.169.254 | ||
@@ -23,0 +27,0 @@ */ |
@@ -123,5 +123,4 @@ var AWS = require('./core'); | ||
/** | ||
* Fetches metadata token used for getting credentials | ||
* Fetches metadata token used for authenticating against the instance metadata service. | ||
* | ||
* @api private | ||
* @callback callback function(err, token) | ||
@@ -128,0 +127,0 @@ * Called when token is loaded from the resource |
@@ -0,1 +1,2 @@ | ||
var AWS = require('../core'); | ||
var util = require('../util'); | ||
@@ -78,3 +79,3 @@ var Rest = require('./rest'); | ||
parser = new JsonParser(); | ||
resp.data[payload] = util.createEventStream( | ||
resp.data[rules.payload] = util.createEventStream( | ||
AWS.HttpClient.streamsApiVersion === 2 ? resp.httpResponse.stream : body, | ||
@@ -81,0 +82,0 @@ parser, |
{ | ||
"name": "aws-sdk", | ||
"description": "AWS SDK for JavaScript", | ||
"version": "2.1626.0", | ||
"version": "2.1627.0", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Amazon Web Services", |
@@ -67,3 +67,3 @@ # AWS SDK for JavaScript | ||
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1626.0.min.js"></script> | ||
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1627.0.min.js"></script> | ||
@@ -70,0 +70,0 @@ You can also build a custom browser SDK with your specified set of AWS services. |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
95667001
1871394