AwsRdsDbClusterAssociatedRole.fromJson constructor

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

Implementation

factory AwsRdsDbClusterAssociatedRole.fromJson(Map<String, dynamic> json) {
  return AwsRdsDbClusterAssociatedRole(
    roleArn: json['RoleArn'] as String?,
    status: json['Status'] as String?,
  );
}