class Amazonite::Iam::GetDelegationRequestResponse

Defined in:

iam/get_delegation_request_response.cr

Constructors

Instance Method Summary

Constructor Detail

def self.from_xml(node : XML::Node) : self #

[View source]
def self.new(delegation_request : DelegationRequest | Nil = nil, permission_check_status : PermissionCheckStatusType | Nil = nil, permission_check_result : PermissionCheckResultType | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def delegation_request : DelegationRequest | Nil #

The delegation request object containing all details about the request.


[View source]
def delegation_request=(delegation_request : DelegationRequest | Nil) #

The delegation request object containing all details about the request.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def permission_check_result : PermissionCheckResultType | Nil #

The result of the permission check, indicating whether the caller has sufficient permissions to cover the requested permissions. This is an approximate result.

  • ALLOWED : The caller has sufficient permissions cover all the requested permissions.

  • DENIED : The caller does not have sufficient permissions to cover all the requested permissions.

  • UNSURE : It is not possible to determine whether the caller has all the permissions needed. This output is most likely for cases when the caller has permissions with conditions.


[View source]
def permission_check_result=(permission_check_result : PermissionCheckResultType | Nil) #

The result of the permission check, indicating whether the caller has sufficient permissions to cover the requested permissions. This is an approximate result.

  • ALLOWED : The caller has sufficient permissions cover all the requested permissions.

  • DENIED : The caller does not have sufficient permissions to cover all the requested permissions.

  • UNSURE : It is not possible to determine whether the caller has all the permissions needed. This output is most likely for cases when the caller has permissions with conditions.


[View source]
def permission_check_status : PermissionCheckStatusType | Nil #

The status of the permission check for the delegation request.

This value indicates the status of the process to check whether the caller has sufficient permissions to cover the requested actions in the delegation request. Since this is an asynchronous process, there are three potential values:

  • IN_PROGRESS : The permission check process has started.

  • COMPLETED : The permission check process has completed. The PermissionCheckResult will include the result.

  • FAILED : The permission check process has failed.


[View source]
def permission_check_status=(permission_check_status : PermissionCheckStatusType | Nil) #

The status of the permission check for the delegation request.

This value indicates the status of the process to check whether the caller has sufficient permissions to cover the requested actions in the delegation request. Since this is an asynchronous process, there are three potential values:

  • IN_PROGRESS : The permission check process has started.

  • COMPLETED : The permission check process has completed. The PermissionCheckResult will include the result.

  • FAILED : The permission check process has failed.


[View source]
def to_query_params(prefix : String) : Array(Tuple(String, String)) #

[View source]
def validate! : Nil #

[View source]