DeleteConfigurationResponse.fromJson constructor
Implementation
factory DeleteConfigurationResponse.fromJson(Map<String, dynamic> json) {
  return DeleteConfigurationResponse(
    arn: json['arn'] as String?,
    state: (json['state'] as String?)?.toConfigurationState(),
  );
}