Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AssumedUser (0.24 sec)

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

        </Credentials>
        <AssumedUser>custom:Alice</AssumedUser>
      </AssumeRoleWithCustomTokenResult>
      <ResponseMetadata>
        <RequestId>16F26E081E36DE63</RequestId>
      </ResponseMetadata>
    </AssumeRoleWithCustomTokenResponse>
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 27 00:58:09 GMT 2022
    - 3K bytes
    - Viewed (0)
  2. cmd/sts-datatypes.go

    	XMLName xml.Name `xml:"https://sts.amazonaws.com/doc/2011-06-15/ AssumeRoleWithCustomTokenResponse" json:"-"`
    	Result  struct {
    		Credentials auth.Credentials `xml:"Credentials,omitempty"`
    		AssumedUser string           `xml:"AssumedUser,omitempty"`
    	} `xml:"AssumeRoleWithCustomTokenResult"`
    	Metadata struct {
    		RequestID string `xml:"RequestId,omitempty"`
    	} `xml:"ResponseMetadata,omitempty"`
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 27 00:58:09 GMT 2022
    - 9.9K bytes
    - Viewed (0)
  3. cmd/sts-handlers.go

    			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))
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 21:31:13 GMT 2024
    - 34.7K bytes
    - Viewed (2)
Back to top