DescribeIAMPolicyAssignmentResponse.fromJson constructor

DescribeIAMPolicyAssignmentResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DescribeIAMPolicyAssignmentResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeIAMPolicyAssignmentResponse(
    iAMPolicyAssignment: json['IAMPolicyAssignment'] != null
        ? IAMPolicyAssignment.fromJson(
            json['IAMPolicyAssignment'] as Map<String, dynamic>)
        : null,
    requestId: json['RequestId'] as String?,
  );
}