@@ -89,24 +89,6 @@ public class CredentialProfileOptions
89
89
/// Absolute path to the file on disk containing an OIDC token.
90
90
/// </summary>
91
91
public string WebIdentityTokenFile { get ; set ; }
92
- /// <summary>
93
- /// The name of the section which contains the custom endpoints for a service or services.
94
- /// For example:
95
- /// [profile foo]
96
- /// services = bar
97
- /// [services bar]
98
- /// s3 =
99
- /// endpoint_url = https://custom-endpoint-s3:80
100
- /// ec2 =
101
- /// endpoint_url = https://custome-endpoint_ec2:80
102
- /// This will tell the SDK to look for custom endpoints in "bar" for the profile "foo.
103
- /// A single Services section can contain configurations for multiple services.
104
- /// </summary>
105
- public string Services { get ; set ; }
106
- /// <summary>
107
- /// The global endpoint to use for a profile. Service specific endpoints will always override this value.
108
- /// </summary>
109
- public string EndpointUrl { get ; set ; }
110
92
111
93
/// <summary>
112
94
/// The AWS account ID that temporary AWS credentials will be resolved for using AWS SSO.
@@ -139,7 +121,12 @@ public class CredentialProfileOptions
139
121
/// Provided by the SSO service via the web console.
140
122
/// </summary>
141
123
public string SsoStartUrl { get ; set ; }
142
-
124
+
125
+ /// <summary>
126
+ /// The account id to use for account id based endpoint routing
127
+ /// </summary>
128
+ public string AwsAccountId { get ; set ; }
129
+
143
130
/// <summary>
144
131
/// Return true the properties are all null or empty, false otherwise.
145
132
/// </summary>
@@ -159,15 +146,14 @@ internal bool IsEmpty
159
146
string . IsNullOrEmpty ( SourceProfile ) &&
160
147
string . IsNullOrEmpty ( Token ) &&
161
148
string . IsNullOrEmpty ( CredentialProcess ) &&
162
- string . IsNullOrEmpty ( Services ) &&
163
- string . IsNullOrEmpty ( EndpointUrl ) &&
164
149
string . IsNullOrEmpty ( SsoAccountId ) &&
165
150
string . IsNullOrEmpty ( SsoRegion ) &&
166
151
string . IsNullOrEmpty ( SsoRegistrationScopes ) &&
167
152
string . IsNullOrEmpty ( SsoRoleName ) &&
168
153
string . IsNullOrEmpty ( SsoStartUrl ) &&
169
154
string . IsNullOrEmpty ( SsoSession ) &&
170
- string . IsNullOrEmpty ( WebIdentityTokenFile ) ;
155
+ string . IsNullOrEmpty ( WebIdentityTokenFile ) &&
156
+ string . IsNullOrEmpty ( AwsAccountId ) ;
171
157
}
172
158
}
173
159
public override string ToString ( )
@@ -181,8 +167,6 @@ public override string ToString()
181
167
"RoleSessionName=" + RoleSessionName + ", " +
182
168
"SecretKey=XXXXX, " +
183
169
"SourceProfile=" + SourceProfile + ", " +
184
- "EndpointUrl=" + EndpointUrl + ", " +
185
- "Services=" + Services + ", " +
186
170
"Token=" + Token +
187
171
", " + "UserIdentity=" + UserIdentity +
188
172
", " + "CredentialProcess=" + CredentialProcess +
@@ -193,6 +177,7 @@ public override string ToString()
193
177
", " + "SsoRoleName=" + SsoRoleName +
194
178
", " + "SsoStartUrl=" + SsoStartUrl +
195
179
", " + "SsoSession=" + SsoSession +
180
+ ", " + "AwsAccountId=" + AwsAccountId +
196
181
"]" ;
197
182
}
198
183
@@ -206,13 +191,13 @@ public override bool Equals(object obj)
206
191
return false ;
207
192
208
193
return AWSSDKUtils . AreEqual (
209
- new object [ ] { AccessKey , EndpointName , ExternalID , MfaSerial , RoleArn , RoleSessionName , SecretKey , SourceProfile , Token , UserIdentity , CredentialProcess , WebIdentityTokenFile , SsoAccountId , SsoRegion , SsoRegistrationScopes , SsoRoleName , SsoStartUrl , SsoSession , Services , EndpointUrl } ,
210
- new object [ ] { po . AccessKey , po . EndpointName , po . ExternalID , po . MfaSerial , po . RoleArn , po . RoleSessionName , po . SecretKey , po . SourceProfile , po . Token , po . UserIdentity , po . CredentialProcess , po . WebIdentityTokenFile , po . SsoAccountId , po . SsoRegion , po . SsoRegistrationScopes , po . SsoRoleName , po . SsoStartUrl , po . SsoSession , po . Services , po . EndpointUrl } ) ;
194
+ new object [ ] { AccessKey , EndpointName , ExternalID , MfaSerial , RoleArn , RoleSessionName , SecretKey , SourceProfile , Token , UserIdentity , CredentialProcess , WebIdentityTokenFile , SsoAccountId , SsoRegion , SsoRegistrationScopes , SsoRoleName , SsoStartUrl , SsoSession , AwsAccountId } ,
195
+ new object [ ] { po . AccessKey , po . EndpointName , po . ExternalID , po . MfaSerial , po . RoleArn , po . RoleSessionName , po . SecretKey , po . SourceProfile , po . Token , po . UserIdentity , po . CredentialProcess , po . WebIdentityTokenFile , po . SsoAccountId , po . SsoRegion , po . SsoRegistrationScopes , po . SsoRoleName , po . SsoStartUrl , po . SsoSession , po . AwsAccountId } ) ;
211
196
}
212
197
213
198
public override int GetHashCode ( )
214
199
{
215
- return Hashing . Hash ( AccessKey , EndpointName , ExternalID , MfaSerial , RoleArn , RoleSessionName , SecretKey , SourceProfile , Token , UserIdentity , CredentialProcess , WebIdentityTokenFile , SsoAccountId , SsoRegion , SsoRegistrationScopes , SsoRoleName , SsoStartUrl , SsoSession , Services , EndpointUrl ) ;
200
+ return Hashing . Hash ( AccessKey , EndpointName , ExternalID , MfaSerial , RoleArn , RoleSessionName , SecretKey , SourceProfile , Token , UserIdentity , CredentialProcess , WebIdentityTokenFile , SsoAccountId , SsoRegion , SsoRegistrationScopes , SsoRoleName , SsoStartUrl , SsoSession , AwsAccountId ) ;
216
201
}
217
202
}
218
203
}
0 commit comments