AwsRedshiftClusterIamRole.fromJson constructor

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

Implementation

factory AwsRedshiftClusterIamRole.fromJson(Map<String, dynamic> json) {
  return AwsRedshiftClusterIamRole(
    applyStatus: json['ApplyStatus'] as String?,
    iamRoleArn: json['IamRoleArn'] as String?,
  );
}