AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
This is the response object from the AssumeRoot operation.
Namespace: Amazon.SecurityToken.Model
Assembly: AWSSDK.SecurityToken.dll
Version: 3.x.y.z
public class AssumeRootResponse : AmazonWebServiceResponse
The AssumeRootResponse type exposes the following members
| Name | Description | |
|---|---|---|
|
AssumeRootResponse() |
| Name | Type | Description | |
|---|---|---|---|
|
ContentLength | System.Int64 | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
|
Credentials | Amazon.SecurityToken.Model.Credentials |
Gets and sets the property Credentials. The temporary security credentials, which include an access key ID, a secret access key, and a security token. The size of the security token that STS API operations return is not fixed. We strongly recommend that you make no assumptions about the maximum size. |
|
HttpStatusCode | System.Net.HttpStatusCode | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
|
ResponseMetadata | Amazon.Runtime.ResponseMetadata | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
|
SourceIdentity | System.String |
Gets and sets the property SourceIdentity.
The source identity specified by the principal that is calling the
You can use the The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: =,.@- |
The following command retrieves a set of short-term credentials you can use to unlock an S3 bucket for a member account by removing the bucket policy.
var client = new AmazonSecurityTokenServiceClient();
var response = client.AssumeRoot(new AssumeRootRequest
{
DurationSeconds = 900,
TargetPrincipal = "111122223333",
TaskPolicyArn = new PolicyDescriptorType { Arn = "arn:aws:iam::aws:policy/root-task/S3UnlockBucketPolicy" }
});
Credentials credentials = response.Credentials;
string sourceIdentity = response.SourceIdentity;
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.7.2 and newer