Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AssumeRoleWithCustomTokenResponse (0.12 sec)

  1. docs/sts/custom-token-identity.md

    ```
    
    Prettified Response:
    
    ```xml
    <?xml version="1.0" encoding="UTF-8"?>
    <AssumeRoleWithCustomTokenResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
      <AssumeRoleWithCustomTokenResult>
        <Credentials>
          <AccessKeyId>24Y5H9VHE14H47GEOKCX</AccessKeyId>
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. cmd/sts-datatypes.go

    		RequestID string `xml:"RequestId,omitempty"`
    	} `xml:"ResponseMetadata,omitempty"`
    }
    
    // AssumeRoleWithCustomTokenResponse contains the result of a successful
    // AssumeRoleWithCustomToken request.
    type AssumeRoleWithCustomTokenResponse struct {
    	XMLName xml.Name `xml:"https://sts.amazonaws.com/doc/2011-06-15/ AssumeRoleWithCustomTokenResponse" json:"-"`
    	Result  struct {
    		Credentials auth.Credentials `xml:"Credentials,omitempty"`
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  3. cmd/sts-handlers.go

    			SecretKey:    tmpCredentials.SecretKey,
    			SessionToken: tmpCredentials.SessionToken,
    			ParentUser:   tmpCredentials.ParentUser,
    		},
    		UpdatedAt: updatedAt,
    	}))
    
    	response := new(AssumeRoleWithCustomTokenResponse)
    	response.Result.Credentials = tmpCredentials
    	response.Result.AssumedUser = parentUser
    	response.Metadata.RequestID = w.Header().Get(xhttp.AmzRequestID)
    	writeSuccessResponseXML(w, encodeResponse(response))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 01:29:20 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top