Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AssumeRoleWithClientGrantsResponse (0.18 sec)

  1. docs/sts/client-grants.md

    ```
    
    ## Sample Response
    
    ```
    <?xml version="1.0" encoding="UTF-8"?>
    <AssumeRoleWithClientGrantsResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
      <AssumeRoleWithClientGrantsResult>
        <AssumedRoleUser>
          <Arn/>
          <AssumeRoleId/>
        </AssumedRoleUser>
        <Credentials>
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  2. cmd/sts-datatypes.go

    	SubjectFromWebIdentityToken string `xml:",omitempty"`
    }
    
    // AssumeRoleWithClientGrantsResponse contains the result of successful AssumeRoleWithClientGrants request.
    type AssumeRoleWithClientGrantsResponse struct {
    	XMLName          xml.Name           `xml:"https://sts.amazonaws.com/doc/2011-06-15/ AssumeRoleWithClientGrantsResponse" json:"-"`
    	Result           ClientGrantsResult `xml:"AssumeRoleWithClientGrantsResult"`
    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. docs/sts/client_grants/__init__.py

                :param data: Response data for AssumeRoleWithClientGrants request
                :return: dict
                """
                root = STSElement.fromstring(
                    'AssumeRoleWithClientGrantsResponse', data)
                result = root.find('AssumeRoleWithClientGrantsResult')
                creds = result.find('Credentials')
                return dict(
                    access_key=creds.get_child_text('AccessKeyId'),
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  4. cmd/sts-handlers.go

    			ParentPolicyMapping: policyName,
    		},
    		UpdatedAt: updatedAt,
    	}))
    
    	var encodedSuccessResponse []byte
    	switch action {
    	case clientGrants:
    		clientGrantsResponse := &AssumeRoleWithClientGrantsResponse{
    			Result: ClientGrantsResult{
    				Credentials:      cred,
    				SubjectFromToken: subFromToken,
    			},
    		}
    		clientGrantsResponse.ResponseMetadata.RequestID = w.Header().Get(xhttp.AmzRequestID)
    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