aws-sdk 2.1443.0 → 2.1445.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.
package/lib/core.js CHANGED
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1443.0',
23
+ VERSION: '2.1445.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -122,7 +122,7 @@ AWS.SSOTokenProvider = AWS.util.inherit(AWS.Token, {
122
122
  );
123
123
  } else if (!profile['sso_session']) {
124
124
  throw AWS.util.error(
125
- new Error('Profile "' + profileName + '" is missing required property "sso_session".'),
125
+ new Error('Profile "' + this.profile + '" is missing required property "sso_session".'),
126
126
  { code: 'SSOTokenProviderFailure' }
127
127
  );
128
128
  }
@@ -138,12 +138,12 @@ AWS.SSOTokenProvider = AWS.util.inherit(AWS.Token, {
138
138
  );
139
139
  } else if (!ssoSession['sso_start_url']) {
140
140
  throw AWS.util.error(
141
- new Error('Sso session "' + profileName + '" is missing required property "sso_start_url".'),
141
+ new Error('Sso session "' + this.profile + '" is missing required property "sso_start_url".'),
142
142
  { code: 'SSOTokenProviderFailure' }
143
143
  );
144
144
  } else if (!ssoSession['sso_region']) {
145
145
  throw AWS.util.error(
146
- new Error('Sso session "' + profileName + '" is missing required property "sso_region".'),
146
+ new Error('Sso session "' + this.profile + '" is missing required property "sso_region".'),
147
147
  { code: 'SSOTokenProviderFailure' }
148
148
  );
149
149
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1443.0",
4
+ "version": "2.1445.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",